
        :root {
            --brand-green: #2d6a4f;
            --brand-light: #f4f9f4;
            --brand-cream: #faf9f6;
            --brand-dark: #1e3a2f;
        }
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--brand-cream); 
            color: #2d3436;
            background: linear-gradient(135deg, #faf9f6 0%, #f5f2eb 100%);
        }
        h1, h2, h3, .font-serif { font-family: 'Playfair Display', serif; }
        
        /* Smooth Custom Animations */
        .glass { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); }
        .glass-nav { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); }
        .product-card:hover img { transform: scale(1.05); transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
        .btn-primary { transition: all 0.3s ease; box-shadow: 0 10px 20px -5px rgba(45, 106, 79, 0.3); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px -5px rgba(45, 106, 79, 0.4); }
        
        /* Section Spacing */
        section { padding-top: 6rem; padding-bottom: 6rem; }

        /* active nav highlight style */
        .nav-link-active {
            color: #2d6a4f !important;
            font-weight: 600;
            border-bottom: 2px solid #2d6a4f;
            padding-bottom: 2px;
        }
        .nav-item {
            transition: all 0.2s ease;
        }
        
        /* Reverse animation classes - elements fade out when scrolling up */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.85s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.85s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        
        .reveal-on-scroll.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* fade out scroll effect */
        .fade-out-scroll {
            transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.5s ease-out;
        }
        
        .fade-out-scroll.fade-out-active {
            opacity: 0.4 !important;
            transform: scale(0.97);
        }
        
        /* Special parallax subtle reverse for hero */
        .hero-image-reverse {
            transition: transform 0.4s ease-out;
            will-change: transform;
        }
        
        /* Scroll indicator for reverse animation */
        .scroll-hint {
            animation: bounceSoft 2s infinite;
        }
        
        @keyframes bounceSoft {
            0%, 100% { transform: translateY(0); opacity: 0.6; }
            50% { transform: translateY(10px); opacity: 1; }
        }
        
        /* Hero Background Overlay */
        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(250, 249, 246, 0.92) 0%, rgba(250, 249, 246, 0.85) 50%, rgba(250, 249, 246, 0.7) 100%);
            z-index: 1;
        }
        
        .hero-section {
            position: relative;
            background-image: url('../img/main.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
            }
        }
         /* ===== PRELOADER / LOADING ANIMATION STYLES ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #faf9f6;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.8s ease;
        }

        .preloader-text{
            font-size: 0.75rem; 
            color: #5e6b6b; 
            margin-top: 1rem; 
            font-weight: 300;
        }
        
        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        /* Animated spice-inspired loader */
        .loader-container {
            text-align: center;
            transform: translateY(-10px);
        }
        
        .spice-icon {
            display: inline-flex;
            gap: 1.2rem;
            margin-bottom: 2rem;
            animation: gentleFloat 2s infinite ease-in-out;
        }
        
        .spice-icon i {
            font-size: 3rem;
            color: #2d6a4f;
            filter: drop-shadow(0 8px 12px rgba(0,0,0,0.08));
        }
        
        .spice-icon i:nth-child(1) { animation: pulseRotate 1.4s infinite; }
        .spice-icon i:nth-child(2) { animation: pulseRotate 1.4s infinite 0.2s; }
        .spice-icon i:nth-child(3) { animation: pulseRotate 1.4s infinite 0.4s; }
        .spice-icon i:nth-child(4) { animation: pulseRotate 1.4s infinite 0.6s; }
        
        @keyframes pulseRotate {
            0% { transform: scale(0.9) rotate(0deg); opacity: 0.5; }
            50% { transform: scale(1.2) rotate(8deg); opacity: 1; text-shadow: 0 0 8px rgba(45,106,79,0.3); }
            100% { transform: scale(0.9) rotate(0deg); opacity: 0.5; }
        }
        
        @keyframes gentleFloat {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        
        .loader-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #2d6a4f, #40916c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-top: 1rem;
            font-weight: 600;
        }
        
        .loader-progress {
            width: 220px;
            height: 3px;
            background: rgba(45,106,79,0.2);
            border-radius: 10px;
            margin: 1.5rem auto 0;
            overflow: hidden;
            position: relative;
        }
        
        .loader-progress-bar {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #2d6a4f, #52b788);
            border-radius: 10px;
            transition: width 0.1s linear;
        }
        
        .loader-percent {
            font-family: 'Plus Jakarta Sans', monospace;
            font-size: 0.85rem;
            font-weight: 600;
            color: #2d6a4f;
            margin-top: 0.5rem;
            letter-spacing: 0.5px;
        }
        
        /* prevent body scroll while preloader is active */
        body.preloader-active {
            overflow: hidden;
        }
        
        /* smooth global entry for content */
        .main-wrapper {
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }
        
        .main-wrapper.ready {
            opacity: 1;
        }
        
        /* AOS overrides consistency */
        [data-aos] {
            pointer-events: none;
        }
        [data-aos].aos-animate {
            pointer-events: auto;
        }

        /* ===== CUSTOM FOOTER STYLES (Tevina Premium) ===== */
        .sri-footer {
            background-color: #ffffff;
            border-top: 1px solid rgba(45, 106, 79, 0.15);
            margin-top: 0;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
        }
        .footer-brand-area {
            flex: 1;
            min-width: 240px;
        }
        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3a2f;
            margin-bottom: 1.25rem;
            letter-spacing: -0.3px;
        }
        .footer-logo i {
            font-size: 2rem;
            color: #2d6a4f;
        }
        .brand-description {
            color: #5a6e6a;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 1.8rem;
            max-width: 320px;
        }
        .social-icons {
            display: flex;
            gap: 1.2rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #f0f4f0;
            border-radius: 50%;
            color: #2d6a4f;
            font-size: 1.1rem;
            transition: all 0.25s ease;
        }
        .social-icons a:hover {
            background: #2d6a4f;
            color: white;
            transform: translateY(-3px);
        }
        .footer-nav-columns {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }
        .nav-column h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            color: #1e2a25;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .nav-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-column li {
            margin-bottom: 0.8rem;
        }
        .nav-column a {
            text-decoration: none;
            color: #5a6e6a;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }
        .nav-column a:hover {
            color: #2d6a4f;
            padding-left: 2px;
        }
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(45, 106, 79, 0.15);
        }
        .copyright {
            font-size: 0.8rem;
            color: #7c8b87;
        }
        .legal-links {
            display: flex;
            gap: 1.5rem;
        }
        .legal-links a {
            font-size: 0.8rem;
            color: #7c8b87;
            text-decoration: none;
            transition: color 0.2s;
        }
        .legal-links a:hover {
            color: #2d6a4f;
        }
        @media (max-width: 768px) {
            .footer-inner {
                padding: 2.5rem 1.5rem 1.5rem;
            }
            .footer-top-grid {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-nav-columns {
                gap: 2rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .footer-top-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
  /* Privacy policy page */

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        @keyframes spin { to { transform: rotate(360deg); } }

        .animate-fadeUp { animation: fadeInUp 0.7s ease forwards; }
        .animate-fadeLeft { animation: fadeInLeft 0.7s ease forwards; }
        .animate-fadeRight { animation: fadeInRight 0.7s ease forwards; }
        .animate-scale { animation: scaleIn 0.5s ease forwards; }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }
        .delay-100 { animation-delay: 0.1s; opacity: 0; }
        .delay-200 { animation-delay: 0.2s; opacity: 0; }
        .delay-300 { animation-delay: 0.3s; opacity: 0; }
        .delay-400 { animation-delay: 0.4s; opacity: 0; }
        .delay-500 { animation-delay: 0.5s; opacity: 0; }

        .policy-section {
            transition: all 0.3s ease;
        }
        .policy-section:hover {
            transform: translateX(4px);
        }
        
        .consent-card {
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .consent-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 52px;
            height: 28px;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e1;
            transition: 0.3s;
            border-radius: 28px;
        }
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }
        input:checked + .toggle-slider {
            background-color: #2d6a4f;
        }
        input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }
        
        .cookie-banner {
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #2d6a4f;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 90;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #1b4d3e;
            transform: translateY(-4px);
        }
        
        .last-updated {
            font-family: monospace;
        }

    /* Contatc page */

    .contact-card { transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); }
    .contact-card:hover { transform: translateY(-8px); box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15); }
        
    .form-input { transition: all 0.3s ease; border: 1px solid #e2e8f0; }
    .form-input:focus { border-color: #2d6a4f; box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1); outline: none; }
        
    .floating-label-group { position: relative; margin-bottom: 1.5rem; }

        .floating-label-group input, .floating-label-group textarea, .floating-label-group select {
            width: 100%; padding: 1rem 1rem 0.5rem 1rem; font-size: 1rem;
            border: 1px solid #e2e8f0; border-radius: 1rem; background: white;
            transition: all 0.3s ease;
        }
        .floating-label-group label {
            position: absolute; left: 1rem; top: 1rem; color: #94a3b8;
            transition: all 0.2s ease; pointer-events: none; font-size: 0.95rem;
        }
        .floating-label-group input:focus ~ label,
        .floating-label-group input:not(:placeholder-shown) ~ label,
        .floating-label-group textarea:focus ~ label,
        .floating-label-group textarea:not(:placeholder-shown) ~ label,
        .floating-label-group select:focus ~ label,
        .floating-label-group select:not([value=""]) ~ label {
            top: 0.3rem; font-size: 0.7rem; color: #2d6a4f; font-weight: 600;
        }
        .floating-label-group input:focus, .floating-label-group textarea:focus, .floating-label-group select:focus {
            border-color: #2d6a4f; box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
        }
    .map-container { border-radius: 2rem; overflow: hidden; box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2); }
        
     /* Toast Container Styling */
        .status-popup {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            max-width: 400px;
            transform: translateY(1.5rem);
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .status-popup.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        /* Success & Error Glows */
        .status-success {
            background: white;
            border-left: 4px solid #166534;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }
        .status-error {
            background: white;
            border-left: 4px solid #991b1b;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }


        .benefit-card {
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
        }

        .section-card {
            transition: all 0.3s ease;
        }
        .section-card:hover {
            transform: translateX(6px);
        }

        .toc-item {
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .toc-item:hover {
            color: #2d6a4f;
            padding-left: 0.5rem;
        }


        .error-message {
            background: #fee2e2;
            border-left: 4px solid #dc2626;
            padding: 1rem;
            border-radius: 1rem;
            margin-bottom: 1rem;
            color: #991b1b;
        }

        .category-badge { transition: all 0.2s ease; cursor: pointer; }
        .price-slider { -webkit-appearance: none; background: #e2e8f0; height: 4px; border-radius: 10px; }
        .price-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: #2d6a4f; border-radius: 50%; cursor: pointer; }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.75rem;
        }
        @media (min-width: 1024px) { .grid-container { grid-template-columns: repeat(3, 1fr); } }
        .btn-cart { transition: all 0.2s ease; }

        .product-card .card-content { flex: 1; display: flex; flex-direction: column; }
        .product-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 1.5rem;
            background: linear-gradient(135deg, #f8f9f8 0%, #f1f3f1 100%);
        }
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .product-card:hover .product-image { transform: scale(1.05); }
        .product-title {
            font-size: 1.25rem;
            line-height: 1.4;
            min-height: 3.2rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-card { 
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); 
            background: white;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12); }
        

        .step-card {
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
        }
        .policy-card {
            transition: all 0.3s ease;
        }
        .policy-card:hover {
            transform: translateX(6px);
        }

        .success-checkmark {
            animation: checkmark 0.5s ease-in-out forwards;
        }
        @keyframes checkmark {
            0% { transform: scale(0); opacity: 0; }
            80% { transform: scale(1.2); }
            100% { transform: scale(1); opacity: 1; }
        }


        .slider-container { position: relative; overflow: hidden; border-radius: 2rem; background: #f8f9fa; }
        .slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
        .slider-track > div { flex-shrink: 0; width: 100%; }
        .slider-track img { width: 100%; height: auto; object-fit: cover; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.12); transition: all 0.3s ease; z-index: 20; border: none; color: #1e293b; }
        .slider-btn:hover { background: #2d6a4f; color: white; }
        .slider-btn.prev { left: 18px; }
        .slider-btn.next { right: 18px; }
        .slider-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 20; }
        .dot { width: 8px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
        .dot.active { width: 28px; background: #2d6a4f; border-radius: 20px; }
        .thumbnail-active { border: 3px solid #2d6a4f; transform: scale(1.02); box-shadow: 0 6px 18px rgba(45,106,79,0.25); }
        .thumbnail-item { cursor: pointer; transition: all 0.2s ease; border-radius: 1rem; overflow: hidden; }
        
        .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-content { background: white; border-radius: 2rem; max-width: 500px; width: 90%; padding: 2rem; transform: scale(0.9); transition: transform 0.3s ease; }
        .modal-overlay.active .modal-content { transform: scale(1); }
        .rating-star { cursor: pointer; transition: color 0.2s; font-size: 1.8rem; color: #cbd5e1; }
        .rating-star.active { color: #fbbf24; }
        .product-loading-spinner { display: inline-block; width: 40px; height: 40px; border: 3px solid #e2e8f0; border-top-color: #2d6a4f; border-radius: 50%; animation: spin 0.8s linear infinite; }
       