/* ============================================
   SÚSTREDENÉ DIEŤA - CUSTOM STYLES
   ============================================ */

* {
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   BENTO CARD COMPONENTS
   ============================================ */

.bento-card {
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(129, 161, 114, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(129, 161, 114, 0.18);
}

.warm-shadow {
    box-shadow: 0 8px 24px rgba(232, 220, 196, 0.4);
}

/* ============================================
   GRADIENTS & BACKGROUNDS
   ============================================ */

.hero-gradient {
    background: linear-gradient(135deg, #A0CED9 0%, #81A172 50%, #E8DCC4 100%);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.pulse-buy {
    animation: pulseBuy 2s ease-in-out infinite;
}

@keyframes pulseBuy {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
        transform: scale(1.02);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PRICING & SALE ELEMENTS
   ============================================ */

.price-strikethrough {
    position: relative;
}

.price-strikethrough::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #FF6B6B;
    transform: rotate(-8deg);
}

.sale-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .bento-card {
        border-radius: 20px;
    }
}
