/* ═══════════════════════════════════════════════
   HARMÓNIA GYÓGYNÖVÉNYBOLT — Unified Design System
   v2 Refresh: Deeper greens · Cream warmth · Terracotta
   Fonts: Playfair Display (serif) + Lato (body)
═══════════════════════════════════════════════ */

:root {
  --g-deep:    #03473d;
  --g-dark:    #04574c;
  --g:         #04574c;
  --g-mid:     #0a6b5d;
  --g-light:   #5A9E6F;
  --g-pale:    #e4f0ed;
  --teal:      #0a6b5d;
  --teal-mid:  #3d8a9a;
  --teal-pale: #d4e8ed;
  --cream:     #f3eddf;
  --cream-2:   #ede6d0;
  --cream-3:   #f8f4ec;
  --off-white: #F2F0EB;
  --white:     #FAFAF7;
  --prod-bg:   #ffffff;
  --gold:      #d4a853;
  --gold-l:    #ffd49c;
  --terra:     #C4622D;
  --terra-2:   #A84F24;
  --text:      #1a2420;
  --muted:     #6b7b76;
  --border:    rgba(4,87,76,0.12);
  --shadow:    0 2px 16px rgba(4,87,76,0.09);
  --shadow-lg: 0 10px 40px rgba(4,87,76,0.16);
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Lato', sans-serif;
  --r:   14px;
  --rl:  18px;
  --rp:  999px;
  --max: 1240px;
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.45, 0, 0.15, 1);
  --duration-fast: 0.3s;
  --duration-md:   0.6s;
  --duration-slow: 1.1s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream-3);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; }
input, textarea, select { font-family: var(--sans); }
img { display: block; max-width: 100%; }
.w { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(20deg); }
  50%       { transform: translateY(-8px) rotate(20deg); }
}
@keyframes petalSway {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33%       { transform: rotate(3deg) scale(1.01); }
  66%       { transform: rotate(-2deg) scale(.99); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0); }
  50%       { box-shadow: 0 0 0 8px rgba(212,168,83,0.12); }
}
@keyframes ripple {
  to { transform: scale(2.5); opacity: 0; }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.08); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.04); }
  70%       { transform: scale(1); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -20px) scale(1.04); }
  66%       { transform: translate(-18px, 14px) scale(0.97); }
}
@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-10px) scaleY(0.95); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* Hero entry — graceful, longer */
.fu  { animation: fadeUp var(--duration-slow) cubic-bezier(.16,1,.3,1) both; }
.fu1 { animation: fadeUp var(--duration-slow) 0.20s cubic-bezier(.16,1,.3,1) both; }
.fu2 { animation: fadeUp var(--duration-slow) 0.38s cubic-bezier(.16,1,.3,1) both; }
.fu3 { animation: fadeUp var(--duration-slow) 0.56s cubic-bezier(.16,1,.3,1) both; }
.fu4 { animation: fadeUp var(--duration-slow) 0.74s cubic-bezier(.16,1,.3,1) both; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.95s var(--ease-out-expo),
              transform 0.95s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out-expo),
              transform 0.75s var(--ease-out-expo);
}
.reveal-stagger.visible > *:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2)  { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3)  { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4)  { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(5)  { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(6)  { transition-delay: 0.60s; }
.reveal-stagger.visible > *:nth-child(7)  { transition-delay: 0.72s; }
.reveal-stagger.visible > *:nth-child(8)  { transition-delay: 0.84s; }
.reveal-stagger.visible > *:nth-child(9)  { transition-delay: 0.96s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 1.08s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.hdr {
  position: sticky; top: 0; z-index: 200;
  background: rgba(4,87,76,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,168,83,.18);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1),
              box-shadow 0.4s ease;
}
.hdr.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,.28); }
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo-circle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
  transition: border-color .4s, transform 0.5s var(--ease-spring);
  animation: pulseGlow 5s ease-in-out infinite;
}
.brand-logo-circle:hover { border-color: var(--gold-l); transform: scale(1.08) rotate(5deg); }
.brand-logo-circle svg { width: 22px; height: 22px; }
.brand-logo-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-name { font-family: var(--serif); font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: .03em; }
.brand-sub  { font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-l); }

/* Search grow wrapper — fills available space between nav and right section */
.hdr-search-grow {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

/* Search */
.search-wrap { position: relative; width: 100%; }
.search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px; padding: 9px 16px;
  transition: border-color .35s, background .35s, box-shadow .35s;
}
.search:focus-within {
  border-color: rgba(212,168,83,.45);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(212,168,83,.12);
}
.search-icon { color: rgba(255,255,255,.32); flex-shrink: 0; }
.search input {
  border: none; outline: none; background: transparent;
  width: 100%; font-size: 13.5px; color: var(--white); font-family: var(--sans);
}
.search input::placeholder { color: rgba(255,255,255,.28); }
.search-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  z-index: 500; display: none;
  overflow: hidden;
  max-height: 440px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.search-dropdown.open { display: block; animation: dropIn .32s var(--ease-out-expo) both; }
.search-hint { padding: 10px 15px; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; border-bottom: 1px solid var(--border); }
.search-result {
  display: flex; align-items: center; gap: 11px; padding: 10px 15px;
  cursor: pointer; transition: background .25s, transform .25s var(--ease-out-expo);
}
.search-result:hover { background: var(--g-pale); transform: translateX(4px); }
.search-result-img { width: 38px; height: 38px; border-radius: 8px; object-fit: contain; background: var(--prod-bg); flex-shrink: 0; }
.search-result-name  { font-size: 13px; font-weight: 700; color: var(--text); }
.search-result-brand { font-size: 11px; color: var(--muted); }
.search-result-price { font-size: 13px; font-weight: 700; color: var(--g-dark); margin-left: auto; white-space: nowrap; }

/* Header right */
.hdr-right { display: flex; align-items: center; gap: 8px; }

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown-wrap { position: relative; }
.lang-dropdown-btn {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); padding: 7px 12px;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 999px;
  background: rgba(255,255,255,.12);
  transition: color .3s, border-color .3s, background .3s;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.lang-dropdown-btn:hover { color: var(--gold-l); border-color: rgba(212,168,83,.5); background: rgba(212,168,83,.1); }
.lang-dropdown-btn .lang-arrow {
  font-size: 8px; opacity: .6;
  transition: transform .35s var(--ease-out-expo);
  display: inline-block;
}
.lang-dropdown-wrap.open .lang-arrow { transform: rotate(180deg); }

/* FIX: smooth visibility-based transition instead of display:none toggle */
.lang-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  z-index: 600; overflow: hidden; min-width: 120px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.22s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0s linear 0.22s;
}
.lang-dropdown-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  transition:
    opacity 0.22s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.22s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0s linear 0s;
}

.lang-option {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px; cursor: pointer;
  font-size: 13px; font-weight: 700; color: var(--text);
  transition: background .2s, padding-left .25s var(--ease-out-expo);
  border-bottom: 1px solid var(--border);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--g-pale); padding-left: 20px; }
.lang-option.active { color: var(--g-dark); }
.lang-option .lang-flag { font-size: 16px; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(243,237,223,.65); position: relative; cursor: pointer;
  transition: background .3s, transform 0.4s var(--ease-spring);
}
.icon-btn:hover { background: rgba(255,255,255,.14); color: var(--white); transform: scale(1.1); }
.cart-dot {
  position: absolute; top: -2px; right: -2px;
  background: var(--terra); color: #fff;
  font-size: 7.5px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--g-dark);
  animation: heartbeat 2.6s ease-in-out infinite;
}
.cart-dot.hidden { display: none; }

/* Nav */
.nav { border-top: 1px solid rgba(255,255,255,.06); }
.nav-inner { display: flex; gap: 2px; padding: 5px 0; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item { position: relative; }
.nav-a {
  white-space: nowrap; padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  color: rgba(243,237,223,.52); letter-spacing: .01em;
  transition: background .3s, color .3s; cursor: pointer; display: block;
  position: relative; overflow: hidden;
}
.nav-a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: left .35s var(--ease-out-expo), right .35s var(--ease-out-expo);
  border-radius: 2px;
}
.nav-a:hover::after { left: 13px; right: 13px; }
.nav-a:hover, .nav-a.active { background: rgba(255,255,255,.09); color: var(--white); }
.nav-a.nav-sale { color: var(--gold-l); }
.nav-a.nav-sale:hover { background: rgba(212,168,83,.12); }

/* FIX: Mega dropdown — visibility-based smooth transition instead of display:none */
.mega-drop {
  position: fixed; left: 0; right: 0;
  background: var(--white); border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(4,71,61,.18);
  z-index: 190;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0s linear 0.28s;
}
.mega-drop.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition:
    opacity 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0s linear 0s;
}

.mega-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: var(--max); margin: 0 auto; padding: 26px 20px; }
.mega-inner-3col { grid-template-columns: repeat(3,1fr); max-width: 860px; }
.mega-col { padding: 0 18px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }
.mega-col-title { font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g-mid); margin-bottom: 12px; }
.mega-link {
  display: flex; align-items: center; gap: 7px; padding: 7px 0;
  font-size: 13.5px; color: var(--text); font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: color .25s, padding-left .28s var(--ease-out-expo); cursor: pointer;
}
.mega-link:last-child { border-bottom: none; }
.mega-link:hover { color: var(--g-mid); padding-left: 7px; }
.mega-featured { background: var(--g-pale); border-radius: 11px; padding: 16px; margin-top: 14px; transition: transform .3s var(--ease-spring); }
.mega-featured:hover { transform: translateY(-3px); }
.mega-feat-label { font-size: 9.5px; font-weight: 700; color: var(--terra); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.mega-feat-title { font-family: var(--serif); font-size: 14px; color: var(--g-dark); line-height: 1.3; margin-bottom: 8px; }
.mega-feat-link { font-size: 12px; color: var(--terra); font-weight: 700; cursor: pointer; }

/* Phone in header — highlighted */
.hdr-phone {
  font-size: 12px; font-weight: 700;
  color: var(--gold-l);
  padding: 7px 13px;
  background: rgba(212,168,83,.12);
  border: 1.5px solid rgba(212,168,83,.45);
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: all .3s;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.hdr-phone:hover { background: rgba(212,168,83,.22); color: var(--gold); border-color: rgba(212,168,83,.7); transform: translateY(-1px); }

/* ════════════════════════════════════════════════
   SECTION UTILITIES
════════════════════════════════════════════════ */
.sec { padding: 56px 0; }
.sec-label { display: flex; align-items: center; gap: 11px; margin-bottom: 7px; }
.sec-label::before, .sec-label::after { content: ''; height: 1px; width: 24px; background: var(--gold); flex-shrink: 0; }
.sec-label span { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--g-mid); }
.sec-title     { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--g-dark); font-weight: 800; }
.sec-title-inv { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--cream); font-weight: 800; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--terra); color: #fff;
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 999px;
  transition: background .3s, transform .4s var(--ease-spring), box-shadow .3s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform .65s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: var(--terra-2); transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 24px rgba(196,98,45,.32); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: rgba(243,237,223,.75);
  border: 1.5px solid rgba(243,237,223,.24);
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 999px; cursor: pointer;
  transition: border-color .3s, color .3s, transform .4s var(--ease-spring);
}
.btn-outline-light:hover { border-color: rgba(243,237,223,.55); color: var(--white); transform: translateY(-2px); }

.btn-green {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--g); color: #fff;
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 999px;
  transition: background .3s, transform .35s var(--ease-spring);
}
.btn-green:hover { background: var(--g-deep); transform: translateY(-1px); }

.see-all {
  font-size: 12px; font-weight: 700; color: var(--terra);
  padding: 7px 16px; border: 1.5px solid rgba(196,98,45,.25);
  border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-spring);
  cursor: pointer; white-space: nowrap;
}
.see-all:hover { background: var(--terra); color: #fff; border-color: var(--terra); transform: translateY(-1px); }

/* Badges */
.prod-badge {
  position: absolute; top: 10px; left: 10px;
  color: #fff; font-size: 9px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  z-index: 2;
}
.bdg-best { background: var(--terra); }
.bdg-new  { background: var(--g); }
.bdg-sale { background: #c0392b; }

/* ════════════════════════════════════════════════
   BAND — teal accent strip
════════════════════════════════════════════════ */
.band {
  background: var(--teal);
  padding: 1rem 5vw;
  display: flex; align-items: center;
  justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.04) 50%, rgba(255,255,255,0) 100%);
  animation: shimmerGold 5s ease infinite;
  background-size: 200% auto;
}
.band-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(243,237,223,.75);
  transition: color .3s, transform .3s;
}
.band-item:hover { color: var(--gold-l); transform: translateY(-1px); }
.band-dot { color: rgba(212,168,83,.65); }

/* ════════════════════════════════════════════════
   HERO — carousel version
════════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  background: var(--g-dark);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 8% 50%, rgba(10,107,93,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 92% 85%, rgba(212,168,83,.10) 0%, transparent 60%);
}

/* Carousel */
.hero-carousel { position: relative; width: 100%; height: 100%; min-height: inherit; }
.hero-slides-track {
  display: flex; transition: transform 0.85s var(--ease-smooth);
  min-height: inherit;
}
.hero-slide {
  min-width: 100%;
  display: flex; align-items: center;
  padding: 100px 5vw 80px;
  position: relative;
}
.hero-slide-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  width: 100%; max-width: var(--max); margin: 0 auto;
}

/* Slide decorative orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
  transition: opacity 0.8s ease;
}
.hero-orb-1 { width: 420px; height: 420px; background: rgba(10,107,93,.12); top: -100px; left: -100px; animation: orbFloat 16s ease-in-out infinite; }
.hero-orb-2 { width: 280px; height: 280px; background: rgba(212,168,83,.07); bottom: -40px; right: 22%; animation: orbFloat 20s ease-in-out infinite reverse; }

/* Leaf / flower decos */
.leaf-deco { position: absolute; pointer-events: none; z-index: 0; }
.hero-leaf-tl { top: -10px; left: -50px; width: 240px; opacity: .07; transform: rotate(-25deg) scaleX(-1); animation: floatLeaf 13s ease-in-out infinite; }
.hero-leaf-br { bottom: 20px; right: 44%; width: 170px; opacity: .05; transform: rotate(148deg); animation: floatLeaf 16s ease-in-out infinite reverse; }
.hero-flower { position: absolute; pointer-events: none; z-index: 0; animation: petalSway 12s ease-in-out infinite; }
.hero-flower-tr  { top: 60px;  right: 3vw;  width: 80px;  opacity: .09; }
.hero-flower-bl  { bottom: 60px; left: 3vw; width: 64px;  opacity: .07; animation-delay: -5s; }
.hero-flower-mid { top: 38%; right: 47%; width: 48px; opacity: .05; animation-delay: -8s; }
.hero-ring { position: absolute; border: 1px solid rgba(212,168,83,.05); border-radius: 50%; pointer-events: none; top: 50%; left: 27%; transform: translate(-50%,-50%); }
.hero-ring-1 { width: 460px; height: 460px; animation: petalSway 20s ease-in-out infinite; }
.hero-ring-2 { width: 700px; height: 700px; border-color: rgba(212,168,83,.025); animation: petalSway 26s ease-in-out infinite reverse; }

/* Carousel dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(243,237,223,.35); cursor: pointer;
  transition: width .45s var(--ease-out-expo), background .35s ease, border-radius .35s;
}
.hero-dot.active { width: 22px; border-radius: 4px; background: var(--cream); }

/* Carousel arrows — FIX: visible by default, show on hover on desktop */
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform 0.4s var(--ease-spring), opacity .3s;
  opacity: 0;
}
.hero:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.1); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* Slide content */
.hero-badge { width: 100px; height: 100px; margin-bottom: 1.4rem; position: relative; flex-shrink: 0; }
.hero-badge-ring-outer { width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 50%; position: absolute; inset: 0; animation: pulseGlow 5s ease-in-out infinite; }
.hero-badge-ring-inner { width: calc(100% - 13px); height: calc(100% - 13px); border: 1px solid rgba(212,168,83,.35); border-radius: 50%; position: absolute; top: 6.5px; left: 6.5px; }
.hero-badge-img-wrap { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-badge-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-eyebrow { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-l); margin-bottom: .7rem; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.8rem); color: var(--white); margin-bottom: .2rem; font-weight: 800; }
.hero h1 em { font-style: italic; color: var(--gold-l); font-weight: 700; }
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: .9rem; color: rgba(243,237,223,.42); letter-spacing: .07em; margin-bottom: 1.3rem; }
.hero-cta  { display: flex; gap: 11px; justify-content: flex-start; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 18px; justify-content: flex-start; flex-wrap: wrap; margin-top: 1.4rem; font-size: 11px; font-weight: 600; color: rgba(243,237,223,.4); letter-spacing: .06em; }
.hero-meta span { transition: color .3s; }
.hero-meta span:hover { color: rgba(243,237,223,.72); }
.hero-meta span::before { content: '✓ '; color: rgba(90,158,111,.75); }

.hero-right { position: relative; }
.hero-img-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 12px; }
.hig-tall { grid-row: span 2; height: 400px; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.42); }
.hig-sq   { height: 191px; border-radius: 13px; overflow: hidden; box-shadow: 0 10px 32px rgba(0,0,0,.35); }
.hig-img  { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease-out-expo); }
.hig-tall:hover .hig-img, .hig-sq:hover .hig-img { transform: scale(1.05); }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; color: rgba(243,237,223,.22); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 34px; background: rgba(243,237,223,.18); animation: scrollLine 2.4s ease infinite; }

/* ════════════════════════════════════════════════
   TRUST CARDS
════════════════════════════════════════════════ */
.trust-sec { background: var(--g-dark); padding: 20px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s, transform .4s var(--ease-spring);
}
.trust-card:last-child { border-right: none; }
.trust-card:hover { background: rgba(255,255,255,.04); transform: translateY(-2px); }
.trust-stat { font-family: var(--serif); font-size: 2.2rem; font-weight: 800; color: var(--gold-l); line-height: 1; margin-bottom: 4px; }
.trust-stat-label { font-size: 12px; font-weight: 700; color: rgba(243,237,223,.85); margin-bottom: 3px; }
.trust-card p { font-size: 11px; color: rgba(243,237,223,.42); line-height: 1.5; }

/* ════════════════════════════════════════════════
   HEALTH GOALS
════════════════════════════════════════════════ */
.goals-sec { padding: 44px 0 28px; }
.goals-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
}
.goals-scroll {
  display: flex; flex-wrap: nowrap; justify-content: center;
  gap: 10px; padding: 0 10px;
  scrollbar-width: none;
}
.goals-scroll::-webkit-scrollbar { display: none; }
.goal-tile {
  flex: 1; min-width: 0;
  aspect-ratio: 4/3;
  height: auto;
  border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer;
  transition: transform .4s var(--ease-spring), box-shadow .35s;
}
.goal-tile:hover { transform: translateY(-7px) scale(1.02); box-shadow: 0 16px 40px rgba(4,55,44,.22); }
.goal-tile:active { transform: translateY(-2px) scale(0.98); }
.goal-tile-bg {
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease-out-expo);
}
.goal-tile:hover .goal-tile-bg { transform: scale(1.09); }
.gt-1 { background: linear-gradient(160deg,#c8dfd9,#9fc9bf); }
.gt-2 { background: linear-gradient(160deg,#d4e8c2,#a8cc8a); }
.gt-3 { background: linear-gradient(160deg,#e8d5c0,#d4b08a); }
.gt-4 { background: linear-gradient(160deg,#c8d8e8,#9ab8d4); }
.gt-5 { background: linear-gradient(160deg,#e0d4c8,#c4a898); }
.gt-6 { background: linear-gradient(160deg,#d8c8e0,#b898cc); }
.gt-7 { background: linear-gradient(160deg,#f0d4d4,#e8a0a0); }
.goal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(4,55,44,.72) 40%,transparent);
}
.goal-emoji { position: absolute; top: 10px; right: 10px; font-size: 22px; opacity: .85; display: none; }
.goal-icon {
  position: absolute; top: 10px; right: 10px;
  display: none; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.18); border-radius: 8px;
  color: #fff;
}
.goal-name {
  position: absolute; bottom: 9px; left: 11px; right: 11px;
  font-size: 12.5px; font-weight: 900; color: #fff; line-height: 1.2;
  font-family: var(--sans);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ════════════════════════════════════════════════
   BRANDS MARQUEE — FIX: JS-driven, no CSS animation
════════════════════════════════════════════════ */
.brands-sec {
  background: var(--cream-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.brands-kicker {
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; text-align: center; margin-bottom: 16px;
}
.brands-marquee-wrap {
  overflow: hidden; user-select: none; cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.brands-marquee-inner {
  display: flex; align-items: center; gap: 0;
  pointer-events: none;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}

.brand-logo-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 32px;
  margin: 0 10px;
  height: 80px;
  width: 190px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: box-shadow .3s, transform 0.4s var(--ease-spring);
  pointer-events: all;
}
.brand-logo-pill:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-logo-img {
  height: 48px; width: auto; max-width: 150px;
  object-fit: contain; display: block;
  opacity: 0.72; transition: opacity .3s;
}
.brand-logo-img--lg {
  height: 64px; max-width: 165px;
}
.brand-logo-pill:hover .brand-logo-img { opacity: 1; }

/* ════════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════════ */
.products-sec { background: var(--white); }
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.fpill {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); font-family: var(--sans);
  font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; cursor: pointer;
  transition: all .3s var(--ease-out-quart);
}
.fpill:hover  { border-color: var(--g); color: var(--g); transform: translateY(-1px); }
.fpill.active { background: var(--g); border-color: var(--g); color: #fff; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 13px; align-items: start; }

.prod-card {
  background: var(--cream-3);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease-spring), box-shadow .35s;
}
.prod-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(4,87,76,.15);
}
.prod-img {
  width: 100%; aspect-ratio: 1/1;
  overflow: hidden; position: relative;
  background: var(--prod-bg); cursor: pointer;
}
.prod-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.7s var(--ease-out-expo);
}
.prod-card:hover .prod-img img { transform: scale(1.07); }
.prod-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,87,76,.18) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.prod-card:hover .prod-img::after { opacity: 1; }

/* Load-more button */
.load-more-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 0.75rem 2.5rem;
  background: var(--g-deep);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.load-more-btn:hover { background: var(--g-dark); transform: translateY(-2px); }

.prod-img-placeholder { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; }
.cat-herbs    { background: linear-gradient(135deg,#ddeedd,#b5d4be); }
.cat-tea      { background: linear-gradient(135deg,#e8eedd,#c5d4a8); }
.cat-vitamins { background: linear-gradient(135deg,#dde8dd,#a8c4b0); }
.cat-cosmetics{ background: linear-gradient(135deg,#e8ede0,#c8d8b8); }
.cat-supp     { background: linear-gradient(135deg,#dde0e8,#b4c0cc); }

.prod-body { padding: 11px 13px 14px; }
.prod-brand { display: none; }
.prod-cat-label { font-size: 9.5px; color: var(--teal); text-transform: uppercase; letter-spacing: .13em; font-weight: 700; margin-bottom: 3px; }
.prod-name     { font-family: var(--serif); font-size: .86rem; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 5px; min-height: 2.2em; }
.prod-stars    { font-size: 13px; color: #f4b942; margin-bottom: 5px; }
.prod-stars span { color: var(--muted); font-size: 11px; }
.prod-day-price{ font-size: 10px; color: var(--terra); font-weight: 700; background: rgba(196,98,45,.08); padding: 3px 8px; border-radius: 5px; margin-bottom: 10px; display: inline-block; }
.prod-foot     { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; }
.prod-price    { font-family: var(--serif); font-size: 1.1rem; color: var(--g-dark); line-height: 1; font-weight: 800; }

.add-btn {
  background: var(--terra); color: #fff; border-radius: 9px;
  padding: 9px 14px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .04em; white-space: nowrap;
  transition: background .3s, transform .3s var(--ease-spring), box-shadow .3s;
  position: relative; overflow: hidden;
}
.add-btn:hover {
  background: var(--terra-2);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(196,98,45,.26);
}

/* Skeleton */
.sk-card { background: #fff; border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.sk-img  { width: 100%; aspect-ratio: 1/1; }
.sk-body { padding: 14px 16px; }
.sk-line { height: 10px; margin-bottom: 8px; border-radius: 3px; }
.sk-line.w60 { width: 60%; } .sk-line.w80 { width: 80%; } .sk-line.h16 { height: 14px; width: 75%; }
.skeleton { background: linear-gradient(90deg,var(--off-white) 25%,var(--cream) 50%,var(--off-white) 75%); background-size: 200% 100%; animation: shimmer 2s infinite; }

/* ════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════ */
.why-sec { background: var(--g-dark); padding: 56px 0; }
.why-sec .sec-label span { color: var(--gold-l); }
.why-sec .sec-label::before, .why-sec .sec-label::after { background: var(--gold); }
.why-sec .sec-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 26px; }
.why-card {
  background: rgba(243,237,223,.05);
  border: 1px solid rgba(243,237,223,.07);
  border-radius: var(--r);
  padding: 24px 18px;
  transition: all .4s var(--ease-spring);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  background: rgba(243,237,223,.09);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.why-icon  { margin-bottom: 11px; display: flex; align-items: center; width: 40px; height: 40px; }
.why-title { font-size: 14px; font-weight: 700; color: var(--cream); margin-bottom: 7px; }
.why-text  { font-size: 12.5px; color: rgba(243,237,223,.48); line-height: 1.7; }

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.social-sec { background: var(--cream-3); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.tcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--rl);
  padding: 22px; box-shadow: var(--shadow);
  transition: transform .4s var(--ease-spring), box-shadow .35s;
  position: relative;
}
.tcard::after {
  content: '"';
  position: absolute; top: 10px; right: 16px;
  font-family: var(--serif); font-size: 4rem; color: var(--g-pale);
  line-height: 1; pointer-events: none;
}
.tcard:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(4,87,76,.14); }
.tcard-stars { color: #f4b942; font-size: 14px; margin-bottom: 11px; letter-spacing: 2px; }
.tcard-text  { font-size: 13.5px; color: var(--text); line-height: 1.8; margin-bottom: 15px; font-style: italic; font-family: var(--serif); }
.tcard-author { display: flex; align-items: center; gap: 11px; }
.tcard-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--g-pale); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.tcard-name  { font-size: 13px; font-weight: 700; color: var(--g-dark); }
.tcard-loc   { font-size: 11px; color: var(--muted); }
.tcard-verified { font-size: 10px; color: var(--g-mid); font-weight: 700; margin-top: 1px; }

/* ════════════════════════════════════════════════
   BLOG
════════════════════════════════════════════════ */
.blog-sec { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 15px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--rl);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .4s var(--ease-spring), box-shadow .35s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { overflow: hidden; height: 175px; }
.blog-img  { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--g-pale); transition: transform 0.8s var(--ease-out-expo); }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 16px; }
.blog-tag  { display: inline-flex; padding: 3px 10px; border-radius: 999px; background: var(--teal-pale); color: var(--teal); font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-family: var(--serif); font-size: .98rem; font-weight: 700; line-height: 1.3; margin-bottom: 7px; color: var(--text); }
.blog-excerpt { color: var(--muted); font-size: 12px; line-height: 1.7; margin-bottom: 8px; }
.blog-meta { display: flex; gap: 10px; font-size: 10.5px; color: var(--muted); font-weight: 600; }
.read-more { display: inline-block; color: var(--terra); font-size: 12px; font-weight: 700; margin-top: 9px; border-bottom: 1.5px solid transparent; transition: all .3s; }
.read-more:hover { border-bottom-color: var(--terra); padding-left: 5px; }

/* ════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════ */
.nl-sec { background: linear-gradient(138deg,var(--cream-2) 0%,#dfd5be 100%); padding: 56px 0; }
.nl-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.nl-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--g-dark); line-height: 1.15; margin-bottom: 9px; font-weight: 800; }
.nl-sub   { font-size: .9rem; color: var(--muted); line-height: 1.8; }
.nl-form  { display: flex; border-radius: 999px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow); margin-top: 16px; background: #fff; transition: box-shadow .3s; }
.nl-form:focus-within { box-shadow: 0 0 0 3px rgba(212,168,83,.18), var(--shadow); }
.nl-input { flex: 1; padding: 12px 18px; font-size: 13.5px; font-family: var(--sans); border: none; outline: none; background: transparent; color: var(--text); }
.nl-input::placeholder { color: var(--muted); }
.nl-btn   { background: var(--terra); color: #fff; padding: 12px 20px; font-size: 12px; font-weight: 700; font-family: var(--sans); letter-spacing: .06em; white-space: nowrap; transition: background .25s, transform .25s; cursor: pointer; border: none; }
.nl-btn:hover { background: var(--terra-2); transform: scale(1.02); }
.nl-btn:disabled { background: var(--muted); cursor: not-allowed; }
.nl-disc    { font-size: 11px; color: var(--muted); margin-top: 8px; }
.nl-success { font-size: 13.5px; color: var(--g); font-weight: 700; margin-top: 11px; display: none; animation: scaleIn .6s var(--ease-out-expo) both; }
.nl-box { background: rgba(255,255,255,.58); border: 1px solid rgba(4,87,76,.1); border-radius: 18px; padding: 22px; }
.nl-box h4 { font-size: 14px; font-weight: 700; color: var(--g-dark); margin-bottom: 10px; }
.nl-box ul { padding-left: 16px; color: var(--muted); font-size: 13px; line-height: 2; }
.nl-box li::marker { color: var(--terra); }

/* ════════════════════════════════════════════════
   STORE
════════════════════════════════════════════════ */
.store-sec { background: var(--cream-3); }
.store-card-single {
  background: #fff; border: 1px solid var(--border); border-radius: var(--rl);
  overflow: hidden; box-shadow: var(--shadow); max-width: 600px; margin: 24px auto 0;
  transition: transform .4s var(--ease-spring), box-shadow .35s;
}
.store-card-single:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.store-map-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .8s var(--ease-out-expo); }
.store-card-single:hover .store-map-img { transform: scale(1.03); }
.store-img-wrap { overflow: hidden; height: 200px; }
.store-info    { padding: 20px 24px; }
.store-badge   { display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 9px; }
.sb-open       { background: #e8f5e9; color: #2e7d32; }
.store-name    { font-size: 16px; font-weight: 700; color: var(--g-dark); margin-bottom: 5px; }
.store-addr    { font-size: 13px; color: var(--muted); line-height: 1.6; }
.store-hours   { font-size: 12.5px; color: var(--muted); margin-top: 7px; font-weight: 600; }
.store-cta     { display: inline-flex; align-items: center; gap: 5px; margin-top: 13px; font-size: 12.5px; color: var(--terra); font-weight: 700; border-bottom: 1.5px solid transparent; transition: all .3s; }
.store-cta:hover { border-bottom-color: var(--terra); padding-left: 5px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--g-deep); padding: 44px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.ft-logo-svg-sm { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.ft-logo-svg-sm svg { width: 22px; height: 22px; }
.ft-logo-svg-sm img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ft-logo-text { font-family: var(--serif); font-size: .92rem; color: var(--cream); font-weight: 700; }
.ft-tag { font-size: 12px; color: rgba(243,237,223,.38); line-height: 1.75; }
.ft-col-title { font-size: 8.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,237,223,.5); margin-bottom: 12px; }
.ft-link { display: block; font-size: 12px; color: rgba(243,237,223,.34); margin-bottom: 7px; transition: color .25s, padding-left .28s var(--ease-out-expo); }
.ft-link:hover { color: var(--cream); padding-left: 4px; }
.ft-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 16px; font-size: 10.5px; color: rgba(243,237,223,.18); line-height: 1.7; }

/* ════════════════════════════════════════════════
   STRIPE CHECKOUT MODAL
════════════════════════════════════════════════ */
.stripe-overlay { position: fixed; inset: 0; background: rgba(4,87,76,.65); z-index: 400; opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.stripe-overlay.open { opacity: 1; pointer-events: all; }
.stripe-modal {
  position: fixed; top: 50%; left: 50%; z-index: 401;
  transform: translate(-50%, -48%) scale(0.97); opacity: 0; pointer-events: none;
  transition: opacity .42s var(--ease-out-quart), transform .42s var(--ease-out-quart);
  width: min(520px, 94vw); max-height: 90vh;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 24px 80px rgba(4,87,76,.28);
  overflow: hidden;
}
.stripe-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); display: block; }
.stripe-modal-head { background: var(--g-dark); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.stripe-modal-head h3 { font-family: var(--serif); color: var(--cream); font-size: 1.1rem; font-weight: 700; }
.stripe-modal-body { padding: 24px; max-height: 80vh; overflow-y: auto; }
.stripe-summary { background: var(--cream-3); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; }
.stripe-item { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); }
.stripe-item:last-of-type { border-bottom: none; }
.stripe-total { display: flex; justify-content: space-between; font-size: 16px; color: var(--g-dark); padding-top: 10px; margin-top: 6px; border-top: 2px solid var(--border); }
.stripe-email-wrap  { margin-bottom: 18px; }
.stripe-email-label { display: block; font-size: 13px; font-weight: 600; color: var(--g-dark); margin-bottom: 6px; letter-spacing: .01em; }
.stripe-email-req   { color: #dc2626; margin-left: 1px; }
.stripe-email-input {
  width: 100%; box-sizing: border-box; padding: 11px 14px;
  border: 1.5px solid #e0dbd0; border-radius: 10px;
  font-family: var(--sans); font-size: 14px; color: var(--g-dark);
  background: var(--cream-3); outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.stripe-email-input::placeholder { color: #b0a898; }
.stripe-email-input:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(4,87,76,.10); }
.stripe-email-hint  { margin-top: 5px; font-size: 11.5px; color: var(--muted); }
#payment-element { margin-bottom: 18px; }
.stripe-error { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #991b1b; margin-bottom: 14px; animation: scaleIn .4s var(--ease-out-expo) both; }
.stripe-pay-btn {
  width: 100%; background: var(--g); color: #fff;
  padding: 15px; font-family: var(--sans); font-size: 15px; font-weight: 700;
  letter-spacing: .06em; border-radius: 999px;
  transition: background .3s, transform .3s var(--ease-spring);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.stripe-pay-btn:hover:not(:disabled) { background: var(--g-deep); transform: translateY(-1px); }
.stripe-pay-btn:disabled { background: var(--muted); cursor: not-allowed; }
.stripe-spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.stripe-spinner.hidden { display: none; }
.stripe-secure-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 13px; }
.stripe-field-group { margin-bottom: 18px; }
.stripe-field-row { display: flex; gap: 10px; }
.stripe-field { flex: 1; margin-bottom: 12px; }
.stripe-field:last-child { margin-bottom: 0; }
.stripe-delivery-wrap { margin-bottom: 18px; }
.stripe-delivery-opts { display: flex; gap: 10px; }
.stripe-delivery-opt {
  flex: 1; display: flex; align-items: flex-start; gap: 10px;
  border: 2px solid var(--border); border-radius: 10px; padding: 12px 14px;
  cursor: pointer; transition: border-color .3s, background .3s;
  background: var(--cream-3);
}
.stripe-delivery-opt:has(input:checked) { border-color: var(--g); background: #eef4f2; }
.stripe-delivery-opt input[type="radio"] { margin-top: 3px; accent-color: var(--g); flex-shrink: 0; }
.stripe-delivery-opt-body { display: flex; flex-direction: column; gap: 2px; }
.stripe-delivery-title { font-size: 13.5px; font-weight: 700; color: var(--g-dark); }
.stripe-delivery-sub { font-size: 11.5px; color: var(--muted); }
.stripe-address-wrap { margin-bottom: 18px; }
.stripe-address-wrap.hidden { display: none; }

/* ════════════════════════════════════════════════
   CART DRAWER
════════════════════════════════════════════════ */
.cart-overlay { position: fixed; inset: 0; background: rgba(4,87,76,.6); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .36s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(400px,92vw); background: var(--white); z-index: 301; transform: translateX(100%); transition: transform .42s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.16); }
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--g-dark); }
.cart-head h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.close-btn { background: none; border: none; color: rgba(243,237,223,.45); font-size: 1.1rem; cursor: pointer; transition: color .25s, transform .35s var(--ease-spring); padding: 4px 8px; }
.close-btn:hover { color: var(--white); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 20px; }
.cart-empty { text-align: center; padding: 4rem 0; color: var(--muted); font-size: 13.5px; }
.cart-item { display: grid; grid-template-columns: 50px 1fr auto; gap: 11px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); transition: background .25s; }
.cart-item:hover { background: var(--cream-3); border-radius: 8px; padding: 12px 6px; }
.cart-thumb { width: 50px; height: 50px; background: var(--prod-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-info h4 { font-family: var(--serif); font-size: .88rem; font-weight: 700; margin-bottom: 1px; line-height: 1.3; }
.cart-brand        { font-size: 10px; color: var(--teal); letter-spacing: .04em; font-weight: 700; text-transform: uppercase; }
.cart-qty-row      { display: flex; align-items: center; gap: 5px; margin-top: 5px; }
.cart-qty-btn      { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); background: none; font-size: 1rem; line-height: 1; cursor: pointer; color: var(--g-dark); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, transform .25s var(--ease-spring); }
.cart-qty-btn:hover { background: var(--g-pale); border-color: var(--g); transform: scale(1.12); }
.cart-qty-num      { min-width: 20px; text-align: center; font-size: .9rem; font-weight: 600; }
.remove-btn        { background: none; border: none; font-size: 13px; color: var(--muted); cursor: pointer; padding: 2px 4px; transition: color .2s, transform .3s var(--ease-spring); margin-left: 2px; }
.remove-btn:hover  { color: #9C5B3A; transform: scale(1.2) rotate(90deg); }
.cart-item-right   { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cart-item-price   { font-family: var(--serif); font-size: .95rem; color: var(--g-dark); white-space: nowrap; font-weight: 700; }
.cart-unit-price   { font-size: 10px; color: var(--muted); white-space: nowrap; }
.cart-foot { padding: 14px 20px; border-top: 1px solid var(--border); }
.cart-ship-bar     { margin-bottom: 11px; }
.cart-ship-text    { font-size: 11.5px; color: var(--muted); margin-bottom: 5px; }
.cart-ship-text strong { color: var(--g-dark); }
.cart-ship-track   { height: 4px; background: var(--border); border-radius: 999px; overflow: hidden; }
.cart-ship-fill    { height: 100%; background: var(--gold); border-radius: 999px; transition: width .6s var(--ease-out-expo); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.cart-subtotal span  { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cart-subtotal strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.checkout-btn { width: 100%; background: var(--g); color: #fff; border: none; padding: 13px; font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; border-radius: 999px; transition: background .3s, transform .3s var(--ease-spring); }
.checkout-btn:hover { background: var(--g-deep); transform: scale(1.01); }
.checkout-btn:disabled { background: var(--muted); cursor: not-allowed; }
.cart-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 7px; }

/* ════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 1.8rem; left: 50%;
  transform: translateX(-50%) translateY(1.8rem);
  background: var(--g-dark); color: var(--white);
  padding: 11px 20px; font-size: 12.5px; z-index: 900;
  opacity: 0; transition: opacity .36s, transform .36s var(--ease-spring);
  pointer-events: none; border-left: 3px solid var(--gold);
  white-space: nowrap; border-radius: 4px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════════════════
   HOME PRODUCTS SIDEBAR LAYOUT
════════════════════════════════════════════════ */
.home-prod-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  align-items: start;
}
.home-prod-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 16px 13px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.home-cat-list { display: flex; flex-direction: column; gap: 2px; }
.home-cat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px; border-radius: 10px;
  cursor: pointer; transition: all .3s var(--ease-out-quart);
  color: var(--muted); font-size: 13px;
  background: transparent; border: none; width: 100%; text-align: left;
  font-family: var(--sans);
}
.home-cat-item:hover { background: var(--g-pale); color: var(--g-dark); transform: translateX(3px); }
.home-cat-item.active { background: var(--g); color: #fff; }
.hci-lbl { flex: 1; font-weight: 700; font-size: 12px; }
.hci-count { font-size: 10px; color: var(--muted); background: var(--g-pale); padding: 2px 7px; border-radius: 999px; font-weight: 700; }
.home-cat-item.active .hci-count { background: rgba(255,255,255,.18); color: rgba(255,255,255,.75); }
.home-goal-list { display: flex; flex-direction: column; margin-top: 2px; }
.home-goal-item {
  display: block; padding: 7px 10px; border-radius: 8px;
  font-size: 12px; color: var(--muted); cursor: pointer;
  transition: all .3s var(--ease-out-quart);
  background: transparent; border: none; width: 100%; text-align: left;
  font-family: var(--sans);
}
.home-goal-item:hover { background: var(--g-pale); color: var(--g-dark); padding-left: 14px; }
.home-sidebar-box {
  margin-top: 16px; background: var(--g-dark); border-radius: var(--r); padding: 14px; text-align: center;
}
.hsb-icon  { font-size: 22px; margin-bottom: 6px; }
.hsb-title { font-size: 13px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.hsb-text  { font-size: 11px; color: rgba(243,237,223,.52); line-height: 1.55; margin-bottom: 10px; }
.hsb-btn {
  display: inline-block; background: var(--gold); color: var(--g-dark);
  font-size: 11px; font-weight: 700; padding: 8px 13px; border-radius: 999px;
  transition: all .3s; text-decoration: none;
}
.hsb-btn:hover { background: var(--gold-l); transform: translateY(-1px); }
.home-prod-main .prod-grid { grid-template-columns: repeat(3,1fr); }
@media (min-width: 901px) { .home-prod-layout .filter-row { display: none; } }

/* Product filter head */
.filter-head { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

/* ════════════════════════════════════════════════
   PRODUCT PAGE MODAL
════════════════════════════════════════════════ */
.prod-page-overlay {
  position: fixed; inset: 0;
  background: rgba(4,87,76,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 800;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.prod-page-overlay.open { opacity: 1 !important; pointer-events: all; }
.prod-page-modal {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(4,87,76,.28);
  width: 100%; max-width: 800px;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  transition: transform .5s var(--ease-spring), opacity .4s ease;
  position: relative;
}
.prod-page-overlay.open .prod-page-modal { transform: translateY(0) scale(1) !important; opacity: 1 !important; }
.prod-page-modal-close {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: flex-end;
  padding: 14px 18px 0;
  background: linear-gradient(to bottom, var(--white) 70%, transparent);
}
.prod-page-modal-close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g-pale); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--g-dark); font-size: 14px;
  transition: background .25s, transform .35s var(--ease-spring);
}
.prod-page-modal-close-btn:hover { background: var(--border); transform: rotate(90deg) scale(1.1); }
.prod-page-inner { padding: 0 24px 28px; }
.prod-page-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; padding-top: 8px; }
.prod-page-img { border-radius: 16px; overflow: hidden; background: var(--prod-bg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.prod-page-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--ease-out-expo); }
.prod-page-img:hover img { transform: scale(1.04); }
.prod-page-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.prod-page-name { font-family: var(--serif); font-size: 1.55rem; color: var(--text); line-height: 1.15; margin-bottom: 8px; font-weight: 800; }
.prod-page-price { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--g); margin-bottom: 18px; }
.prod-page-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.prod-page-qty-sel { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.prod-page-qty-btn { width: 40px; height: 44px; background: var(--g-pale); font-size: 18px; font-weight: 900; color: var(--g); border: none; cursor: pointer; transition: background .2s, transform .25s; }
.prod-page-qty-btn:hover { background: var(--border); transform: scale(1.08); }
.prod-page-qty-val { width: 44px; height: 44px; display: grid; place-items: center; font-size: 16px; font-weight: 700; }
.prod-page-add-btn {
  flex: 1; background: var(--terra); color: #fff;
  border: none; border-radius: 12px; padding: 13px 18px;
  font-size: 14px; font-weight: 700; font-family: var(--sans);
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-spring);
  position: relative; overflow: hidden;
}
.prod-page-add-btn:hover { background: var(--terra-2); transform: scale(1.02); }
.prod-page-ship { font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.prod-page-trust { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.prod-page-trust-item { font-size: 11px; font-weight: 700; color: var(--teal); background: var(--teal-pale); padding: 4px 10px; border-radius: 999px; }
.prod-page-desc { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.prod-page-desc h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--g-dark); margin-bottom: 10px; font-weight: 700; }
.prod-page-desc-body { font-size: 14px; color: var(--muted); line-height: 1.85; }
.prod-page-desc-body p { margin-bottom: 10px; }
.prod-page-desc-body p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════
   MOBILE HAMBURGER + BOTTOM SHEET DRAWER
════════════════════════════════════════════════ */
.hamburger-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; background: rgba(255,255,255,.10);
  border-radius: 10px; border: none; cursor: pointer; flex-shrink: 0;
  transition: background .3s;
}
.hamburger-btn:hover { background: rgba(255,255,255,.18); }
.hamburger-btn span {
  display: block; width: 18px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all .4s var(--ease-out-expo);
}
.hamburger-btn span:nth-child(2) { width: 13px; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 600; opacity: 0; pointer-events: none; transition: opacity .36s; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; bottom: 0; left: 0; right: 0; max-height: 60vh;
  background: var(--cream-3); z-index: 601;
  transform: translateY(100%); transition: transform .45s var(--ease-out-expo);
  overflow-y: auto; padding: 0 0 env(safe-area-inset-bottom, 16px);
  box-shadow: 0 -8px 40px rgba(0,0,0,.22);
  border-radius: 24px 24px 0 0;
}
.drawer.open { transform: translateY(0); }
.drawer-handle { display: flex; justify-content: center; padding: 12px 0 8px; position: sticky; top: 0; background: var(--cream-3); z-index: 1; border-radius: 24px 24px 0 0; }
.drawer-handle-bar { width: 36px; height: 4px; background: rgba(0,0,0,.14); border-radius: 2px; }
.drawer-close { position: absolute; top: 12px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--g-pale); color: var(--g-dark); display: grid; place-items: center; font-size: 14px; border: none; cursor: pointer; font-weight: 700; transition: background .25s, transform .35s var(--ease-spring); }
.drawer-close:hover { background: var(--border); transform: rotate(90deg); }
.drawer-section { padding: 0 20px; margin-bottom: 4px; }
.drawer-section-title { font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 10px 0 6px; border-top: 1px solid var(--border); }
.drawer-section:first-of-type .drawer-section-title { border-top: none; }
.drawer-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 15px; font-weight: 700; color: var(--text); border-bottom: 1px solid rgba(4,87,76,.06); cursor: pointer; transition: color .25s, padding-left .28s var(--ease-out-expo); }
.drawer-link span { font-size: 18px; }
.drawer-link.sale { color: var(--terra); }
.drawer-link:hover { color: var(--g); padding-left: 4px; }

.drawer-link-primary { color: var(--g-dark); font-size: 16px; }
.drawer-lang-row { display: flex; gap: 8px; padding: 6px 0; }
.drawer-lang-btn { display: flex; flex: 1; justify-content: center; padding: 9px 0; font-size: 13px; font-weight: 700; color: var(--muted); background: var(--g-pale); border: 1.5px solid transparent; border-radius: 999px; cursor: pointer; gap: 6px; align-items: center; transition: color .25s, border-color .25s, background .25s; }
.drawer-lang-btn:hover { color: var(--g-dark); }
.drawer-lang-btn.active { color: var(--g-dark); border-color: var(--g); background: var(--white); }

/* ════════════════════════════════════════════════
   MOBILE SEARCH — INLINE
════════════════════════════════════════════════ */
.mob-search-btn {
  display: none; width: 38px; height: 38px;
  background: rgba(255,255,255,.10); border-radius: 50%;
  border: none; cursor: pointer;
  color: var(--cream); align-items: center; justify-content: center;
  transition: background .3s, transform .35s var(--ease-spring);
}
.mob-search-btn:hover { background: rgba(255,255,255,.18); transform: scale(1.08); }

.mob-search-bar-inline {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  background: rgba(4,87,76,.98);
  backdrop-filter: blur(24px);
  padding: 10px 16px; z-index: 250;
  border-bottom: 1px solid rgba(212,168,83,.22);
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  animation: fadeUp .25s var(--ease-out-expo) both;
}
.mob-search-bar-inline.open { display: block; }
.mob-search-bar-inner { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 10px 16px; }
.mob-search-bar-inner svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.mob-search-bar-inner input { flex: 1; border: none; outline: none; font-size: 15px; background: transparent; color: var(--white); font-family: var(--sans); }
.mob-search-bar-inner input::placeholder { color: rgba(255,255,255,.35); }
.mob-search-close { background: none; border: none; font-size: 16px; color: rgba(255,255,255,.5); cursor: pointer; padding: 0 2px; transition: color .2s; flex-shrink: 0; }
.mob-search-close:hover { color: var(--white); }
.mob-search-results { position: fixed; top: 64px; left: 0; right: 0; background: var(--white); box-shadow: 0 12px 40px rgba(4,87,76,.18); z-index: 249; max-height: 60vh; overflow-y: auto; display: none; }
.mob-search-results.has-results { display: block; animation: fadeUp .25s var(--ease-out-expo) both; }

/* ════════════════════════════════════════════════
   RESPONSIVE — DESKTOP
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .prod-grid   { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .trust-grid   { grid-template-columns: 1fr 1fr; }
  .prod-grid    { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .blog-grid    { grid-template-columns: 1fr; }
  .nl-inner     { grid-template-columns: 1fr; }
  .nl-box       { display: none; }
  .hdr-search-grow { display: none; }
  .hdr-phone    { display: none; }
  .mega-drop    { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
  .hero-slide-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-right   { display: none; }
  .hero-badge   { margin-left: auto; margin-right: auto; }
  .hero-cta     { justify-content: center; }
  .hero-meta    { justify-content: center; }
  .hero-leaf-tl, .hero-leaf-br { display: none; }
  .hero-flower-mid { display: none; }
  .home-prod-layout { grid-template-columns: 1fr; }
  .home-prod-sidebar { display: none; }
  .home-prod-main .prod-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .trust-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .prod-grid    { grid-template-columns: 1fr 1fr; }
  .hero-cta     { flex-direction: column; }
  .btn-primary, .btn-outline-light { width: 100%; justify-content: center; }
  .band         { display: none; }
}
@media (max-width: 768px) {
  .trust-card { border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .trust-card:nth-child(even) { border-right: none; }
  .trust-card:nth-last-child(-n+2) { border-bottom: none; }
}

/* ════════════════════════════════════════════════
   MOBILE ≤768px
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger-btn { display: flex; }
  .mob-search-btn { display: flex; }
  .nav { display: none; }
  .mega-drop { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

  .brand { justify-content: center; }
  .brand-sub { display: none; }

  .lang-dropdown-btn { padding: 6px 10px; font-size: 10px; }

  body { padding-bottom: 0; }

  /* FIX: Product modal — bottom sheet, constrained height */
  .prod-page-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .prod-page-modal {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    opacity: 1;
    overflow-y: auto;
  }
  .prod-page-overlay.open .prod-page-modal {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .prod-page-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .prod-page-img {
    max-height: 220px;
    aspect-ratio: auto;
  }
  .prod-page-name { font-size: 1.15rem; }
  .prod-page-price { font-size: 1.25rem; margin-bottom: 12px; }
  .prod-page-inner { padding: 0 16px 24px; }
  .prod-page-modal-close { padding: 10px 12px 0; }
  .prod-page-desc { margin-top: 14px; padding-top: 12px; }

  .prod-grid {
    display: flex !important;
    gap: 11px;
    overflow-x: auto;
    padding: 0 16px 12px;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .prod-grid::-webkit-scrollbar { display: none; }
  .prod-grid .prod-card { flex-shrink: 0; width: 170px; scroll-snap-align: start; }

  .goals-head { padding-left: 16px; padding-right: 16px; }
  .goals-scroll {
    flex-wrap: nowrap; overflow-x: auto;
    padding: 0 16px 16px; justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .goals-scroll::-webkit-scrollbar { display: none; }
  .goal-tile { flex-shrink: 0; width: 145px; height: 108px; scroll-snap-align: start; }
  .goal-emoji { display: block; }
  .goal-icon  { display: flex; }

  .blog-grid {
    display: flex; gap: 13px;
    overflow-x: auto; padding: 0 16px 12px;
    scrollbar-width: none; flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card { flex-shrink: 0; width: 240px; scroll-snap-align: start; }

  .sec { padding: 36px 0; }
  .hero { min-height: auto; }
  .hero-slide { padding: 80px 16px 60px; }
  .hero-slide-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-right { display: none; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-meta { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* FIX: Hero arrows — visible and sized for mobile */
  .hero-arrow {
    display: flex;
    width: 34px;
    height: 34px;
    opacity: 1;
  }
  .hero:hover .hero-arrow { opacity: 1; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
}

/* ════════════════════════════════════════════════
   MOBILE SCROLL INDICATOR
════════════════════════════════════════════════ */
.mobile-scroll-indicator { display: none; }
@media (max-width: 768px) {
  .mobile-scroll-indicator {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 16px 0;
    font-size: 10.5px; font-weight: 700; color: var(--muted);
    letter-spacing: .08em; text-transform: uppercase;
    opacity: 0; animation: fadeIn 1.4s 0.9s ease both;
  }
}

/* ════════════════════════════════════════════════
   RIPPLE
════════════════════════════════════════════════ */
.ripple-container { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0);
  animation: ripple .6s linear;
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   FILTER ROW — visible on mobile
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .home-prod-layout .filter-row { display: flex !important; }
}

/* ════════════════════════════════════════════════
   HDR CENTER — search + nav links in one row
════════════════════════════════════════════════ */
.hdr-center {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 0;
}

/* Nav links in header */
.hdr-nav-links { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hdr-nav-item  { position: relative; }

.hdr-nav-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 7px 17px; border-radius: 999px;
  min-width: 110px;
  font-size: 13.5px; font-weight: 900;
  color: var(--gold-l);
  background: rgba(212,168,83,.10);
  border: 1.5px solid rgba(212,168,83,.28);
  letter-spacing: .01em; cursor: pointer;
  font-family: var(--sans); text-decoration: none;
  transition: background .28s, border-color .28s, color .28s,
              transform .35s var(--ease-spring), box-shadow .28s;
  white-space: nowrap;
}
.hdr-nav-btn { background: rgba(212,168,83,.10); }
.hdr-nav-link:hover,
.hdr-nav-btn:hover {
  background: rgba(212,168,83,.22);
  border-color: rgba(212,168,83,.6);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,168,83,.18);
}
.hdr-nav-link-active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--g-dark) !important;
}
.nav-chevron { transition: transform .3s var(--ease-out-expo); flex-shrink: 0; }
.hdr-nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Drawer icon wrapper */
.drawer-link-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; }

/* Simple dropdown */
.nav-simple-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 270px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 16px 48px rgba(4,87,76,.18);
  z-index: 300; overflow: hidden;
  visibility: hidden; opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity .22s var(--ease-out-quart),
              transform .22s var(--ease-out-quart),
              visibility 0s linear .22s;
}
.hdr-nav-item.open .nav-simple-dropdown {
  visibility: visible; opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  transition: opacity .22s var(--ease-out-quart),
              transform .22s var(--ease-out-quart),
              visibility 0s linear 0s;
}
.nav-sd-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 18px; cursor: pointer;
  transition: background .2s, padding-left .25s var(--ease-out-expo);
  text-decoration: none; color: inherit;
}
.nav-sd-item:hover { background: var(--g-pale); padding-left: 22px; }
.nav-sd-icon { font-size: 22px; flex-shrink: 0; width: 30px; text-align: center; }
.nav-sd-label { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }
.nav-sd-desc  { font-size: 11px; color: var(--muted); margin-top: 2px; }
.nav-sd-divider { height: 1px; background: var(--border); margin: 4px 0; }
.nav-sd-all { border-top: none; }
.nav-sd-all .nav-sd-label { color: var(--terra); }
.nav-sd-all:hover { background: rgba(196,98,45,.06); }

/* ════════════════════════════════════════════════
   MOBILE HEADER — CENTERED LOGO, HAMBURGER LEFT, ACTIONS RIGHT
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .lang-desktop-only { display: none !important; }
  .hdr-nav-links     { display: none !important; }
  .hdr-search-grow   { display: none !important; }
  .hdr-phone         { display: none !important; }

  .hdr-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px 10px 8px;
    gap: 0;
  }
  .brand {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }
  .hamburger-btn { margin-left: 0; flex-shrink: 0; }
  .hdr-right { gap: 6px; flex-shrink: 0; }
}

/* ════════════════════════════════════════════════
   HERO — TIGHTER ON LARGE SCREENS
════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .hero { min-height: 72vh; }
  .hero h1 { font-size: clamp(2.4rem, 3.8vw, 4.2rem); }
  .hero-slide { padding: 80px 5vw 64px; }
  .hig-tall { height: 440px; }
  .hig-sq   { height: 212px; }
  .btn-primary, .btn-outline-light { padding: 15px 32px; font-size: .75rem; }
}

/* ════════════════════════════════════════════════
   GOAL TILES — SCALE WITH VIEWPORT (flex: 1)
════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .goal-tile { border-radius: 18px; }
  .goal-name { font-size: 14.5px; bottom: 12px; left: 14px; right: 14px; }
  .goal-icon { display: flex; }
  .goals-scroll { gap: 14px; padding: 0 14px; }
  .goals-sec { padding: 52px 0 36px; }
}
@media (min-width: 1280px) {
  .goal-name { font-size: 16px; }
  .goals-scroll { gap: 16px; padding: 0 20px; }
}

/* ════════════════════════════════════════════════
   GOAL TILES — MOBILE: FIXED SIZE, HORIZONTAL SCROLL
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .goal-tile { flex: 0 0 158px; height: 120px; aspect-ratio: unset; }
  .goal-name { font-size: 14px; }
  .goals-head .sec-title {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ════════════════════════════════════════════════
   MARQUEE — BIGGER ON DESKTOP
════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .brand-logo-img { height: 56px; }
  .brand-logo-img--lg { height: 72px; max-width: 180px; }
  .brand-logo-pill { height: 96px; width: 210px; padding: 12px 36px; margin: 0 14px; }
  .brands-sec { padding: 28px 0; }
  .brands-kicker { font-size: 11px; margin-bottom: 20px; }
}

/* ════════════════════════════════════════════════
   MARQUEE — SMALLER ON MOBILE, BIGGER IMAGES
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .brand-logo-pill { height: 62px; width: 150px; padding: 8px 20px; margin: 0 6px; }
  .brand-logo-img { height: 38px; max-width: 120px; }
  .brand-logo-img--lg { height: 52px; max-width: 130px; }
  .brands-sec { padding: 14px 0; }
  .brands-kicker { font-size: 9px; margin-bottom: 10px; }
}

/* ════════════════════════════════════════════════
   TESTIMONIALS — HORIZONTAL SCROLL ON MOBILE
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .testi-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 16px 12px;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
    grid-template-columns: unset !important;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-grid .tcard {
    min-width: 82vw;
    max-width: 82vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ════════════════════════════════════════════════
   FOOTER — 2-COLUMN ON MOBILE
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer { padding: 28px 0 16px; }
  .ft-tag { font-size: 11px; }
  .ft-link { font-size: 11px; margin-bottom: 5px; }
  .ft-bottom { flex-direction: column; gap: 6px; font-size: 9.5px; padding-top: 12px; }
}

/* ════════════════════════════════════════════════
   SEARCH — CATEGORY SUGGESTIONS STYLING
════════════════════════════════════════════════ */
.search-section-head {
  padding: 8px 15px 4px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid var(--border);
}
.search-section-head:first-child { border-top: none; }
/* Section label */
.search-section-head {
  padding: 10px 16px 5px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.search-section-head:first-child { border-top: none; }

/* ── Category list ── */
.search-cat-list { display: flex; flex-direction: column; padding: 2px 0 6px; }
.search-cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 16px; cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.search-cat-item:hover { background: var(--g-pale); }
.search-cat-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.search-cat-name {
  font-size: 13px; font-weight: 700; color: var(--text); flex: 1;
}

/* ── Product rows in dropdown ── */
.search-prod-list { display: flex; flex-direction: column; padding: 2px 0 8px; }
.search-prod-item {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 16px; cursor: pointer;
  transition: background .15s;
}
.search-prod-item:hover { background: var(--g-pale); }
.search-prod-img-wrap {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--prod-bg); flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.search-prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.search-prod-info { flex: 1; min-width: 0; }
.search-prod-name  { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-prod-brand { font-size: 11px; color: var(--muted); margin-top: 1px; }
.search-prod-price { font-size: 13px; font-weight: 800; color: var(--g-dark); white-space: nowrap; font-family: var(--serif); }

/* No-results */
.search-empty { padding: 20px 16px; font-size: 13px; color: var(--muted); font-style: italic; text-align: center; }

/* ════════════════════════════════════════════════
   MOBILE SEARCH SUGGESTIONS
════════════════════════════════════════════════ */
.mob-search-results .search-section-head { font-size: 9px; padding: 8px 12px 4px; }
.mob-search-results .search-cat-item { padding: 7px 12px; }
.mob-search-results .search-prod-item { padding: 7px 12px; }
.mob-search-results .search-prod-img-wrap { width: 36px; height: 36px; }

/* ════════════════════════════════════════════════
   PRODUCTS SECTION — LARGER GRID ON WIDE SCREENS
════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .prod-grid { grid-template-columns: repeat(5,1fr); gap: 16px; }
  .prod-card:hover { transform: translateY(-9px); }
  .prod-name { font-size: .95rem; }
  .prod-price { font-size: 1.2rem; }
}

/* ════════════════════════════════════════════════
   TRUST SECTION — MORE BREATHING ROOM ON LARGE
════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .trust-stat { font-size: 2.6rem; }
  .trust-stat-label { font-size: 13px; }
  .trust-card { padding: 22px 28px; }
}
/* ════════════════════════════════════════════════
   PRODUCT MODAL GALLERY — arrows, dots, swipe
════════════════════════════════════════════════ */
.prod-gallery-prev,
.prod-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.38);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  padding: 0;
}
.prod-gallery-prev { left: 8px; }
.prod-gallery-next { right: 8px; }
.prod-gallery-prev:hover,
.prod-gallery-next:hover { background: rgba(0,0,0,0.65); }

.prod-gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.prod-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.prod-gallery-dot.active { background: var(--g, #5A9E6F); }
