* {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   :root {
       --primary-green: #7cb342;
       --light-green: #c5e1a5;
       --lighter-green: #e8f5e9;
       --dark-green: #558b2f;
       --gold: #ffb300;
       --white: #ffffff;
       --text-dark: #2e7d32;
       --shadow: rgba(46, 125, 50, 0.08);
       --shadow-hover: rgba(46, 125, 50, 0.18);
       --font-serif: 'Playfair Display', Georgia, serif;
       --font-sans: 'Outfit', 'Segoe UI', sans-serif;
   }

    body {
        font-family: var(--font-sans);
        background: linear-gradient(135deg, var(--lighter-green) 0%, var(--light-green) 100%);
        min-height: 100vh;
        padding-bottom: 20px;
        animation: backgroundShift 10s ease infinite;
        position: relative;
        overflow-x: hidden;
    }

    body.preloading {
        overflow: hidden !important;
        height: 100vh;
    }

    h1, h2, h3, .brand-name, .section-title, .about-title, .form-title {
        font-family: var(--font-serif);
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    /* Page transition animations */
    .page-exit {
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .page-enter-active {
        animation: premiumEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    @keyframes premiumEnter {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Scroll Reveal styles */
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity;
    }
    
    .reveal-on-scroll.revealed {
        opacity: 1;
        transform: translateY(0);
    }

   /* Greenary Background Animation */
   .greenary-bg {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       pointer-events: none;
       z-index: -1;
       overflow: hidden;
   }

   .leaf {
       position: absolute;
       width: 40px;
       height: 40px;
       background: rgba(124, 179, 66, 0.15);
       border-radius: 50% 50% 50% 0;
       transform: rotate(45deg);
       animation: floatLeaf 20s linear infinite;
   }

   .leaf:nth-child(2n) {
       background: rgba(85, 139, 47, 0.1);
       width: 30px;
       height: 30px;
       animation-delay: -5s;
   }

   .leaf:nth-child(3n) {
       background: rgba(197, 225, 165, 0.2);
       width: 25px;
       height: 25px;
       animation-delay: -10s;
   }

   .leaf:nth-child(4n) {
       background: rgba(232, 245, 233, 0.15);
       width: 35px;
       height: 35px;
       animation-delay: -15s;
   }

   @keyframes floatLeaf {
       0% {
           transform: translateY(100vh) rotate(0deg) scale(1);
           opacity: 0;
       }

       10% {
           opacity: 0.8;
       }

       90% {
           opacity: 0.8;
       }

       100% {
           transform: translateY(-100px) rotate(360deg) scale(0.5);
           opacity: 0;
       }
   }

   @keyframes backgroundShift {

       0%,
       100% {
           background: linear-gradient(135deg, var(--lighter-green) 0%, var(--light-green) 100%);
       }

       50% {
           background: linear-gradient(135deg, var(--light-green) 0%, #aed581 100%);
       }
   }

   .header-controls {
       position: absolute;
       top: 20px;
       left: 1px;
       /* Changed from right to left */
       display: flex;
       flex-direction: column;
       align-items: flex-start;
       /* Changed from flex-end to flex-start */
       gap: 10px;
       z-index: 100;
   }

   .admin-badge {
       position: absolute;
       top: -15px;
       left: 0;
       background: var(--gold);
       color: var(--text-dark);
       border-radius: 12px;
       border: none;
       padding: 4px 8px;
       font-size: 0.7rem;
       font-weight: bold;
       cursor: pointer;
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
       display: flex;
       align-items: center;
       gap: 4px;
       white-space: nowrap;
   }

   /* UPDATED: Navigation Menu Styles - Now positioned on left side */
   .nav-menu {
       position: relative;
       margin-top: 15px;
   }

   .menu-btn {
       background: rgba(255, 255, 255, 0.2);
       border: none;
       color: var(--white);
       padding: 10px 18px;
       border-radius: 50px;
       cursor: pointer;
       font-size: 0.95rem;
       font-weight: 600;
       display: flex;
       align-items: center;
       gap: 8px;
       transition: all 0.3s ease;
       backdrop-filter: blur(10px);
   }

   .menu-btn:hover {
       background: rgba(255, 255, 255, 0.3);
       transform: scale(1.05);
   }

    .menu-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 15px;
        padding: 10px 0;
        min-width: 180px;
        box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
        display: none;
        animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 10px;
        z-index: 101;
    }

    .menu-dropdown.show {
        display: block;
    }

   .menu-item {
       padding: 12px 20px;
       color: var(--text-dark);
       text-decoration: none;
       display: flex;
       align-items: center;
       gap: 10px;
       transition: all 0.3s ease;
       cursor: pointer;
   }

   .menu-item:hover {
       background: var(--lighter-green);
       color: var(--dark-green);
       padding-left: 25px;
   }

   .menu-item i {
       width: 20px;
       text-align: center;
   }

   /* Header Styles */
   .header {
       background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
       color: var(--white);
       padding: 20px;
       text-align: center;
       box-shadow: 0 4px 15px var(--shadow);
       position: relative;
       animation: slideDown 0.6s ease;
   }

   @keyframes slideDown {
       from {
           transform: translateY(-100%);
           opacity: 0;
       }

       to {
           transform: translateY(0);
           opacity: 1;
       }
   }

   .logo-container {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 15px;
       margin-bottom: 5px;
   }

   .brand-name {
       font-size: 2.5rem;
       font-weight: bold;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
       animation: fadeIn 1s ease;
       font-family: "Times New Roman", Times, serif;
       /* Add this line */
       letter-spacing: 1px;
       /* Optional: adds spacing for better readability */
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   .tagline {
       font-size: 0.9rem;
       opacity: 0.9;
       margin-top: 5px;
   }

   /* UPDATED: Cart Icon Styles - Now separate on right side */
   .cart-icon-container {
       z-index: 110;
       position: absolute;
       /* Changed back to absolute */
       top: 50px;
       right: 20px;
       font-size: 1.5rem;
       cursor: pointer;
       background: rgba(255, 255, 255, 0.2);
       padding: 10px 15px;
       border-radius: 50%;
       transition: all 0.3s ease;
       animation: pulse 2s ease infinite;
       display: flex;
       align-items: center;
       justify-content: center;
       width: 50px;
       height: 50px;
   }

   @keyframes pulse {

       0%,
       100% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.1);
       }
   }

   .cart-icon-container:hover {
       background: rgba(255, 255, 255, 0.3);
       transform: scale(1.1);
   }

   .cart-count {
       position: absolute;
       top: -5px;
       right: -5px;
       background: var(--gold);
       color: var(--text-dark);
       border-radius: 50%;
       width: 25px;
       height: 25px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 0.8rem;
       font-weight: bold;
   }

   /* Responsive Design Updates */
   @media (max-width: 768px) {
       .header-controls {
           top: 15px;
           left: 10px;
           gap: 8px;
       }

       .cart-icon-container {
           top: 40px;
           right: 15px;
           width: 45px;
           height: 45px;
           padding: 8px 12px;
           font-size: 1.3rem;
       }

       .cart-count {
           width: 22px;
           height: 22px;
           font-size: 0.7rem;
           top: -4px;
           right: -4px;
       }

       .menu-btn {
           padding: 8px 15px;
           font-size: 0.85rem;
       }

       .nav-menu {
           margin-top: 0;
       }

       .brand-name {
           font-size: 2.2rem;
       }

       .logo-img {
           width: 55px;
           height: 55px;
       }

       .logo-icon {
           font-size: 2.2rem;
       }
   }

   @media (max-width: 480px) {
       .admin-badge {
           top: -30px;
       }

       .header-controls {
           top: 40px;
           /* Increased from 12px to 32px */
           left: 1px;
           gap: 6px;
       }

       .cart-icon-container {
           top: 40px;
           /* Increased from 12px to 32px */
           right: 12px;
           width: 40px;
           height: 40px;
           padding: 7px 10px;
           font-size: 1.2rem;
       }

       .cart-count {
           width: 20px;
           height: 20px;
           font-size: 0.65rem;
           top: -3px;
           right: -3px;
       }

       .menu-btn {
           padding: 6px 12px;
           font-size: 0.8rem;
       }

       .brand-name {
           font-size: 2rem;
       }
   }

   /* NEW: Gallery Section (moved to top) */
   .gallery-section {
       max-width: 1200px;
       margin: 40px auto;
       padding: 0 20px;
       display: block !important;
   }

   .gallery-container {
       background: var(--white);
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(124, 179, 66, 0.15);
       position: relative;
       height: 500px;
   }

   .gallery-slide {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: none;
       animation: fadeIn 1s ease;
   }

   .gallery-slide.active {
       display: block;
   }

   .gallery-controls {
       position: absolute;
       bottom: 20px;
       left: 0;
       width: 100%;
       display: flex;
       justify-content: center;
       gap: 15px;
       z-index: 10;
   }

   .gallery-dot {
       width: 15px;
       height: 15px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.5);
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .gallery-dot.active {
       background: var(--primary-green);
       transform: scale(1.3);
   }

   .gallery-nav {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       background: rgba(124, 179, 66, 0.8);
       color: white;
       border: none;
       width: 50px;
       height: 50px;
       border-radius: 50%;
       font-size: 1.5rem;
       cursor: pointer;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: all 0.3s ease;
       z-index: 10;
   }

   .gallery-nav:hover {
       background: var(--primary-green);
       transform: translateY(-50%) scale(1.1);
   }

   .gallery-nav.prev {
       left: 20px;
   }

   .gallery-nav.next {
       right: 20px;
   }

   /* Main Container (Products) - Now comes after Gallery */
   .main-container {
       max-width: 1200px;
       margin: 30px auto;
       padding: 0 20px;
       animation: fadeInUp 0.8s ease;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .section-title {
       font-size: 2rem;
       color: var(--text-dark);
       text-align: center;
       margin-bottom: 30px;
       position: relative;
       padding-bottom: 15px;
   }

   .section-title::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 100px;
       height: 3px;
       background: var(--primary-green);
       border-radius: 2px;
   }

   .categories-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 25px;
   }

    .category-card {
        background: var(--white);
        border-radius: 20px;
        padding: 25px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 8px 24px var(--shadow);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(124, 179, 66, 0.08);
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        transform: scale(0);
        pointer-events: none;
    }

    .category-card:hover::before {
        transform: scale(1);
    }

    .category-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px var(--shadow-hover);
        border-color: var(--primary-green);
    }

    .category-card:active {
        transform: translateY(-4px) scale(1.01);
    }

   .category-image-wrapper {
       width: 100%;
       height: 200px;
       margin-bottom: 15px;
       border-radius: 15px;
       overflow: hidden;
       background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
       display: flex;
       align-items: center;
       justify-content: center;
       position: relative;
   }

   .category-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: all 0.3s ease;
   }

   .category-card:hover .category-image {
       transform: scale(1.1);
   }

   .category-icon {
       font-size: 4rem;
       color: var(--primary-green);
       margin-bottom: 15px;
       transition: all 0.3s ease;
   }

   .category-card:hover .category-icon {
       transform: scale(1.2) rotate(5deg);
       color: var(--dark-green);
   }

   .category-name {
       font-size: 1.5rem;
       color: var(--text-dark);
       font-weight: bold;
       margin-bottom: 10px;
       position: relative;
       z-index: 1;
   }

   .category-count {
       font-size: 0.9rem;
       color: #666;
       position: relative;
       z-index: 1;
   }

   /* Product Detail Page */
   .product-detail-page {
       max-width: 1200px;
       margin: 20px auto;
       padding: 0 20px;
       animation: slideIn 0.5s ease;
   }

   @keyframes slideIn {
       from {
           opacity: 0;
           transform: translateX(30px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   .detail-header {
       display: flex;
       align-items: center;
       gap: 15px;
       margin-bottom: 25px;
   }

   .back-btn {
       background: var(--primary-green);
       color: var(--white);
       border: none;
       padding: 12px 20px;
       border-radius: 50px;
       cursor: pointer;
       font-size: 1rem;
       transition: all 0.3s ease;
       box-shadow: 0 3px 10px var(--shadow);
   }

   .back-btn:hover {
       background: var(--dark-green);
       transform: translateX(-5px);
   }

   #detailCategoryName {
       color: var(--text-dark);
       font-size: 2rem;
   }

   .products-list {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
       gap: 20px;
   }

    .product-card {
        background: var(--white);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 8px 24px var(--shadow);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        animation: productAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) ease;
        border: 1px solid rgba(124, 179, 66, 0.08);
    }

    @keyframes productAppear {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px var(--shadow-hover);
        border-color: var(--primary-green);
    }

   .product-image-container {
       width: 100%;
       height: 200px;
       background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 15px;
       position: relative;
       overflow: hidden;
       padding: 10px;
   }

   .product-image-container::before {
       content: 'NATURAL';
       position: absolute;
       font-size: 1.2rem;
       font-weight: bold;
       color: var(--primary-green);
       opacity: 0.4;
       z-index: 1;
       text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
   }

   .product-image-container::after {
       content: 'ORGANIC';
       position: absolute;
       bottom: 10px;
       right: 10px;
       background: rgba(124, 179, 66, 0.9);
       color: white;
       padding: 5px 10px;
       border-radius: 15px;
       font-size: 0.8rem;
       font-weight: bold;
       z-index: 3;
   }

   .product-image {
       max-width: 100%;
       max-height: 100%;
       width: auto;
       height: auto;
       object-fit: contain;
       position: relative;
       z-index: 2;
       border-radius: 8px;
   }

   .product-name {
       font-size: 1.1rem;
       color: var(--text-dark);
       font-weight: 600;
       margin-bottom: 8px;
   }

   .product-price {
       font-size: 1.3rem;
       color: var(--primary-green);
       font-weight: bold;
       margin-bottom: 15px;
   }

   .add-to-cart-btn {
       background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
       color: var(--white);
       border: none;
       padding: 12px 25px;
       border-radius: 25px;
       cursor: pointer;
       font-size: 1rem;
       font-weight: 600;
       width: 100%;
       transition: all 0.3s ease;
       box-shadow: 0 3px 10px var(--shadow);
       position: relative;
       overflow: hidden;
   }

   .add-to-cart-btn:hover {
       transform: scale(1.05);
       box-shadow: 0 5px 15px rgba(124, 179, 66, 0.4);
   }

   .add-to-cart-btn:active {
       transform: scale(0.98);
   }

   .add-to-cart-btn.added {
       background: var(--gold);
       color: var(--text-dark);
   }

   /* Cart Animation Effect */
   .cart-animation {
       position: fixed;
       width: 40px;
       height: 40px;
       background: var(--primary-green);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 1.2rem;
       z-index: 1001;
       pointer-events: none;
       animation: flyToCart 0.8s ease forwards;
   }

   @keyframes flyToCart {
       0% {
           transform: scale(1) translate(0, 0);
           opacity: 1;
       }

       100% {
           transform: scale(0.3) translate(var(--target-x), var(--target-y));
           opacity: 0;
       }
   }

   /* About Us Section (moved after Products) */
   .about-section {
       max-width: 1200px;
       margin: 40px auto 30px;
       padding: 40px;
       background: var(--white);
       border-radius: 20px;
       box-shadow: 0 10px 30px rgba(124, 179, 66, 0.15);
       position: relative;
       overflow: hidden;
       animation: fadeInUp 1s ease;
   }

   .about-section::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 5px;
       background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
   }

   .about-header {
       display: flex;
       align-items: center;
       gap: 15px;
       margin-bottom: 25px;
   }

   .about-icon {
       font-size: 2rem;
       color: var(--primary-green);
       background: var(--lighter-green);
       padding: 15px;
       border-radius: 50%;
   }

   .about-title {
       font-size: 2rem;
       color: var(--text-dark);
       font-weight: 700;
   }

   .about-content {
       font-size: 1.1rem;
       line-height: 1.6;
       color: #444;
       margin-bottom: 25px;
   }

   .highlight {
       color: var(--dark-green);
       font-weight: 600;
   }

   .contact-info {
       background: var(--lighter-green);
       padding: 20px;
       border-radius: 15px;
       margin-top: 20px;
       display: flex;
       flex-wrap: wrap;
       gap: 20px;
       align-items: center;
       justify-content: space-between;
   }

   .contact-item {
       display: flex;
       align-items: center;
       gap: 10px;
   }

   .contact-icon {
       font-size: 1.2rem;
       color: var(--primary-green);
   }

   .contact-text {
       font-size: 1rem;
       color: var(--text-dark);
       font-weight: 500;
   }

   .phone-number {
       font-size: 1.3rem;
       font-weight: bold;
       color: var(--dark-green);
       text-decoration: none;
       transition: all 0.3s ease;
   }

   .phone-number:hover {
       color: var(--primary-green);
       text-decoration: underline;
   }

   .cash-on-delivery {
       background: linear-gradient(135deg, var(--gold), #ff9800);
       color: var(--white);
       padding: 10px 20px;
       border-radius: 25px;
       font-weight: bold;
       box-shadow: 0 3px 10px rgba(255, 179, 0, 0.3);
       animation: bounce 2s ease infinite;
   }

   @keyframes bounce {

       0%,
       100% {
           transform: translateY(0);
       }

       50% {
           transform: translateY(-5px);
       }
   }

    /* FIXED: Reviews Section (Now at the end as requested) */
    .reviews-section {
        max-width: 1200px;
        margin: 60px auto 40px;
        padding: 50px 35px;
        display: block !important;
        background: rgba(220, 237, 200, 0.35); /* Translucent soft light green blend */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 28px;
        border: 1px solid rgba(85, 139, 47, 0.15);
        box-shadow: 0 10px 40px rgba(46, 125, 50, 0.04);
    }
    .testimonials-badge {
        background: #ff5722;
        color: white;
        padding: 6px 18px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: inline-block;
        box-shadow: 0 4px 10px rgba(255, 87, 34, 0.25);
        clip-path: polygon(2% 17%, 96% 6%, 100% 80%, 10% 88%);
    }

    .reviews-board-container {
        display: flex;
        gap: 30px;
        align-items: stretch;
    }

    /* Left Summary Card */
    .reviews-summary-card {
        flex: 0 0 250px;
        background: rgba(241, 248, 233, 0.85); /* Creamy lighter green background */
        border: 1px solid rgba(85, 139, 47, 0.18);
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 8px 30px rgba(85, 139, 47, 0.06);
    }

    .summary-title {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .summary-stars {
        color: var(--gold);
        font-size: 1.6rem;
        margin-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 179, 0, 0.4);
    }

    .summary-count {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 20px;
    }

    .summary-google-logo {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 15px;
        width: 100%;
    }

    /* Right Slider Outer */
    .reviews-slider-outer {
        flex: 1;
        position: relative;
        overflow: hidden;
    }

    .reviews-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbar Firefox */
        scroll-behavior: smooth;
        padding: 10px 0;
    }

    .reviews-track::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    /* Individual Review Slider Card */
    .review-slider-card {
        flex: 0 0 calc(33.333% - 14px);
        scroll-snap-align: start;
        background: rgba(241, 248, 233, 0.75); /* Soft translucent creamy green */
        border: 1px solid rgba(85, 139, 47, 0.12);
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 6px 20px rgba(85, 139, 47, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .review-slider-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(85, 139, 47, 0.15);
        border-color: rgba(85, 139, 47, 0.3);
        background: rgba(241, 248, 233, 0.95);
    }

    .card-header-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .user-info-side {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .user-avatar-circle {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.15rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    }

    .user-fullname {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 2px;
        font-family: var(--font-sans) !important;
    }

    .review-date-label {
        font-size: 0.75rem;
        color: #999;
    }

    .google-g-logo {
        flex-shrink: 0;
    }

    .card-stars-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .stars-gold {
        color: var(--gold);
        font-size: 1.1rem;
    }

    .verified-badge-pill {
        background: #e3f2fd;
        color: #1e88e5;
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .card-review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        font-style: italic;
        flex-grow: 1;
    }

    /* Nav Buttons */
    .reviews-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-dark);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        z-index: 10;
        transition: all 0.3s ease;
    }

    .reviews-nav-btn:hover {
        background: var(--primary-green);
        color: var(--white);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(124, 179, 66, 0.3);
    }

    .reviews-nav-btn.prev {
        left: 5px;
    }

    .reviews-nav-btn.next {
        right: 5px;
    }

    /* Responsive adjustments for reviews slider */
    @media (max-width: 1024px) {
        .review-slider-card {
            flex: 0 0 calc(50% - 10px);
        }
    }

    @media (max-width: 768px) {
        .reviews-board-container {
            flex-direction: column;
        }

        .reviews-summary-card {
            flex: auto;
            width: 100%;
        }

        .review-slider-card {
            flex: 0 0 calc(100% - 10px);
        }

        .reviews-nav-btn {
            display: none; /* Hide nav arrows on mobile, use swipe */
        }
    }

   /* Cart Overlay */
   .cart-overlay {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       display: none;
       align-items: center;
       justify-content: center;
       z-index: 1000;
       animation: fadeIn 0.3s ease;
   }

   .cart-overlay.show {
       display: flex;
   }

   .cart-container {
       background: var(--white);
       border-radius: 20px;
       width: 90%;
       max-width: 500px;
       max-height: 80vh;
       display: flex;
       flex-direction: column;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
       animation: slideUp 0.4s ease;
   }

   @keyframes slideUp {
       from {
           transform: translateY(50px);
           opacity: 0;
       }

       to {
           transform: translateY(0);
           opacity: 1;
       }
   }

   .cart-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px;
       border-bottom: 2px solid var(--lighter-green);
   }

   .cart-header h2 {
       color: var(--text-dark);
   }

   .close-cart {
       background: none;
       border: none;
       font-size: 1.5rem;
       color: #666;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .close-cart:hover {
       color: var(--primary-green);
       transform: rotate(90deg);
   }

   .cart-items {
       flex: 1;
       overflow-y: auto;
       padding: 20px;
   }

   .cart-item {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 15px;
       margin-bottom: 10px;
       background: var(--lighter-green);
       border-radius: 10px;
       animation: slideInRight 0.3s ease;
   }

   @keyframes slideInRight {
       from {
           opacity: 0;
           transform: translateX(-20px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   .cart-item-info {
       flex: 1;
   }

   .cart-item-name {
       font-weight: 600;
       color: var(--text-dark);
       margin-bottom: 5px;
   }

   .cart-item-price {
       color: var(--primary-green);
       font-weight: bold;
   }

   .cart-item-quantity {
       display: flex;
       align-items: center;
       gap: 10px;
       margin: 10px 0;
   }

   .quantity-btn {
       background: var(--primary-green);
       color: var(--white);
       border: none;
       width: 30px;
       height: 30px;
       border-radius: 50%;
       cursor: pointer;
       font-size: 1rem;
       transition: all 0.3s ease;
   }

   .quantity-btn:hover {
       background: var(--dark-green);
       transform: scale(1.1);
   }

   .quantity-value {
       font-weight: bold;
       min-width: 30px;
       text-align: center;
   }

   .remove-btn {
       background: #f44336;
       color: var(--white);
       border: none;
       padding: 8px 15px;
       border-radius: 20px;
       cursor: pointer;
       font-size: 0.9rem;
       transition: all 0.3s ease;
   }

   .remove-btn:hover {
       background: #d32f2f;
       transform: scale(1.05);
   }

   .cart-footer {
       padding: 20px;
       border-top: 2px solid var(--lighter-green);
   }

   .cart-total {
       font-size: 1.5rem;
       color: var(--text-dark);
       margin-bottom: 15px;
       text-align: center;
   }

   .place-order-btn {
       background: #25d366;
       color: var(--white);
       border: none;
       padding: 15px 30px;
       border-radius: 25px;
       cursor: pointer;
       font-size: 1.1rem;
       font-weight: 600;
       width: 100%;
       transition: all 0.3s ease;
       box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
   }

   .place-order-btn:hover {
       background: #20ba5a;
       transform: scale(1.05);
       box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
   }

   .place-order-btn:active {
       transform: scale(0.98);
   }

   .empty-cart {
       text-align: center;
       padding: 40px;
       color: #666;
   }

   .empty-cart i {
       font-size: 4rem;
       color: var(--light-green);
       margin-bottom: 15px;
   }

   /* Customer Details Modal */
   .customer-modal {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       display: none;
       align-items: center;
       justify-content: center;
       z-index: 2000;
       animation: fadeIn 0.3s ease;
   }

   .customer-modal.show {
       display: flex;
   }

   .customer-form {
       background: var(--white);
       border-radius: 20px;
       width: 90%;
       max-width: 500px;
       padding: 30px;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
       animation: slideUp 0.4s ease;
   }

   .form-title {
       font-size: 1.5rem;
       color: var(--text-dark);
       margin-bottom: 20px;
       text-align: center;
   }

   .form-group {
       margin-bottom: 20px;
   }

   .form-label {
       display: block;
       margin-bottom: 8px;
       color: var(--text-dark);
       font-weight: 500;
   }

   .form-input {
       width: 100%;
       padding: 12px 15px;
       border: 2px solid var(--lighter-green);
       border-radius: 10px;
       font-size: 1rem;
       transition: all 0.3s ease;
   }

   .form-input:focus {
       outline: none;
       border-color: var(--primary-green);
       box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
   }

   .form-buttons {
       display: flex;
       gap: 15px;
       margin-top: 30px;
   }

   .submit-btn {
       flex: 1;
       background: var(--primary-green);
       color: var(--white);
       border: none;
       padding: 15px;
       border-radius: 10px;
       font-size: 1rem;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .submit-btn:hover {
       background: var(--dark-green);
       transform: translateY(-3px);
   }

   .cancel-btn {
       flex: 1;
       background: #f5f5f5;
       color: #666;
       border: none;
       padding: 15px;
       border-radius: 10px;
       font-size: 1rem;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .cancel-btn:hover {
       background: #e0e0e0;
       transform: translateY(-3px);
   }

   /* Footer Section */
   .footer {
       background: linear-gradient(135deg, var(--dark-green), #2e5c1a);
       color: var(--white);
       padding: 50px 20px 30px;
       margin-top: 60px;
       display: block !important;
   }

   .footer-content {
       max-width: 1200px;
       margin: 0 auto;
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 40px;
   }

   .footer-section h3 {
       font-size: 1.5rem;
       margin-bottom: 20px;
       color: var(--light-green);
       position: relative;
       padding-bottom: 10px;
   }

   .footer-section h3::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 3px;
       background: var(--gold);
   }

   .map-container {
       border-radius: 10px;
       overflow: hidden;
       margin-top: 15px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   }

   .map-container iframe {
       width: 100%;
       height: 250px;
       border: none;
   }

   .social-links {
       display: flex;
       gap: 20px;
       margin-top: 20px;
   }

    .social-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .social-link.instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .social-link.email {
        background: #EA4335;
    }

    .social-link.maps {
        background: #4285F4;
    }

    .social-link.call {
        background: #25D366;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

   .contact-details p {
       margin-bottom: 15px;
       display: flex;
       align-items: center;
       gap: 10px;
   }

   .contact-details i {
       color: var(--gold);
       width: 20px;
   }

   .copyright {
       text-align: center;
       margin-top: 50px;
       padding-top: 20px;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       color: var(--light-green);
       font-size: 0.9rem;
   }

   /* Responsive Design */
   @media (max-width: 768px) {
       .brand-name {
           font-size: 2rem;
       }

       .about-section {
           padding: 25px;
           margin: 20px 15px;
       }

       .about-title {
           font-size: 1.5rem;
       }

       .categories-grid {
           grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
           gap: 15px;
       }

       .products-list {
           grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
           gap: 15px;
       }

       .cart-container {
           width: 95%;
           max-height: 90vh;
       }

       .contact-info {
           flex-direction: column;
           align-items: flex-start;
       }

       .review-container {
           padding: 25px;
           min-height: 250px;
       }

       .review-text {
           font-size: 1.1rem;
       }

       .gallery-container {
           height: 300px;
       }

       .gallery-nav {
           width: 40px;
           height: 40px;
           font-size: 1.2rem;
       }

       .footer-content {
           grid-template-columns: 1fr;
       }

       .nav-menu {
           top: 10px;
           left: 1px;
           /*menu button left change */
       }

       .menu-btn {
           padding: 10px 15px;
           font-size: 0.9rem;
       }
   }

   /* Loading Animation */
   @keyframes shimmer {
       0% {
           background-position: -1000px 0;
       }

       100% {
           background-position: 1000px 0;
       }
   }

   .loading {
       animation: shimmer 2s infinite;
       background: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
       background-size: 1000px 100%;
   }