/* -----------------------------------------------------------
           1. CORE VARIABLES & RESET
        ----------------------------------------------------------- */
        /* :root {
            --brand-yellow: #e8a536;
            --brand-brown: #482713;
            --brand-green: #72bf44;
            --brand-cream: #FFFDF5;
            --brand-sand: #F7F1E3;
            
            --text-dark: #482713;
            --text-light: #fff;
            
            --heading-font: 'Fugaz One', cursive;

            --normal-font: 'Nunito', sans-serif;
            
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            
            --shadow-soft: 0 10px 30px rgba(72, 39, 19, 0.08);
            --shadow-hover: 0 15px 35px rgba(72, 39, 19, 0.15);
            
            --container-width: 1200px;
        } */

                :root {
            --brand-yellow: #EEA92D;
            --brand-brown: #9c4d07;
            --brand-green: #44993f;
            --brand-cream: #FFFDF5;
            --brand-sand: #F7F1E3;
            
            --text-dark: #9c4d07;
            --text-light: #fff;
            
            --heading-font: 'Fugaz One', cursive;

            --normal-font: 'Nunito', sans-serif;
            
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            
            --shadow-soft: 0 10px 30px rgba(72, 39, 19, 0.08);
            --shadow-hover: 0 15px 35px rgba(72, 39, 19, 0.15);
            
            --container-width: 1200px;
        }

        /* 1. Define the font */
        @font-face {
            font-family: 'HeadingFont'; 
            src: url('assets/fonts/heading/Beloved-Dream-DEMO.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* 2. Global application (Automatic) */
        h1, h2, h3, h4, h5, h6, .font-heading {
            font-family: var(--heading-font);
        }

        p, a, li, td, th, span, label, select, button, .font-normal {
            font-family: var(--normal-font);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-dark);
            background-color: var(--brand-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* -----------------------------------------------------------
           2. UTILITIES & TYPOGRAPHY
        ----------------------------------------------------------- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }

        .section-padding {
            padding: var(--spacing-lg) 0;
        }

        h1, h2 {
            font-weight: 800;
            line-height: 1.2;
        }

        h3, h4 {
            font-weight: 700;
            line-height: 1;
        }
        
        h2 span {
            color: var(--brand-green);
        }

        p, a, li {
            font-size: clamp(1rem, 2.2vw, 1.125rem);
            line-height: 1.6;
        }

        p {
            color: rgba(72, 39, 19, 0.85);
        }

        h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.15;
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            line-height: 1.2;
            text-align: center;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            line-height: 1.3;
        }

        h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        }

        h5 {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
        }

        h6 {
            font-size: clamp(1rem, 1.8vw, 1.1rem);
        }

        .text-center { text-align: center; }
        .text-warm { max-width: 700px; margin: 0 auto 3rem auto; }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--brand-yellow);
            color: var(--brand-brown);
        }

        .btn-primary:hover {
            background-color: #d6942a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(232, 165, 54, 0.4);
        }

        .btn-outline {
            border: 2px solid var(--brand-brown);
            color: var(--brand-brown);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--brand-brown);
            color: #fff;
        }

        /* -----------------------------------------------------------
           3. NAVBAR
        ----------------------------------------------------------- */
        .navbar {
            position: sticky;
            top: 0;
            background-color: rgba(255, 253, 245, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(72, 39, 19, 0.05);
            padding: 0.5rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
        height: clamp(3rem, 4vw, 4.5rem);
        width: auto;
        object-fit: contain;
        image-rendering: -webkit-optimize-contrast;
        transition: height 0.3s ease; 
        }
        @media (max-width: 768px) {
            .logo {
                height: 2.5rem;
            }
        }

        /* .logo i {
            color: var(--brand-yellow);
        } */

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            font-weight: 700;
            font-size: 1.05rem;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--brand-yellow);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .cart-icon {
            position: relative;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--brand-green);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* -----------------------------------------------------------
           4. HERO SECTION
        ----------------------------------------------------------- */
        .hero {
            position: relative;
            padding: 6rem 0;
            background: url('assets/images/Hero-BG-image.webp');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content {
            max-width: 600px;
        }

        .moneyback-badge {
            width: 250px;
            max-width: 100%;
            height: auto;
            margin-bottom: 1.2rem;
        }

        /* Tablets */
        @media (max-width: 1024px) {
            .moneyback-badge {
                width: 220px;
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .moneyback-badge {
                width: 200px;
            }
        }

        @media (max-width: 900px) {
            .hero-content {
                text-align: center;
            }

            .moneyback-badge {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
        }

        .hero span {
            color: var(--brand-yellow);
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
        }

        .hero-images {
            width: 100%;
            height: 420px;
            overflow: hidden;
        }

        .hero-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 900px) {
            .hero-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                margin: 0 auto;
            }

            .hero-images {
                height: 300px;
            }
        }


        /* -----------------------------------------------------------
           5. CERTIFICATE MARQUEE
        ----------------------------------------------------------- */
        .marquee-section {
            background-color: var(--brand-brown);
            color: #fff;
            padding: clamp(1rem, 3vw, 1.5rem) 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: clamp(0.35rem, 1vw, 0.5rem);
            margin: 0 clamp(1rem, 3vw, 2rem);
            font-weight: 700;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            color: rgba(255, 255, 255, 0.9);
        }

        .marquee-item i {
            color: var(--brand-yellow);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* -----------------------------------------------------------
           6. ABOUT / PROMISE
        ----------------------------------------------------------- */
        .about {
            background-color: var(--brand-cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .about-img:hover img {
            transform: scale(1.03);
        }

        .feature-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
        }

        .feature-list i {
            color: var(--brand-green);
            background: #e6f5dc;
            padding: 8px;
            border-radius: 50%;
        }

        /* -----------------------------------------------------------
           7. PRODUCTS (VARIANTS)
        ----------------------------------------------------------- */
        .products {
            background-color: var(--brand-sand);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .product-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-info h3 {
            font-size: clamp(1.2rem, 2.2vw, 1.6rem);
            margin-bottom: 0.5rem;
        }

        .product-tags {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tag {
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
        }

        .tag-organic { background: #e6f5dc; color: var(--brand-brown); }
        .tag-desi { background: #fff4da; color: var(--brand-brown); }

        .product-info .btn {
            margin-top: auto;
            width: 100%;
            text-align: center;
        }

        /* -----------------------------------------------------------
           8. QUALITY & FARMING
        ----------------------------------------------------------- */
        .quality {
            background-color: var(--brand-brown);
            color: var(--brand-cream);
            text-align: center;
        }
        
        .quality h2, .quality p {
            color: var(--brand-cream);
        }

        .quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .quality-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .quality-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--brand-green);
        }

        /* -----------------------------------------------------------
           9. IMAGE GALLERY
        ----------------------------------------------------------- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .gallery-item {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Mobile gallery adjustments */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-item {
                height: 200px;
            }
        }

        /* -----------------------------------------------------------
           10. PACKS SECTION
        ----------------------------------------------------------- */
        .packs {
            background-color: var(--brand-cream);
        }

        .packs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pack-card {
            background: #fff;
            border: 2px solid #eee;
            border-radius: var(--radius-md);
            padding: 2rem;
            text-align: center;
            transition: 0.3s;
            padding-bottom: 0 !important; /* Remove bottom padding to let the bar sit at the edge */
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .pack-card.popular {
            border-color: var(--brand-yellow);
            background: #fffdf5;
        }

        .badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-yellow);
            color: var(--brand-brown);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
        }

        .pack-icon {
            font-size: 3rem;
            color: var(--brand-brown);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand-brown);
            margin: 1rem 0;
        }
        
        .price small {
            font-size: 1rem;
            font-weight: 600;
        }

        /* Guarantee Badge Style */
        .guarantee-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px; /* Space between icon and text */
            font-size: 0.85rem; /* Small, non-intrusive text */
            font-weight: 600;
            color: var(--brand-green); /* Trustworthy Green */
            margin-bottom: 15px; /* Space before the button */
            background: rgba(39, 174, 96, 0.1); /* Very light green background */
            padding: 5px 10px;
            border-radius: 20px;
            width: fit-content;
            margin-top: 5px;
            margin-left: auto;
            margin-right: auto; /* Centers the badge */
        }

        /* Optional: Hover effect to make it pop slightly */
        .pack-card:hover .guarantee-badge {
            background: rgba(39, 174, 96, 0.2);
        }


        /* -----------------------------------------------------------
           11. TESTIMONIALS
        ----------------------------------------------------------- */
        .testimonials {
            background-color: var(--brand-cream);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: #fff;
            padding: 2rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
        }

        .stars {
            color: var(--brand-yellow);
            margin-bottom: 1rem;
        }

        .customer {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .customer-avatar {
            width: 50px;
            height: 50px;
            background: #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--brand-brown);
            background: var(--brand-yellow);
        }

        /* -----------------------------------------------------------
           RECIPE SECTION
        ----------------------------------------------------------- */
        .recipes {
            background-color: var(--brand-sand);
        }

        .recipe-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .recipe-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            border: 1px solid rgba(72, 39, 19, 0.05);
        }

        .recipe-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .recipe-img-container {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .recipe-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .recipe-card:hover .recipe-img {
            transform: scale(1.1);
        }

        .recipe-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--brand-green);
            color: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .recipe-content {
            padding: 1.5rem;
        }

        .recipe-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 0.8rem;
            color: #888;
            font-weight: 600;
        }

        .recipe-meta i {
            color: var(--brand-yellow);
            margin-right: 5px;
        }

        .recipe-content h3 {
            font-family: var(--heading-font);
            font-size: clamp(0.8rem, 2vw, 1.25rem);
            margin-bottom: 10px;
            color: var(--brand-brown);
        }

        .recipe-content p {
            font-size: clamp(0.8rem, 2vw, 0.95rem);
            line-height: 1.5;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .recipe-link {
            font-weight: 800;
            color: var(--brand-yellow);
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .recipe-link:hover {
            gap: 12px;
            color: var(--brand-brown);
        }

        @media (max-width: 768px) {
            .recipe-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* -----------------------------------------------------------
           11. BLOG SECTION STYLES
        ----------------------------------------------------------- */
        .blogs {
            background-color: var(--brand-sand);
        }

        .blog-layout-wrapper {
            display: grid;
            /* Split: Left column larger (1.4fr), Right column smaller (1fr) */
            grid-template-columns: 1.4fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            align-items: start;
        }

        /* --- Left Column: Featured Card --- */
        .blog-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: 0.3s ease;
            border-bottom: 4px solid transparent;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .blog-card:hover {
            transform: translateY(-5px);
            border-bottom-color: var(--brand-yellow);
            box-shadow: var(--shadow-hover);
        }

        .blog-img-wrapper.featured-img {
            height: 350px; /* Taller image for the main post */
            position: relative;
        }

        .blog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--brand-yellow);
            color: var(--brand-dark);
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 50px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 15px;
        }

        .blog-meta i {
            color: var(--brand-yellow);
            margin-right: 5px;
        }

        .blog-content h3 {
            font-family: var(--heading-font);
            font-size: clamp(1.4rem, 2.8vw, 1.8rem);
            color: var(--brand-brown);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-content p {
            font-size:  clamp(0.8rem, 2vw, 0.95rem);
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .read-more {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--brand-brown);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .read-more:hover {
            color: var(--brand-yellow);
            gap: 12px;
        }

        /* --- Right Column: Sidebar List --- */
        .blog-sidebar {
            padding-left: 1rem;
        }

        .sidebar-title {
            font-family: var(--heading-font);
            font-size: 1.4rem;
            color: var(--brand-brown);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0,0,0,0.05);
        }

        .sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .sidebar-item {
            display: flex;
            gap: 1rem;
            align-items: center;
            text-decoration: none;
            background: #fff;
            padding: 10px;
            border-radius: 12px;
            transition: 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

        .sidebar-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .sidebar-thumb {
            width: 160px;
            height: 90px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .sidebar-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar-info {
            flex-grow: 1;
        }

        .sidebar-cat {
            display: block;
            font-size: 0.7rem;
            color: var(--brand-yellow);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .sidebar-info h5 {
            font-family: var(--heading-font);
            font-size: clamp(0.7rem, 1.5vw, 1rem);
            color: var(--brand-brown);
            margin: 0 0 6px 0;
            line-height: 1.3;
        }

        .sidebar-date {
            display: block;
            font-size: 0.75rem;
            color: #999;
        }

        .btn-text-only {
            color: var(--brand-brown);
            font-weight: 700;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .btn-text-only:hover {
            color: var(--brand-yellow);
            text-decoration: underline;
        }

        /* --- Responsive --- */
        @media (max-width: 991px) {
            .blog-layout-wrapper {
                grid-template-columns: 1fr; /* Stack them on mobile/tablet */
                gap: 2.5rem;
            }
            
            .blog-sidebar {
                padding-left: 0;
            }

            .blog-img-wrapper.featured-img {
                height: 250px;
            }
        }

        /* -----------------------------------------------------------
           12. FAQ
        ----------------------------------------------------------- */
        .faq {
            background-color: #fff;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 1rem;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 1.5rem 0;
            font-size: clamp(0.8rem, 1.5vw, 1.1rem);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            color: var(--brand-brown);
            font-family: var(--heading-font);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-right: 2rem;
        }
        
        .faq-answer p {
            padding-bottom: 1.5rem;
            font-size: clamp(0.8rem, 2.2vw, 1.125rem);
        }

        .faq-item.active .faq-answer {
            max-height: 200px; /* Rough estimate */
        }
        
        .faq-item.active i {
            transform: rotate(180deg);
        }

        /* -----------------------------------------------------------
           13. FOOTER
        ----------------------------------------------------------- */
        footer {
            background-color: var(--brand-brown);
            color: var(--brand-sand);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer h3 {
            color: var(--brand-yellow);
            margin-bottom: 1.5rem;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a:hover {
            color: var(--brand-yellow);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }
        
        .social-btn:hover {
            background: var(--brand-yellow);
            color: var(--brand-brown);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* -----------------------------------------------------------
           14. CART SIDEBAR & OVERLAY (NEW)
        ----------------------------------------------------------- */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(72, 39, 19, 0.4);
            backdrop-filter: blur(2px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
        }
        
        .cart-overlay.active { 
            opacity: 1; 
            visibility: visible; 
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -420px;
            width: 420px;
            height: 100%;
            background: #fff;
            z-index: 1002;
            box-shadow: -5px 0 30px rgba(72, 39, 19, 0.1);
            transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.active { 
            right: 0; 
        }

        .cart-header {
            padding: 1.5rem;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--brand-cream);
        }
        
        .cart-header h3 { 
            font-size: clamp(1.1rem, 2.2vw, 1.5rem);
            color: var(--brand-brown); 
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .close-cart { 
            font-size: 1.5rem; 
            cursor: pointer; 
            color: var(--brand-brown);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }
        
        .close-cart:hover {
            background: rgba(0,0,0,0.05);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-empty-msg {
            text-align: center;
            margin-top: 3rem;
            color: #888;
        }
        .cart-empty-msg i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 1rem;
            display: block;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: center;
            background: #fff;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #eee;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            background: #f5f5f5;
        }
        
        .cart-item-details { flex: 1; }
        
        .cart-item-title { 
            font-weight: 700; 
            color: var(--brand-brown); 
            display: block; 
            margin-bottom: 4px;
        }
        
        .cart-item-price { 
            font-size: 0.9rem; 
            color: var(--brand-yellow); 
            font-weight: 700;
        }
        
        .cart-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }
        
        .qty-btn {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: 0.2s;
            color: var(--brand-brown);
        }
        
        .qty-btn:hover {
            background: var(--brand-sand);
            border-color: var(--brand-yellow);
        }

        .qty-val {
            font-weight: 700;
            font-size: 0.95rem;
            width: 20px;
            text-align: center;
        }
        
        .cart-remove {
            color: #ff6b6b;
            cursor: pointer;
            margin-left: auto;
            font-size: 0.9rem;
            transition: 0.2s;
            padding: 5px;
        }
        
        .cart-remove:hover {
            color: #ff0000;
        }

        .cart-footer {
            padding: 2rem;
            background: var(--brand-cream);
            border-top: 1px solid #f0f0f0;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--brand-brown);
            margin-bottom: 1.5rem;
        }
        
        .checkout-btn {
            width: 100%;
            padding: 16px;
            background: var(--brand-green);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .checkout-btn:hover { 
            background: #5ea336; 
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(114, 191, 68, 0.3);
        }

        @media(max-width: 500px) {
            .cart-sidebar { width: 100%; right: -100%; }
        }

        /* -----------------------------------------------------------
           15. WHATSAPP & RESPONSIVE
        ----------------------------------------------------------- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s;
            animation: pulse 3s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128c7e;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--brand-cream);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 10px rgba(0,0,0,0.05);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .mobile-toggle { display: block; }
            .nav-actions .btn { display: none; } /* Hide Order button in nav on mobile */
            
            .about-grid { grid-template-columns: 1fr; }
            .about-img { height: 300px; order: -1; }
        }

        /* Whatsapp Model */
        .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        }

        .modal-overlay.active {
        display: flex;
        }

        .modal-box {
        background: #fff;
        padding: 24px;
        border-radius: 12px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        animation: popIn 0.2s ease-out;
        }

        .modal-box h2 {
        margin-bottom: 10px;
        }

        .modal-box h3 {
        color: var(--brand-green);
        }

        .modal-box p {
        color: #555;
        font-size:  clamp(0.8rem, 2vw, 0.95rem);
        }

        .modal-actions {
        margin-top: 20px;
        display: flex;
        gap: 12px;
        justify-content: center;
        }

        @keyframes popIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
        }

