/* ===== CSS VARIABLES ===== */
    :root {
      --green-primary: #3A7D44;
      --green-dark:    #2D6A36;
      --green-light:   #EAF4EC;
      --green-pale:    #f0f8f1;
      --navy:          #293452;
      --navy-dark:     #1e2740;
      --black:         #202020;
      --text-body:     #444444;
      --text-muted:    #777777;
      --white:         #FFFFFF;
      --cream:         #f5f0e8;
      --cream-dark:    #e8e3db;
      --gray-bg:       #F7F7F7;
      --gray-border:   #E5E5E5;
      --gold:          #F5A623;
      --promo-bar-bg:  #293452;
      --footer-bg:     #1A1A1A;
      --footer-text:   #CCCCCC;
      --font-display:  'Poppins', sans-serif;
      --font-body:     'Poppins', sans-serif;
      --radius-pill:   60px;
      --radius-card:   12px;
      --shadow-card:   0 2px 12px rgba(0,0,0,0.08);
      --shadow-hover:  0 6px 24px rgba(0,0,0,0.14);
      --transition:    all 0.25s ease;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); font-size: 16px; color: var(--text-body); background: var(--white); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .btn-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--green-primary); color: var(--white); border-radius: var(--radius-pill); padding: 13px 30px; font-family: var(--font-display); font-weight: 700; font-size: 15px; transition: var(--transition); }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(58,125,68,0.35); }
    .section-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 16px; }
    .section-desc { font-size: 16px; color: var(--text-body); max-width: 760px; line-height: 1.7; margin-bottom: 40px; }
    .promo-bar { background: var(--promo-bar-bg); color: var(--white); text-align: center; padding: 9px 48px; font-family: var(--font-display); font-size: 14px; font-weight: 400; position: relative; z-index: 100; display: flex; align-items: center; justify-content: center; }
    .promo-bar a { color: var(--white); text-decoration: underline; }
    .promo-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--white); font-size: 16px; cursor: pointer; padding: 4px 12px; opacity: 0.7; }
    .promo-arrow:hover { opacity: 1; }
    .promo-arrow.left { left: 8px; }
    .promo-arrow.right { right: 8px; }
    .site-header { background: var(--white); position: sticky; top: 0; z-index: 99; border-bottom: 1px solid rgba(32,32,32,0.08); }
    .header-top { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; max-width: 1400px; margin: 0 auto; height: 82px; gap: 16px; }
    .site-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 24px; }
    .site-logo img { height: 48px; width: auto; }
    .site-logo .logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--black); }
    .main-nav { display: flex; align-items: center; gap: 0; flex: 1; }
    .main-nav > li { position: relative; }
    .main-nav > li > a { display: flex; align-items: center; gap: 4px; padding: 10px 16px; font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--black); transition: var(--transition); white-space: nowrap; }
    .main-nav > li > a:hover { color: var(--green-primary); }
    .nav-chevron { font-size: 9px; transition: transform 0.2s; opacity: 0.6; }
    .main-nav > li:hover .nav-chevron { transform: rotate(180deg); }
    .dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-card); box-shadow: var(--shadow-hover); padding: 16px; min-width: 220px; z-index: 200; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); }
    .main-nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-mega { min-width: 600px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .dropdown-col h4 { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-border); }
    .dropdown-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--text-body); font-weight: 500; transition: color 0.2s; }
    .dropdown-col a:hover { color: var(--green-primary); }
    .header-icons { display: flex; align-items: center; gap: 4px; }
    .header-icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; transition: var(--transition); color: var(--black); position: relative; }
    .header-icon-btn:hover { background: var(--gray-bg); }
    .cart-count { position: absolute; top: 4px; right: 4px; background: var(--green-primary); color: var(--white); border-radius: 50%; width: 16px; height: 16px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .nav-cta { background: var(--navy) !important; color: var(--white) !important; border-radius: var(--radius-pill) !important; padding: 12px 22px !important; font-weight: 600 !important; font-size: 15px !important; margin-left: 8px; white-space: nowrap; transition: background 0.2s !important; }
    .nav-cta:hover { background: var(--navy-dark) !important; }
    .hamburger-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
    .hamburger-btn span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
    .mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; opacity: 0; visibility: hidden; transition: var(--transition); }
    .mobile-overlay.open { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: var(--white); z-index: 301; transition: left 0.3s ease; overflow-y: auto; display: flex; flex-direction: column; }
    .mobile-drawer.open { left: 0; }
    .mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--gray-border); }
    .mobile-drawer-close { font-size: 24px; color: var(--black); cursor: pointer; background: none; border: none; }
    .mobile-nav { padding: 16px; flex: 1; }
    .mobile-nav a { display: block; padding: 12px 8px; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--black); border-bottom: 1px solid var(--gray-border); transition: color 0.2s; }
    .mobile-nav a:hover { color: var(--green-primary); }
    .mobile-nav-item { border-bottom: 1px solid var(--gray-border); }
    .mobile-nav-toggle { display: flex; align-items: center; justify-content: space-between; padding: 12px 8px; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--black); cursor: pointer; background: none; border: none; width: 100%; text-align: left; transition: color 0.2s; }
    .mobile-nav-toggle:hover { color: var(--green-primary); }
    .mobile-nav-chevron { font-size: 11px; transition: transform 0.25s ease; opacity: 0.5; }
    .mobile-nav-item.open .mobile-nav-chevron { transform: rotate(180deg); }
    .mobile-nav-sub { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--gray-bg); border-radius: 8px; margin: 0 8px; }
    .mobile-nav-item.open .mobile-nav-sub { max-height: 400px; padding: 8px 0; margin-bottom: 8px; }
    .mobile-nav-sub a { padding: 9px 16px; font-size: 14px; font-weight: 500; color: var(--text-body); border-bottom: none; }
    .mobile-nav-sub a:hover { color: var(--green-primary); }
    .mobile-drawer-footer { padding: 20px; }
    .mobile-social { display: flex; gap: 12px; margin-top: 16px; }
    .mobile-social a { font-size: 20px; color: var(--text-body); }
    .category-tabs-bar { background: var(--cream); border-bottom: 1px solid var(--cream-dark); overflow-x: auto; scrollbar-width: none; }
    .category-tabs-bar::-webkit-scrollbar { display: none; }
    .category-tabs-inner { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 1280px; margin: 0 auto; padding: 12px 40px 14px; }
    .category-tab { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 36px; font-family: var(--font-display); font-size: 12px; font-weight: 400; color: #333; white-space: nowrap; cursor: pointer; transition: var(--transition); }
    .category-tab-img { width: 72px; height: 72px; border-radius: 50%; background: var(--white); overflow: hidden; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(0,0,0,0.08); transition: border-color 0.2s; }
    .category-tab-img img { width: 100%; height: 100%; object-fit: cover; }
    .category-tab:hover .category-tab-img, .category-tab.active .category-tab-img { border-color: var(--black); border-width: 2px; }
    .category-tab:hover, .category-tab.active { color: var(--black); font-weight: 600; }
    .category-tab-eye { width: 72px; height: 72px; border-radius: 50%; background: var(--cream-dark); border: 1.5px solid rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; font-size: 26px; transition: border-color 0.2s; }
    .hero-section { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; background: #3a5a2e; }
    .hero-bg { position: absolute; inset: 0; overflow: hidden; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
    .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0) 70%); }
    .hero-content { position: relative; z-index: 2; width: 100%; padding: 40px 0 40px 120px; display: flex; align-items: center; }
    .hero-text { max-width: 500px; width: 42%; }
    .hero-title { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 10px; }
    .hero-subtitle { font-size: 14px; color: var(--white); margin-bottom: 20px; font-weight: 400; opacity: 0.88; }
    .hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
    .btn-hero { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--white); color: var(--navy); border-radius: var(--radius-pill); padding: 13px 36px; font-family: var(--font-display); font-weight: 700; font-size: 16px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.2); min-width: 220px; }
    .btn-hero:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }
    .hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 3; border: none; transition: var(--transition); }
    .hero-arrow:hover { background: var(--white); }
    .hero-arrow.left { left: 24px; }
    .hero-arrow.right { right: 24px; }
    .hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
    .trust-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 400; font-family: var(--font-display); color: var(--white); }
    .trust-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: white; font-weight: 700; }
    .press-bar { background: var(--navy); padding: 18px 40px; display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; border-bottom: 3px solid var(--green-primary); }
    .press-bar-logo { color: rgba(255,255,255,0.85); font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
    .press-bar-logo:hover { color: var(--white); }
    .offers-section { background: var(--cream); padding: 72px 0; overflow: hidden; }
    .offers-section .section-title { color: var(--black); }
    .offers-section .section-desc { color: var(--text-muted); margin-bottom: 0; }
    .offers-section .section-header { margin-bottom: 40px; }
    .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .offer-card { background: var(--white); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .offer-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
    .offer-card-top { display: flex; align-items: flex-start; gap: 14px; padding: 18px 18px 14px; }
    .offer-card-thumb { width: 88px; height: 88px; border-radius: 12px; flex-shrink: 0; overflow: hidden; background: #fdf5f0; }
    .offer-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .offer-card-meta { flex: 1; min-width: 0; }
    .offer-timer { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
    .timer-block { background: #fff0f0; color: #c0392b; font-family: var(--font-display); font-size: 13px; font-weight: 700; padding: 4px 7px; border-radius: 6px; min-width: 30px; text-align: center; }
    .timer-sep { color: #c0392b; font-weight: 700; font-size: 13px; }
    .offer-card-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .offer-card-discount { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #c0392b; }
    .offer-card-discount span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
    .offer-card-divider { height: 1px; background: var(--gray-border); margin: 0 18px; }
    .offer-card-coupon { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
    .coupon-header { display: flex; align-items: center; justify-content: space-between; }
    .coupon-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--text-muted); }
    .coupon-status { font-family: var(--font-display); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
    .coupon-status.active { background: #e6f9ee; color: #1e7e40; }
    .coupon-status.inactive { background: #fff0f0; color: #c0392b; }
    .coupon-code-box { display: flex; align-items: center; justify-content: space-between; border: 2px dashed var(--gray-border); border-radius: 10px; padding: 10px 14px; cursor: pointer; transition: border-color 0.2s; position: relative; overflow: hidden; }
    .coupon-code-box::before { content: ''; position: absolute; left: -1px; top: 0; bottom: 0; width: 3px; background: var(--green-primary); }
    .coupon-code-box:hover { border-color: var(--green-primary); }
    .coupon-code { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--black); letter-spacing: 2px; }
    .coupon-copy-btn { font-family: var(--font-display); font-size: 10px; font-weight: 700; color: var(--green-primary); text-transform: uppercase; background: none; border: none; cursor: pointer; padding: 0; }
    .coupon-copy-btn:hover { color: var(--green-dark); }
    .coupon-note { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
    .coupon-note strong { color: var(--navy); }
    .section-pad { padding: 72px 0; }
    .section-header { text-align: center; }
    .section-header .section-desc { margin: 0 auto 40px; }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .product-card { background: var(--white); border-radius: 18px; border: 1px solid var(--gray-border); overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease; position: relative; display: flex; flex-direction: column; }
    .product-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.13); transform: translateY(-5px); }
    .product-card-img { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #fdf5f0; }
    .product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.38s ease; }
    .product-card:hover .product-card-img img { transform: scale(1.06); }
    .product-card-flavor { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 5px; z-index: 2; }
    .flavor-tag { background: rgba(255,255,255,0.92); color: var(--black); font-size: 10px; font-weight: 700; font-family: var(--font-display); padding: 3px 9px; border-radius: 20px; }
    .product-card-badge { position: absolute; top: 11px; left: 11px; z-index: 2; background: var(--green-primary); color: var(--white); font-size: 10px; font-weight: 700; font-family: var(--font-display); padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
    .product-card-discount { position: absolute; top: 11px; right: 11px; z-index: 2; background: #E8720C; color: var(--white); font-size: 10px; font-weight: 700; font-family: var(--font-display); padding: 3px 10px; border-radius: 20px; }
    .product-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
    .product-card-category { display: inline-block; margin-bottom: 7px; font-size: 10px; font-weight: 700; font-family: var(--font-display); color: var(--green-primary); background: var(--green-light); border-radius: 20px; padding: 3px 10px; }
    .product-card-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 8px; }
    .product-card-benefits { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
    .benefit-chip { font-size: 10px; font-weight: 600; font-family: var(--font-body); color: var(--green-dark); background: var(--green-light); border-radius: 20px; padding: 2px 8px; }
    .product-card-reviews { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
    .stars-row { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
    .review-count { font-size: 11px; color: var(--text-muted); }
    .product-card-price-section { margin-top: auto; border-top: 1px solid var(--gray-border); padding-top: 12px; position: relative; }
    .product-card-price-section::before { content: ''; position: absolute; top: -1px; left: 16px; right: 16px; height: 2px; background: linear-gradient(90deg, transparent 0%, #c8960c 20%, #f5c842 40%, #e8a800 55%, #f5c842 70%, #c8960c 80%, transparent 100%); border-radius: 2px; }
    .product-card-bottom { display: flex; align-items: center; justify-content: space-between; }
    .product-card-prices { display: flex; flex-direction: column; gap: 1px; }
    .product-card-mrp { font-family: var(--font-display); font-size: 11px; font-weight: 500; color: var(--text-muted); text-decoration: line-through; }
    .product-card-price { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--black); }
    .cart-circle-btn { width: 40px; height: 40px; border-radius: 50%; background: #1e2740; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 300; border: none; cursor: pointer; flex-shrink: 0; transition: background 0.2s, transform 0.2s; line-height: 1; }
    .cart-circle-btn:hover { background: var(--green-primary); transform: scale(1.1); }
    .press-section { background: var(--gray-bg); padding: 60px 0; }
    .press-carousel { position: relative; overflow: hidden; }
    .press-slides { display: flex; transition: transform 0.4s ease; }
    .press-slide { min-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 0 120px; text-align: center; }
    .press-quote { font-size: 22px; font-style: italic; color: var(--black); font-family: var(--font-display); font-weight: 500; line-height: 1.5; max-width: 700px; }
    .press-quote::before { content: '"'; font-size: 48px; color: var(--green-primary); line-height: 0.5; display: block; margin-bottom: 12px; }
    .press-logo-placeholder { height: 36px; display: flex; align-items: center; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-muted); }
    .carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; align-items: center; }
    .carousel-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gray-border); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: var(--transition); }
    .carousel-btn:hover { border-color: var(--green-primary); color: var(--green-primary); }
    .carousel-dots { display: flex; gap: 8px; }
    .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-border); cursor: pointer; transition: var(--transition); }
    .carousel-dot.active { background: var(--green-primary); width: 24px; border-radius: 4px; }
    .category-section { background: var(--white); padding: 72px 0; }
    .category-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
    .category-card { position: relative; overflow: hidden; border-radius: var(--radius-card); aspect-ratio: 4/3; cursor: pointer; }
    .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .category-card:hover img { transform: scale(1.06); }
    .category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 28px; }
    .category-card-label { color: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
    .sub-category-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
    .sub-category-scroll::-webkit-scrollbar { display: none; }
    .sub-cat-card { display: flex; flex-direction: column; gap: 8px; min-width: 180px; cursor: pointer; }
    .sub-cat-img { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 3/2; background: var(--gray-bg); }
    .sub-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .sub-cat-card:hover .sub-cat-img img { transform: scale(1.05); }
    .sub-cat-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--black); text-align: center; }
    .brand-story { background: var(--green-pale); padding: 80px 0; }
    .brand-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .brand-story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .brand-story-images img { border-radius: var(--radius-card); width: 100%; height: 200px; object-fit: cover; }
    .brand-story-images img:first-child { grid-column: 1 / -1; height: 240px; }
    .brand-story-text .section-title { text-align: left; }
    .brand-story-text .section-desc { max-width: none; margin-bottom: 28px; }
    .benefits-section { background: var(--cream); padding: 80px 0; }
    .benefits-section .section-header { margin-bottom: 48px; }
    .benefits-section .section-title { color: var(--green-dark); font-size: 34px; }
    .benefits-section .section-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 0; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .benefit-card { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; aspect-ratio: 1/1; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
    .benefit-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
    .benefit-card.featured { aspect-ratio: 1/1; }
    .benefit-card-img { position: absolute; inset: 0; }
    .benefit-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .benefit-card:hover .benefit-card-img img { transform: scale(1.07); }
    .benefit-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.82) 100%); transition: opacity 0.3s ease; }
    .benefit-card:hover::after { opacity: 0.9; }
    .benefit-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px; z-index: 2; text-align: left; }
    .benefit-badge { position: absolute; top: 18px; left: 18px; z-index: 2; background: rgba(0,0,0,0.52); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.15); color: var(--white); font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 13px; border-radius: 20px; }
    .benefit-card-subtitle { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; display: block; }
    .benefit-card-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
    .benefit-card-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); background: var(--green-primary); text-transform: uppercase; letter-spacing: 1px; text-decoration: none; padding: 11px 24px; border-radius: 50px; transition: background 0.2s, gap 0.2s; border: 1px solid rgba(255,255,255,0.2); }
    .benefit-card-cta:hover { background: var(--green-dark); gap: 12px; }
    .benefit-card-cta .cta-arrow { font-size: 14px; transition: transform 0.2s; }
    .benefit-card-cta:hover .cta-arrow { transform: translateX(3px); }
    .dr-section { background: var(--white); padding: 80px 0; }
    .dr-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .dr-image img { border-radius: var(--radius-card); width: 100%; object-fit: cover; box-shadow: var(--shadow-hover); }
    .dr-text .eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--green-primary); margin-bottom: 12px; }
    .dr-text .section-title { text-align: left; }
    .dr-text .section-desc { max-width: none; }
    .dr-reviews-badge { display: flex; align-items: center; gap: 10px; margin: 20px 0 28px; padding: 14px 20px; background: var(--gray-bg); border-radius: 10px; }
    .dr-reviews-badge .yotpo-logo { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--black); }
    .dr-reviews-badge a { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--green-primary); text-decoration: underline; }
    .reviews-section { background: var(--gray-bg); padding: 72px 0; }
    .reviews-grid { columns: 4; column-gap: 16px; }
    .review-card { break-inside: avoid; margin-bottom: 16px; border-radius: 16px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
    .review-card-photo { position: relative; overflow: hidden; }
    .review-card-photo img { width: 100%; display: block; transition: transform 0.4s ease; }
    .review-card:hover .review-card-photo img { transform: scale(1.04); }
    .review-card-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); padding: 16px 14px 14px; }
    .review-card-photo-name { color: var(--white); font-family: var(--font-display); font-size: 12px; font-weight: 700; }
    .review-card-photo-product { color: rgba(255,255,255,0.75); font-size: 10px; margin-top: 2px; }
    .review-card-text { padding: 18px; }
    .review-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .review-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); }
    .review-avatar.c1 { background: #3A7D44; }
    .review-avatar.c2 { background: #293452; }
    .review-avatar.c3 { background: #E8720C; }
    .review-avatar.c4 { background: #9b59b6; }
    .review-avatar.c5 { background: #e74c3c; }
    .review-avatar.c6 { background: #16a085; }
    .review-meta { flex: 1; min-width: 0; }
    .review-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .review-verified { font-size: 10px; color: var(--green-primary); font-weight: 600; }
    .review-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 8px; }
    .review-body { font-size: 13px; color: var(--text-body); line-height: 1.55; }
    .review-product-tag { display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 600; color: var(--green-primary); background: var(--green-light); border-radius: 20px; padding: 2px 8px; }
    .review-date { font-size: 10px; color: var(--text-muted); margin-top: 8px; }
    .instagram-section { background: var(--white); padding: 48px 0; text-align: center; }
    .instagram-cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--black); transition: color 0.2s; }
    .instagram-cta:hover { color: var(--green-primary); }
    .ig-icon { font-size: 24px; }
    .impact-section { background: var(--green-primary); color: var(--white); padding: 72px 0; text-align: center; }
    .impact-inner { display: grid; grid-template-columns: 1fr 1px 1fr; grid-template-rows: auto auto; gap: 0; align-items: center; max-width: 900px; margin: 0 auto; }
    .impact-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 32px 40px; }
    .impact-item .impact-num { font-family: var(--font-display); font-size: 52px; font-weight: 800; line-height: 1; }
    .impact-item .impact-label { font-size: 15px; font-weight: 400; opacity: 0.92; max-width: 220px; line-height: 1.5; }
    .impact-divider-v { width: 1px; background: rgba(255,255,255,0.35); align-self: stretch; margin: 20px 0; }
    .impact-item-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px; padding-bottom: 0; }
    .team-picks { background: var(--white); padding: 72px 0; }
    .team-picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 64px 0 0; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-logo { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
    .footer-tagline { font-size: 14px; color: var(--footer-text); margin-bottom: 24px; line-height: 1.6; }
    .footer-newsletter-form { display: flex; gap: 0; max-width: 300px; margin-top: 12px; }
    .footer-newsletter-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: var(--white); font-size: 14px; border-radius: var(--radius-pill) 0 0 var(--radius-pill); outline: none; }
    .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
    .footer-newsletter-form button { padding: 10px 18px; background: var(--green-primary); color: var(--white); border: none; border-radius: 0 var(--radius-pill) var(--radius-pill) 0; font-weight: 700; font-size: 13px; cursor: pointer; transition: var(--transition); }
    .footer-newsletter-form button:hover { background: var(--green-dark); }
    .footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: var(--footer-text); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-social { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
    .footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--footer-text); transition: var(--transition); }
    .footer-social a:hover { background: var(--green-primary); color: var(--white); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); }
    .footer-payments { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
    .payment-badge { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); }
