/* ==========================================
   ZAYVIA PREMIUM LANDING PAGE
   Complete Rebuild with Vibrant Spice Colors
   ========================================== */

:root {
    /* Original Brand Colors */
    --primary-color: #A65E2E;
    --secondary-color: #E6A44A;
    --accent-color: #7E8C4B;

    /* Vibrant Spice Palette */
    --turmeric-yellow: #F4C430;
    --turmeric-gold: #E6C200;
    --paprika-red: #E74C3C;
    --paprika-crimson: #C0392B;
    --cumin-brown: #8B6914;
    --cinnamon-brown: #8B4513;
    --cardamom-green: #9EC969;
    --black-pepper: #2C2C2C;
    --cloves-burgundy: #6B4423;
    --coriander-beige: #D4B896;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #F5F1ED;
    --light-bg: #FAFAF8;
    --dark-text: #2C2C2C;
    --light-text: #666666;
}

/* ==========================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   PREMIUM NAVIGATION
   ========================================== */

.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 164, 74, 0.1);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.brand-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 8px rgba(230, 164, 74, 0.3));
}

.nav-brand:hover .brand-logo {
    transform: rotate(360deg) scale(1.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-item {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--turmeric-gold), var(--paprika-red));
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(230, 164, 74, 0.1);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */

/* Tablet - 769px to 1024px */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 0 2rem;
    }

    .products-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid-premium {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile & Tablet - Up to 768px */
@media (max-width: 768px) {

    /* Navigation Mobile */
    .mobile-toggle {
        display: flex;
    }

    .premium-btn-outline {
        display: none;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 0 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        display: block;
        margin: 0;
    }

    .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover {
        background: var(--light-bg);
        color: var(--primary-color);
    }

    /* Hero Section Mobile */
    .hero-premium {
        padding: 120px 1.5rem 3rem;
        min-height: 90vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title-premium {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle-premium {
        font-size: 1.1rem;
    }

    .section-title-premium {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-group button {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .floating-spice-bowl {
        width: 300px;
        height: 300px;
    }

    /* Sections Mobile */
    .premium-products,
    .premium-features,
    .premium-testimonials,
    .premium-cta {
        padding: 4rem 1.5rem;
    }

    .products-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer Mobile */
    .premium-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }
}

/* Small Mobile - Up to 480px */
@media (max-width: 480px) {

    /* Hero Mobile Small */
    .hero-premium {
        padding: 70px 1rem 2rem;
        min-height: 85vh;
    }

    .hero-title-premium {
        font-size: 2.2rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
    }

    .hero-badge-premium {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .floating-spice-bowl {
        width: 250px;
        height: 250px;
    }

    .spice-img-1,
    .spice-img-2,
    .spice-img-3 {
        width: 120px !important;
        height: 120px !important;
    }

    /* Sections Small Mobile */
    .premium-products,
    .premium-features,
    .premium-testimonials,
    .premium-cta {
        padding: 3rem 1rem;
    }

    .products-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-premium {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }

    .testimonial-card-premium {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .premium-btn-primary,
    .premium-btn-white {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Navigation Small Mobile */
    .nav-wrapper {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 85%;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================
   PREMIUM BUTTONS
   ========================================== */

.premium-btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
}

.premium-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.5);
}

.premium-btn-primary.large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.premium-btn-outline {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.premium-btn-glass {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--dark-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.premium-btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION - PREMIUM
   ========================================== */

.hero-premium {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg,
            var(--light-bg) 0%,
            rgba(244, 196, 48, 0.05) 20%,
            rgba(158, 201, 105, 0.05) 40%,
            var(--cream) 60%,
            rgba(231, 76, 60, 0.03) 80%,
            var(--white) 100%);
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.spice-particle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 15s ease-in-out infinite;
}

.spice-particle:nth-child(1) {
    background: radial-gradient(circle, var(--turmeric-yellow), transparent);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.spice-particle:nth-child(2) {
    background: radial-gradient(circle, var(--paprika-red), transparent);
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.spice-particle:nth-child(3) {
    background: radial-gradient(circle, var(--cardamom-green), transparent);
    top: 40%;
    right: 30%;
    animation-delay: -10s;
}

.spice-particle:nth-child(4) {
    background: radial-gradient(circle, var(--cumin-brown), transparent);
    bottom: 10%;
    right: 20%;
    animation-delay: -7s;
}

.spice-particle:nth-child(5) {
    background: radial-gradient(circle, var(--secondary-color), transparent);
    top: 60%;
    left: 40%;
    animation-delay: -3s;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-premium {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.2), rgba(231, 76, 60, 0.2));
    border: 1px solid rgba(230, 164, 74, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title-premium {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

.gradient-text-alt {
    background: linear-gradient(135deg, var(--cardamom-green), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}



.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease 0.3s backwards;
}

.floating-spice-bowl {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-spice-bowl img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.spice-img-1 {
    width: 380px;
    height: 380px;
    object-fit: cover;
    top: 50px;
    left: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.spice-img-2 {
    width: 300px;
    height: 300px;
    object-fit: cover;
    bottom: 0;
    right: 0;
    z-index: 2;
    animation: float 7s ease-in-out infinite -2s;
}

.spice-img-3 {
    width: 220px;
    height: 220px;
    object-fit: cover;
    top: 20px;
    right: 80px;
    z-index: 1;
    animation: float 8s ease-in-out infinite -4s;
}

.floating-spice-bowl img:hover {
    transform: scale(1.05) rotate(5deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.85rem;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

/* ==========================================
   PREMIUM PRODUCTS SECTION
   ========================================== */

.premium-products {
    padding: 8rem 3rem;
    background: var(--white);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.15), rgba(231, 76, 60, 0.15));
    border: 1px solid rgba(230, 164, 74, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-title-premium {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid-premium {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card-premium {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease backwards;
}

.product-card-premium:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card-premium:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card-premium:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card-premium:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card-premium:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card-premium:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card-premium:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card-premium:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-img-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-img-premium {
    transform: scale(1.1) rotate(3deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 0.8rem 2rem;
    background: var(--white);
    color: var(--dark-text);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card-premium:hover .quick-view-btn {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    z-index: 2;
}

.turmeric-badge {
    background: linear-gradient(135deg, var(--turmeric-gold), var(--turmeric-yellow));
}

.cumin-badge {
    background: linear-gradient(135deg, var(--cumin-brown), var(--secondary-color));
}

.paprika-badge {
    background: linear-gradient(135deg, var(--paprika-crimson), var(--paprika-red));
}

.pepper-badge {
    background: linear-gradient(135deg, var(--black-pepper), var(--cloves-burgundy));
}

.cinnamon-badge {
    background: linear-gradient(135deg, var(--cinnamon-brown), var(--primary-color));
}

.cloves-badge {
    background: linear-gradient(135deg, var(--cloves-burgundy), var(--primary-color));
}

.cardamom-badge {
    background: linear-gradient(135deg, var(--cardamom-green), var(--accent-color));
}

.coriander-badge {
    background: linear-gradient(135deg, var(--coriander-beige), var(--secondary-color));
}

.product-info-premium {
    padding: 2rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-to-cart-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
}

.add-to-cart-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.5);
}

/* ==========================================
   PREMIUM FEATURES
   ========================================== */

.premium-features {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--light-bg), var(--cream));
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.feature-box[data-color="turmeric"]::before {
    background: linear-gradient(90deg, var(--turmeric-gold), var(--turmeric-yellow));
}

.feature-box[data-color="paprika"]::before {
    background: linear-gradient(90deg, var(--paprika-crimson), var(--paprika-red));
}

.feature-box[data-color="cardamom"]::before {
    background: linear-gradient(90deg, var(--cardamom-green), var(--accent-color));
}

.feature-box[data-color="cumin"]::before {
    background: linear-gradient(90deg, var(--cumin-brown), var(--secondary-color));
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-box[data-color="turmeric"] .feature-icon {
    color: var(--turmeric-gold);
}

.feature-box[data-color="paprika"] .feature-icon {
    color: var(--paprika-red);
}

.feature-box[data-color="cardamom"] .feature-icon {
    color: var(--cardamom-green);
}

.feature-box[data-color="cumin"] .feature-icon {
    color: var(--cumin-brown);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.premium-testimonials {
    padding: 8rem 3rem;
    background: var(--white);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card-premium {
    background: linear-gradient(135deg, var(--white), var(--light-bg));
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-left-color: var(--turmeric-gold);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.premium-cta {
    padding: 8rem 3rem;
    background: linear-gradient(135deg,
            var(--turmeric-gold) 0%,
            var(--paprika-red) 50%,
            var(--secondary-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cta .premium-btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.premium-cta .premium-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ==========================================
   FOOTER
   ========================================== */

.premium-footer {
    background: linear-gradient(135deg, var(--dark-text), #1a1a1a);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--turmeric-gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.heart {
    color: var(--paprika-red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, -50px) scale(0.9);
    }

    75% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Small Mobile - continued */
@media (max-width: 480px) {
    .hero-premium {
        padding: 110px 1rem 2rem;
        min-height: 85vh;
    }

    .hero-badge-premium {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-title-premium {
        font-size: 2.2rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .floating-spice-bowl {
        width: 250px;
        height: 250px;
    }

    .spice-img-1,
    .spice-img-2,
    .spice-img-3 {
        width: 120px !important;
        height: 120px !important;
    }

    .features-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card-premium {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .premium-btn-primary,
    .premium-btn-white {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .premium-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .product-card-premium {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }
}