:root {
            --pure-green: #4d8a2a;
            --pure-green-dark: #3a6820;
            --pure-green-light: #f2f8f0;
            --accent-leaf: #7bc652;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-gray: #f9fafb;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-weight: 700;
        }

        /* Script/Handwritten style headers */
        .script-font {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--pure-green);
        }

        /* Text Utilities */
        .text-pure-green { color: var(--pure-green); }
        .text-accent-leaf { color: var(--accent-leaf); }
        .text-gray-custom { color: var(--text-light); }
        
        /* Background Utilities */
        .bg-pure-green { background-color: var(--pure-green); }
        .bg-pure-green-light { background-color: var(--pure-green-light); }
        .bg-gray-custom { background-color: var(--bg-gray); }

        /* The decorative leaf icon used throughout */
        .leaf-icon::after {
            content: "\f06c"; /* FontAwesome leaf */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent-leaf);
            margin-left: 8px;
            font-size: 0.7em;
            display: inline-block;
            transform: rotate(45deg);
        }

        /* Navbar Styling */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(5px);
            border-bottom: 1px solid #eee;
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        .nav-link {
            color: #4b5563 !important;
            font-weight: 500;
            font-size: 0.875rem;
            padding: 0.5rem 1rem !important;
            transition: color 0.2s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--pure-green) !important;
        }
        .navbar-brand-custom {
            line-height: 1;
        }
        .navbar-subtext {
            font-size: 0.6rem;
            letter-spacing: 0.15em;
            color: #9ca3af;
            text-transform: uppercase;
            display: block;
            margin-top: -3px;
            margin-left: 32px;
        }

        /* Buttons */
        .btn-custom-primary {
            background-color: var(--pure-green);
            color: white;
            border: none;
            font-weight: 500;
            padding: 0.6rem 1.5rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }
        .btn-custom-primary:hover {
            background-color: var(--pure-green-dark);
            color: white;
        }
        .btn-custom-outline {
            background-color: transparent;
            color: var(--text-dark);
            border: 2px solid #e5e7eb;
            font-weight: 500;
            padding: 0.6rem 1.5rem;
            border-radius: 0.375rem;
            transition: all 0.2s;
        }
        .btn-custom-outline:hover {
            border-color: var(--pure-green);
            color: var(--pure-green);
        }

        /* Cart Icon */
        .cart-wrapper {
            position: relative;
            display: inline-block;
            margin-right: 1.5rem;
        }
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -10px;
            background-color: var(--accent-leaf);
            color: white;
            font-size: 0.65rem;
            font-weight: bold;
            height: 18px;
            width: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero-section {
            padding-top: 150px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, var(--pure-green-light) 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-bg-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1622240506921-042a4e71c172?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            mix-blend-mode: multiply;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero-title {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--pure-green);
        }
        .feature-badge {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            margin-right: 1.5rem;
        }
        .feature-icon-circle {
            background-color: #d1fae5;
            color: var(--pure-green);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        /* Benefits Section */
        .section-padding {
            padding: 80px 0;
        }
        .section-separator {
            width: 50px;
            height: 2px;
            background-color: #d1d5db;
            margin: 1.5rem auto 3rem auto;
        }
        .benefit-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            color: var(--accent-leaf);
            font-size: 2rem;
            background-color: white;
            transition: border-color 0.3s;
        }
        .benefit-item:hover .benefit-icon {
            border-color: var(--accent-leaf);
            background-color: var(--pure-green-light);
        }

        /* Product Cards */
        .product-card {
            border: 1px solid #f3f4f6;
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background-color: white;
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .product-img-wrapper {
            height: 250px;
            background-color: #f9fafb;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            mix-blend-mode: multiply;
        }
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            color: white;
            z-index: 2;
        }
        .badge-bestseller { background-color: var(--accent-leaf); }
        .badge-energy { background-color: #f97316; }
        .badge-immune { background-color: #991b1b; }
        .badge-new { background-color: #facc15; color: #1f2937; }

        /* Testimonials */
        .testimonial-card {
            background-color: var(--pure-green-light);
            border-radius: 1rem;
            padding: 3rem 2rem 2rem;
            position: relative;
            margin-top: 2rem;
            height: calc(100% - 2rem);
        }
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 4px solid white;
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            object-fit: cover;
        }
        .quote-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 2.5rem;
            color: rgba(77, 138, 42, 0.1);
        }

        /* CTA Banner */
        .cta-section {
            background-color: var(--pure-green);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-bg {
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background-image: url('https://images.unsplash.com/photo-1600271886742-f049cd451bba?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            mix-blend-mode: overlay;
        }

        /* Footer */
        .footer {
            padding: 60px 0 30px;
            border-top: 1px solid #eee;
        }
        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #f3f4f6;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            margin-right: 10px;
            transition: all 0.2s;
            text-decoration: none;
        }
        .social-icon:hover {
            background-color: var(--pure-green);
            color: white;
        }
        .footer-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            display: block;
            transition: color 0.2s;
        }
        .footer-link:hover {
            color: var(--pure-green);
        }
        .payment-icon {
            height: 25px;
            width: 40px;
            background-color: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5rem;
            font-weight: bold;
            margin-right: 5px;
        }

        /* Utility */
        .scroll-top-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--pure-green);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 991.98px) {
            .hero-title { font-size: 3rem; }
            .hero-section { padding-top: 120px; text-align: center; }
            .feature-badge { justify-content: center; width: 100%; margin-right: 0; margin-bottom: 15px;}
            .feature-badges-container { display: flex; flex-direction: column; align-items: center;}
            .cta-section { text-align: center; }
            .cta-btn-container { margin-top: 20px; justify-content: center !important; }
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 1000;
            }
            .cart-wrapper { margin-right: 0; margin-bottom: 1rem; }
        }