        :root {
            --bg-color: #FFF8F0;
            --primary-text: #2D2424;
            --accent-orange: #F85A2B;
            --accent-green: #00C068;
            --accent-yellow: #FDD835;
            --brown-dark: #5C2E23;
            --light-pink: #FFF0EB;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--primary-text);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Fraunces', serif;
            font-weight: 800;
            color: var(--primary-text);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- Components --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 800;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            border: 2px solid var(--primary-text);
            box-shadow: 4px 4px 0 var(--primary-text);
            font-family: 'Fraunces', serif; /* Or keep DM Sans if preferred, but design often pairs bold serif or sans */
            font-family: 'DM Sans', sans-serif; 
        }

        .btn:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 var(--primary-text);
        }
        .btn:hover {
            transform: translate(-1px, -1px);
            box-shadow: 5px 5px 0 var(--primary-text);
        }

        .btn-orange {
            background-color: var(--accent-orange);
            color: white;
        }
        .btn-orange:hover { background-color: #d6451a; color: white; }

        .btn-outline {
            background: transparent;
            color: var(--primary-text);
        }
        .btn-outline:hover {
            background: var(--primary-text);
            color: var(--white);
        }
        
        .btn-white {
            background-color: white;
            color: var(--primary-text);
        }
        .btn-white:hover { background-color: #f0f0f0; }

        /* --- Header --- */
        header {
            padding: 30px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Fraunces', serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo i { color: var(--accent-orange); }

        .nav-links {
            display: flex;
            gap: 40px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .nav-links i { font-size: 0.8rem; margin-left: 3px; }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cart-icon {
            width: 45px;
            height: 45px;
            border: 2px solid var(--primary-text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .cart-icon:hover {
            background: var(--primary-text);
            color: white;
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-text);
        }

        .mobile-menu {
            display: none; /* Hidden by default */
            background-color: var(--bg-color);
            padding: 20px;
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            z-index: 100;
            border-bottom: 2px solid var(--primary-text);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-menu ul li a {
            font-size: 1.1rem;
            font-weight: 700;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        /* --- Hero Section --- */
        .hero {
            padding: 60px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
            padding-right: 20px;
        }

        .hero h1 {
            font-size: 5.5rem;
            line-height: 1.1;
            margin-bottom: 25px;
            position: relative;
            letter-spacing: -3px;
            color: var(--primary-text);
            font-weight: 900;
            font-variation-settings: "SOFT" 100;
        }

        .hero-badges-wrapper {
            display: inline-flex;
            flex-direction: column;
            gap: 12px;
            vertical-align: middle;
            margin-left: 15px;
            position: absolute;
            bottom: 10px;
            right: 20px;
            z-index: 2;
        }
        
        .badge {
            padding: 8px 18px;
            border-radius: 12px;
            color: white;
            font-size: 0.9rem;
            font-weight: 800;
            text-transform: uppercase;
            box-shadow: 2px 4px 0 rgba(0,0,0,0.1);
            text-align: center;
            line-height: 1;
        }
        .badge.crunchy { 
            background: var(--accent-orange); 
            transform: rotate(-12deg); 
            margin-bottom: -10px;
            margin-left: -20px;
        }
        .badge.organic { 
            background: var(--accent-green); 
            transform: rotate(-5deg);
        }
        .badge.fresh { 
            background: var(--accent-yellow); 
            color: black; 
            transform: rotate(-15deg);
            align-self: flex-end;
            margin-top: -10px;
            margin-right: -20px;
        }

        /* Specific layout for the title to match design */
        .hero h1 span.block { display: block; }
        .hero h1 .last-line { display: inline-flex; align-items: center; white-space: nowrap; }

        .hero p {
            margin-bottom: 40px;
            font-size: 1.25rem;
            max-width: 500px;
            color: #2D2424;
            font-weight: 700;
            line-height: 1.4;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .hero-image {
            flex: 1.2;
            position: relative;
        }
        .hero-image img {
            width: 100%;
            border-radius: 40px;
            /* box-shadow: 20px 20px 0 rgba(0,0,0,0.05); Removed shadow to match clean look if needed, or kept subtle */
        }

        /* --- About / Simple Ingredients --- */
        .about-section {
            padding: 100px 0;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .collage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .collage img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .collage img:first-child { grid-row: span 2; height: 100%; }
        .collage img:nth-child(2) { align-self: end; }

        .about-text {
            padding-left: 20px;
        }

        .about-text .tags {
            display: flex;
            gap: 12px;
            margin-bottom: 25px;
        }
        .tag {
            padding: 6px 18px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.8rem;
            color: white;
            text-transform: uppercase;
        }
        .tag-orange { background: var(--accent-orange); }
        .tag-green { background: var(--accent-green); }
        .tag-yellow { background: var(--accent-yellow); color: black; }

        .about-text h2 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        .about-text p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 35px;
            max-width: 550px;
        }

        /* --- Products Section --- */
        .products-section {
            padding: 80px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 10px;
        }
        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 500px;
        }
        
        .arrows {
            display: flex;
            gap: 15px;
        }
        .arrows i {
            width: 50px;
            height: 50px;
            border: 1px solid #333;
            border-radius: 50%;
            text-align: center;
            line-height: 48px;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1.1rem;
        }
        .arrows i:hover {
            background: var(--primary-text);
            color: white;
            border-color: var(--primary-text);
        }

        .product-grid {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding-bottom: 20px; /* Space for scrollbar or shadow clearance */
            scrollbar-width: none; /* Hide scrollbar Firefox */
            -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
        }
        .product-grid::-webkit-scrollbar { display: none; /* Hide scrollbar Chrome/Safari */ }

        .product-item {
            text-align: left;
            transition: transform 0.3s;
            width: 220px; /* Fixed width prevents expansion */
            flex-shrink: 0;
            scroll-snap-align: start;
        }
        .product-item:hover { transform: translateY(-5px); }

        .product-image-box {
            border-radius: 40px;
            padding: 0;
            text-align: center;
            position: relative;
            width: 100%;
            aspect-ratio: 3/4; /* Keeps images in 3:4 Portrait ratio */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            overflow: hidden;
        }

        .bg-yellow { background-color: #FEEF96; }
        .bg-green { background-color: #92ECC3; }
        .bg-blue { background-color: #AADCFF; }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: none;
            transition: transform 0.3s;
        }
        .product-item:hover .product-img { transform: scale(1.05); }

        .product-info h3 { 
            font-size: 1.25rem; /* Smaller font for smaller card */
            margin: 0 0 8px;
            font-family: 'Fraunces', serif;
            color: var(--primary-text);
            font-weight: 800;
        }
        
        .price {
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .price .dot { 
            width: 6px; 
            height: 6px; 
            background-color: var(--accent-orange); 
            border-radius: 50%; 
            display: inline-block;
        }
        .price .old { text-decoration: line-through; color: #999; font-size: 0.85rem; font-weight: 500; }
        .price .new { font-weight: 800; font-size: 1.1rem; color: var(--primary-text); }

        /* --- Features & Testimonials --- */
        .features-section {
            background-color: var(--light-pink);
            padding: 80px 60px;
            margin-top: 80px;
            border-radius: 40px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-bottom: 80px;
        }

        .feature h4 { margin: 20px 0 10px; font-size: 1.3rem; }
        .feature p { font-size: 0.95rem; color: #666; line-height: 1.6; }
        .feature-icon { 
            font-size: 2.2rem; 
            color: var(--primary-text);
            margin-bottom: 15px;
        }

        .testimonial-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .testi-left img {
            border-radius: 50%;
            width: 180px;
            height: 180px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .testi-center {
            flex: 1;
        }
        .testi-center h2 {
            font-size: 2.5rem;
            max-width: 350px;
            line-height: 1.1;
        }

        .testi-right {
            max-width: 420px;
        }
        .rating { color: var(--accent-orange); margin-bottom: 15px; display: flex; align-items: center; }
        .rating span { color: black; font-weight: 800; font-size: 2.5rem; margin-right: 15px; }

        /* --- Footer Banner --- */
        .footer-banner {
            margin: 80px auto;
            background-color: var(--brown-dark);
            border-radius: 40px;
            padding: 0;
            display: flex;
            overflow: hidden;
            color: white;
            min-height: 450px;
        }

        .banner-img {
            flex: 1;
            position: relative;
        }
        .banner-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-content {
            flex: 1.2;
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-content h2 { color: white; font-size: 3.5rem; margin-bottom: 25px; line-height: 1.1; }
        .banner-content p { margin-bottom: 40px; color: #e0d0cc; font-size: 1.1rem; max-width: 500px; }
        .banner-btns { display: flex; gap: 20px; }

        /* --- Footer Bottom --- */
        .site-footer {
            background-color: #3E1E16;
            color: #dcbab5;
            padding: 25px 40px;
            border-radius: 30px 30px 0 0;
            font-weight: 500;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .socials { display: flex; gap: 10px; }
        .socials i {
            padding: 0;
            border: 1px solid #dcbab5;
            border-radius: 50%;
            width: 38px;
            height: 38px;
            text-align: center;
            line-height: 36px;
            transition: 0.3s;
            cursor: pointer;
        }
        .socials i:hover {
            background: white;
            color: #3E1E16;
            border-color: white;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero, .about-grid, .section-header, .testimonial-area, .footer-banner, .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            
            .hero-content { padding-right: 0; }
            .hero h1 { font-size: 3.5rem; letter-spacing: -2px; }
            
            .hero-badges-wrapper {
                position: static;
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin: 20px 0;
                transform: none;
            }
            .badge { margin: 0 !important; transform: rotate(0deg) !important; }
            
            .hero p { margin: 0 auto 30px; }
            .hero-buttons { justify-content: center; }

            .about-grid { grid-template-columns: 1fr; }
            .collage img:first-child { height: 300px; }
            .about-text { padding: 0; }
            .about-text .tags { justify-content: center; gap: 8px; }
            .tag { padding: 3px 10px; font-size: 0.6rem; border-radius: 4px; }
            .about-text p { margin: 0 auto 35px; }

            .section-header { align-items: center; }
            .arrows { display: none; } /* Hide arrows on mobile if swipe works, or center them */
            
            .features-grid { grid-template-columns: 1fr; gap: 40px; }
            
            .testi-left img { width: 120px; height: 120px; margin: 0 auto; }
            .testi-center h2 { font-size: 2rem; margin: 0 auto; }
            .rating { justify-content: center; }
            
            .banner-content { padding: 40px; align-items: center; }
            .banner-content h2 { font-size: 2.5rem; }
            .banner-btns { flex-direction: column; width: 100%; }
            .banner-btns button { width: 100%; justify-content: center; }

            .nav-links { display: none; } /* Mobile menu would be needed here normally */
            .nav-actions { display: none; }
            .hamburger { display: block; }
        }


        @media (max-width: 480px) {
            .hero h1 { font-size: 2.8rem; }
            .badge { padding: 6px 12px; font-size: 0.75rem; }
            .btn { width: 100%; justify-content: center; }
            .hero-buttons { flex-direction: column; width: 100%; }
        }

        /* --- Animations --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays */
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
