/* ═══════════════════════════════════════════════════════════
   GAON BASKET — Main Stylesheet
   Chunk 1: Header · Hero · Footer
═══════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────
   DESIGN TOKENS
─────────────────────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --gb-deep:        #162A1C;
  --gb-forest:      #2B5F35;
  --gb-mid:         #3D7A47;
  --gb-lime:        #8DC63F;
  --gb-lime-light:  #A4D655;
  --gb-cream:       #E8DCC8;
  --gb-cream-light: #F5F0E6;
  --gb-white:       #FFFFFF;
  --gb-black:       #0D1A12;
  --gb-text:        #1C2B1E;
  --gb-text-mid:    #4A6050;
  --gb-text-soft:   #7A8E7E;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:       1280px;
  --pad-x:       clamp(1.25rem, 4vw, 2.5rem);
  --header-h:    72px;
  --announce-h:  40px;

  /* Border Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   36px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.20), 0 8px 24px rgba(0,0,0,.10);

  /* Easing */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Transition shorthands */
  --t1: 150ms var(--ease);
  --t2: 260ms var(--ease);
  --t3: 420ms var(--ease-out);
}

/* ───────────────────────────────────────────────────────────
   RESET & BASE
─────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gb-text);
  background: var(--gb-white);
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }
svg  { display: block; flex-shrink: 0; }

/* ───────────────────────────────────────────────────────────
   LAYOUT HELPERS
─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gb-forest);
  color: var(--gb-white);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .025em;
  padding: .7rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition:
    background var(--t2),
    box-shadow var(--t2),
    transform var(--t1);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gb-deep);
  box-shadow: 0 6px 28px rgba(43,95,53,.36);
  transform: translateY(-1px);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary svg { transition: transform var(--t2); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--gb-cream);
  font-weight: 500;
  font-size: .88rem;
  padding: .7rem 1.5rem;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(232,220,200,.35);
  transition: background var(--t2), border-color var(--t2), color var(--t2);
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(232,220,200,.10);
  border-color: var(--gb-cream);
}

.btn-sm  { padding: .5rem 1.1rem; font-size: .82rem; }
.btn-lg  { padding: .85rem 2rem;  font-size: .94rem; }

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════ */
.announce-bar {
  position: relative;
  height: var(--announce-h);
  background: var(--gb-lime);
  color: var(--gb-deep);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 200;
  transition: height .3s var(--ease), opacity .3s var(--ease);
}
.announce-bar.dismissed {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  user-select: none;
  flex-shrink: 0;
}
.announce-dot { opacity: .5; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.announce-close {
  position: absolute;
  right: .9rem;
  top: 50%;
  translate: 0 -50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gb-deep);
  opacity: .55;
  border-radius: 50%;
  transition: opacity var(--t1), background var(--t1);
}
.announce-close:hover { opacity: 1; background: rgba(0,0,0,.08); }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.055);
  transition: box-shadow var(--t2), background var(--t2);
}
.header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.header__logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--t1);
}
.header__logo:hover img { opacity: .78; }

/* ── Primary Nav ── */
.header__nav { flex: 1; display: flex; justify-content: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: .28rem;
  padding: .5rem .9rem;
  font-size: .865rem;
  font-weight: 500;
  color: var(--gb-text-mid);
  border-radius: var(--r-xs);
  transition: color var(--t1), background var(--t1);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--gb-forest);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2);
}
.nav__link:hover,
.nav__link--active { color: var(--gb-forest); }
.nav__link:hover::after,
.nav__link--active::after { transform: scaleX(1); }

.nav__chevron { transition: rotate var(--t2); }
.nav__item--mega:hover .nav__chevron { rotate: 180deg; }
.nav__link--drop { padding-right: .65rem; }

/* ── Mega Menu ── */
.nav__item--mega { position: static; }

.nav__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--gb-white);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t2), transform var(--t2);
  z-index: 50;
}
.nav__item--mega:hover .nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 0;
  padding-block: 2rem;
}

.mega__col { padding-inline: 1.5rem; }
.mega__col + .mega__col { border-left: 1px solid rgba(0,0,0,.05); }

.mega__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gb-lime);
  margin-bottom: .9rem;
  display: block;
}

.mega__col ul { display: flex; flex-direction: column; gap: .1rem; }

.mega__link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .42rem .55rem;
  font-size: .875rem;
  color: var(--gb-text-mid);
  border-radius: var(--r-xs);
  transition: color var(--t1), background var(--t1), padding-left var(--t2);
}
.mega__link:hover {
  color: var(--gb-forest);
  background: var(--gb-cream-light);
  padding-left: .85rem;
}

/* Mega feature card */
.mega__feature { padding-inline: 1.5rem; }
.mega__feature-card {
  border-radius: var(--r-md);
  background: var(--gb-cream-light);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mega__feature-img {
  height: 130px;
  overflow: hidden;
  background: var(--gb-forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega__feature-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: .9;
}
.mega__feature-body { padding: 1rem 1.1rem 1.25rem; flex: 1; }
.mega__feature-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gb-lime);
  margin-bottom: .3rem;
}
.mega__feature-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gb-text);
  line-height: 1.25;
  margin-bottom: .6rem;
}
.mega__feature-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gb-forest);
  transition: gap var(--t1);
}
.mega__feature-link:hover { text-decoration: underline; }

/* ── Header Action Buttons ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.hdr-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gb-text-mid);
  border-radius: var(--r-sm);
  transition: color var(--t1), background var(--t1);
}
.hdr-btn:hover {
  color: var(--gb-forest);
  background: var(--gb-cream-light);
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 17px;
  height: 17px;
  background: var(--gb-lime);
  color: var(--gb-deep);
  font-size: .6rem;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2px;
  line-height: 1;
  pointer-events: none;
}

.header__cta { margin-left: .4rem; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
}
.hamburger span {
  display: block;
  height: 1.8px;
  background: var(--gb-text);
  border-radius: var(--r-full);
  transition: transform var(--t2), opacity var(--t2), width var(--t2);
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ═══════════════════════════════════════════════════════════
   SEARCH OVERLAY
═══════════════════════════════════════════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t3);
}
.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22,42,28,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: default;
}

.search-overlay__panel {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, 14vh, 140px);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gb-white);
  border-radius: var(--r-full);
  padding: .7rem .7rem .7rem 1.5rem;
  box-shadow: var(--shadow-xl);
}
.search-form svg { color: var(--gb-text-soft); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--gb-text);
  background: transparent;
  min-width: 0;
}
.search-input::placeholder { color: var(--gb-text-soft); }
.search-close-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gb-text-soft);
  border-radius: 50%;
  transition: color var(--t1), background var(--t1);
}
.search-close-btn:hover { color: var(--gb-text); background: var(--gb-cream-light); }

.search-hint {
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(232,220,200,.55);
  padding-inline: 1.5rem;
}
.search-hint a {
  color: rgba(232,220,200,.8);
  border-bottom: 1px solid rgba(232,220,200,.3);
  transition: color var(--t1), border-color var(--t1);
}
.search-hint a:hover { color: var(--gb-cream); border-color: var(--gb-cream); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - var(--announce-h));
  background: var(--gb-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ── Atmospheric bg ── */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__blob--a {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(141,198,63,.22) 0%, transparent 70%);
  top: -180px; right: -120px;
  animation: blob-a 14s ease-in-out infinite;
}
.hero__blob--b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,122,71,.28) 0%, transparent 70%);
  bottom: -140px; left: -80px;
  animation: blob-b 11s ease-in-out infinite;
}
.hero__blob--c {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,220,200,.07) 0%, transparent 70%);
  top: 40%; left: 38%;
  translate: -50% -50%;
  animation: blob-c 18s ease-in-out infinite;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes blob-a {
  0%,100% { transform: translate(0,0) scale(1);   }
  50%      { transform: translate(-35px,48px) scale(1.07); }
}
@keyframes blob-b {
  0%,100% { transform: translate(0,0) scale(1);   }
  50%      { transform: translate(40px,-30px) scale(1.1); }
}
@keyframes blob-c {
  0%,100% { transform: translate(-50%,-50%) scale(1);   }
  50%      { transform: translate(-50%,-50%) scale(1.25); }
}

/* ── Hero layout ── */
.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(3rem, 7vh, 5.5rem);
}

/* ── Hero copy ── */
.hero__copy { max-width: 560px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(141,198,63,.12);
  border: 1px solid rgba(141,198,63,.28);
  color: var(--gb-lime);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.6rem;
}
.badge__pulse {
  width: 7px;
  height: 7px;
  background: var(--gb-lime);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.5); }
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 5.4vw, 5.4rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--gb-cream);
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gb-lime);
  font-weight: 700;
}

.hero__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(232,220,200,.6);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.h-stat__sep {
  width: 1px;
  height: 34px;
  background: rgba(232,220,200,.15);
  flex-shrink: 0;
}
.h-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gb-cream);
  line-height: 1;
  margin-bottom: .2rem;
}
.h-stat__num sup {
  font-size: .55em;
  font-weight: 600;
  color: var(--gb-lime);
  vertical-align: super;
}
.h-stat__label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(232,220,200,.42);
}

/* ── Hero visual ── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.hero__rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(141,198,63,.12);
}
.hero__ring--lg {
  width: 460px; height: 460px;
  animation: spin 50s linear infinite;
}
.hero__ring--md {
  width: 340px; height: 340px;
  border-color: rgba(232,220,200,.07);
  animation: spin 35s linear infinite reverse;
}
.hero__ring--sm {
  width: 230px; height: 230px;
  border-color: rgba(141,198,63,.08);
  animation: spin 22s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__icon-wrap {
  position: relative;
  z-index: 2;
  width: 270px;
  height: 270px;
}
.hero__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: .88;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Floating chips */
.hero__chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(232,220,200,.88);
  font-size: .78rem;
  font-weight: 500;
  padding: .52rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chip__dot--lime  { background: var(--gb-lime); box-shadow: 0 0 6px rgba(141,198,63,.7); }
.chip__dot--cream { background: var(--gb-cream); box-shadow: 0 0 6px rgba(232,220,200,.5); }

.hero__chip svg { opacity: .75; }

.hero__chip--tl {
  top: 12%;
  left: -4%;
  animation: chip-float 6s ease-in-out infinite;
}
.hero__chip--br {
  bottom: 18%;
  right: -4%;
  animation: chip-float 8s ease-in-out infinite 1.5s;
}
.hero__chip--tr {
  top: 38%;
  right: -8%;
  animation: chip-float 7s ease-in-out infinite .7s;
}

@keyframes chip-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-9px); }
}

/* ── Scroll cue ── */
.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(232,220,200,.35);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color var(--t2);
}
.hero__scroll-cue:hover { color: rgba(232,220,200,.7); }

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(232,220,200,.25);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(232,220,200,.5);
  border-radius: var(--r-full);
  animation: wheel-scroll 2s ease-in-out infinite;
}
@keyframes wheel-scroll {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--gb-forest);
  padding-block: 1.25rem;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
  transition: background var(--t2);
}
.trust-item:hover { background: rgba(255,255,255,.06); }
.trust-item__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.trust-item__text strong {
  font-size: .875rem;
  font-weight: 700;
  color: var(--gb-cream);
  display: block;
}
.trust-item__text span {
  font-size: .775rem;
  color: rgba(232,220,200,.55);
}

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION COMPONENTS
═══════════════════════════════════════════════════════════ */
.section-hd {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gb-lime);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gb-text);
  letter-spacing: -.02em;
  margin-bottom: .9rem;
}
.section-desc {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--gb-text-mid);
}

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════════════════════ */
.categories {
  background: var(--gb-cream-light);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

/* 3-column × 2-row grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Single card ── */
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--gb-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.055);
  box-shadow: var(--shadow-xs);
  transition:
    transform  var(--t2),
    box-shadow var(--t2);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(43,95,53,.14), 0 4px 16px rgba(0,0,0,.06);
}

/* Image wrapper */
.cat-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gb-cream-light);
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease-out);
}
.cat-card:hover .cat-card__media img {
  transform: scale(1.07);
}

/* Gradient overlay on image */
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(22,42,28,.55) 100%
  );
  pointer-events: none;
}

/* Glass badge on image */
.cat-card__glass-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--gb-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .28rem .7rem;
  border-radius: var(--r-full);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* Card body */
.cat-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border-top: 1px solid rgba(0,0,0,.04);
}

.cat-card__tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gb-lime);
  margin-bottom: .3rem;
}

.cat-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-text);
  line-height: 1.25;
  margin-bottom: .4rem;
  transition: color var(--t1);
}
.cat-card:hover .cat-card__name { color: var(--gb-forest); }

.cat-card__sub {
  font-size: .8rem;
  line-height: 1.55;
  color: var(--gb-text-soft);
}

/* CTA row */
.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gb-forest);
  letter-spacing: .01em;
  padding-top: .1rem;
  border-bottom: 1.5px solid transparent;
  transition: gap var(--t2), border-color var(--t1), color var(--t1);
  align-self: flex-start;
}
.cat-card__cta svg {
  transition: transform var(--t2);
}
.cat-card:hover .cat-card__cta {
  gap: .6rem;
  color: var(--gb-mid);
  border-bottom-color: var(--gb-lime);
}
.cat-card:hover .cat-card__cta svg {
  transform: translateX(4px);
}

/* Categories footer CTA */
.categories__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.categories__footer p {
  font-size: .9rem;
  color: var(--gb-text-mid);
}

/* ═══════════════════════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════════════════════ */
.featured {
  background: var(--gb-white);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

/* Section header: text left, button right */
.featured__hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.featured__hd-text { flex: 1; min-width: 280px; }
.featured__all-link { flex-shrink: 0; }

/* ── Filter tabs ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  padding: .52rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gb-text-mid);
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--r-full);
  cursor: pointer;
  transition:
    color      var(--t2),
    background var(--t2),
    border-color var(--t2),
    transform  var(--t1);
  white-space: nowrap;
}
.filter-tab:hover {
  color: var(--gb-forest);
  border-color: var(--gb-forest);
  transform: translateY(-1px);
}
.filter-tab.is-active {
  color: var(--gb-white);
  background: var(--gb-forest);
  border-color: var(--gb-forest);
}

/* ── Products grid ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Single product card ── */
.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--gb-white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition:
    transform  var(--t2),
    box-shadow var(--t2);
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(43,95,53,.12), 0 4px 12px rgba(0,0,0,.06);
}

/* Filter hide/show */
.prod-card.is-hidden {
  display: none;
}

/* Card image area */
.prod-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gb-cream-light);
}
.prod-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.prod-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease-out);
}
.prod-card:hover .prod-card__media img {
  transform: scale(1.06);
}

/* Badges top-left */
.prod-card__badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: flex-start;
}
.prod-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: var(--r-full);
  line-height: 1.4;
}
.prod-badge--amber  { background: #E8A020; color: #fff; }
.prod-badge--lime   { background: var(--gb-lime); color: var(--gb-deep); }
.prod-badge--forest { background: var(--gb-forest); color: #fff; }

/* Wishlist button top-right */
.prod-card__wish {
  position: absolute;
  top: .65rem;
  right: .65rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  color: var(--gb-text-soft);
  opacity: 0;
  transform: scale(.85);
  transition:
    opacity var(--t2),
    transform var(--t2),
    color var(--t1),
    background var(--t1);
}
.prod-card:hover .prod-card__wish {
  opacity: 1;
  transform: scale(1);
}
.prod-card__wish:hover {
  color: #e05;
  background: rgba(255,255,255,.98);
}
.prod-card__wish.is-wishlisted {
  opacity: 1;
  color: #e05;
  transform: scale(1);
}
.prod-card__wish.is-wishlisted svg {
  fill: #e05;
}

/* Quick view overlay — slides up on hover */
.prod-card__overlay-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: .75rem;
  background: linear-gradient(to top, rgba(22,42,28,.7) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--t2);
}
.prod-card:hover .prod-card__overlay-action {
  transform: translateY(0);
}
.prod-card__quick-view {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--gb-white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .38rem .9rem;
  border-radius: var(--r-full);
  transition: background var(--t1);
}
.prod-card__quick-view:hover {
  background: rgba(255,255,255,.25);
}

/* Card body */
.prod-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem 1.2rem;
  gap: .4rem;
}

.prod-card__cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gb-lime);
}

.prod-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.prod-card__name a {
  color: var(--gb-text);
  transition: color var(--t1);
}
.prod-card__name a:hover { color: var(--gb-forest); }

.prod-card__desc {
  font-size: .78rem;
  line-height: 1.55;
  color: var(--gb-text-soft);
  flex: 1;
}

/* Footer: weight + price + button */
.prod-card__foot {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: .3rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0,0,0,.055);
}

.prod-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-card__weight {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gb-text-mid);
  background: var(--gb-cream-light);
  padding: .22rem .65rem;
  border-radius: var(--r-full);
}

.prod-card__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gb-forest);
  letter-spacing: -.01em;
}

/* Add to Cart button */
.prod-card__atc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--gb-forest);
  color: var(--gb-white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .025em;
  padding: .65rem 1rem;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition:
    background var(--t2),
    box-shadow var(--t2),
    transform var(--t1),
    color var(--t2);
  cursor: pointer;
}
.prod-card__atc:hover {
  background: var(--gb-deep);
  box-shadow: 0 6px 20px rgba(43,95,53,.3);
  transform: translateY(-1px);
}
.prod-card__atc:active {
  transform: translateY(0);
  box-shadow: none;
}
.prod-card__atc.added {
  background: var(--gb-lime);
  color: var(--gb-deep);
  border-color: var(--gb-lime);
}

/* ── Featured footer ── */
.featured__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.featured__footer-text {
  font-size: .82rem;
  color: var(--gb-text-soft);
}

/* ── No results (all filtered out) ── */
.prod-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gb-text-soft);
  font-size: .95rem;
  display: none;
}
.prod-grid__empty.is-visible { display: block; }

/* ═══════════════════════════════════════════════════════════
   BRAND STORY
═══════════════════════════════════════════════════════════ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 60vw, 720px);
}

/* ── Left panel ── */
.story__panel {
  background: var(--gb-deep);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
}

.story__wm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.story__wm img {
  width: 70%;
  opacity: .04;
  mix-blend-mode: screen;
}

.story__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--gb-cream);
}

.story__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gb-lime);
  margin-bottom: 1.25rem;
}
.story__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gb-lime);
  border-radius: 2px;
}

.story__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--gb-cream);
  margin-bottom: 1.4rem;
}
.story__title em {
  font-style: normal;
  color: var(--gb-lime);
}

.story__lead {
  font-size: clamp(.92rem, 1.3vw, 1.05rem);
  line-height: 1.75;
  color: rgba(232,220,200,.85);
  margin-bottom: .9rem;
  font-weight: 500;
}
.story__body {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(232,220,200,.6);
  margin-bottom: 2rem;
}

/* Stats row */
.story__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.25rem;
  border-top: 1px solid rgba(232,220,200,.12);
  padding-top: 1.5rem;
}
.story-stat {
  flex: 1;
  text-align: center;
  padding-inline: .5rem;
}
.story-stat + .story-stat {
  border-left: 1px solid rgba(232,220,200,.12);
}
.story-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gb-lime);
  line-height: 1;
  margin-bottom: .3rem;
}
.story-stat__label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(232,220,200,.45);
}

/* ── Right panel (image) ── */
.story__image {
  position: relative;
  overflow: hidden;
}
.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.story__image:hover img { transform: scale(1.04); }

.story__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18,44,22,.35) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.story__quote {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin: 0;
  color: var(--gb-white);
}
.story__quote p {
  font-family: var(--font-serif);
  font-size: clamp(.85rem, 1.2vw, 1rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: .6rem;
  color: rgba(255,255,255,.92);
}
.story__quote cite {
  font-style: normal;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gb-lime);
}
.story__quote-icon {
  color: rgba(255,255,255,.3);
  margin-bottom: .5rem;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.why-us {
  background: var(--gb-white);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.why-card {
  background: var(--gb-cream);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--gb-lime);
  transition: transform var(--t2), box-shadow var(--t2);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(43,95,53,.12);
}

/* Decorative number */
.why-card__num {
  font-family: var(--font-serif);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gb-forest);
  opacity: .35;
  min-width: 28px;
}

.why-card__top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.1rem;
}

.why-card__icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--gb-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card__icon-wrap svg {
  color: var(--gb-white);
}

.why-card__stat {
  display: inline-block;
  background: var(--gb-lime);
  color: var(--gb-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-deep);
  margin: .6rem 0 .5rem;
  line-height: 1.25;
}

.why-card__desc {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--gb-text-soft);
}

/* ── CTA band ── */
.why-us__band {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--gb-forest);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.why-us__band-text {
  flex: 1;
  min-width: 200px;
}
.why-us__band-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--gb-cream);
  margin-bottom: .3rem;
}
.why-us__band-text p {
  font-size: .85rem;
  color: rgba(232,220,200,.6);
  line-height: 1.55;
}
.why-us__band-text span {
  color: var(--gb-lime);
}
.why-us__band-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

/* Forest-outline button variant */
.btn-forest-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  border: 2px solid rgba(232,220,200,.35);
  color: var(--gb-cream);
  background: transparent;
  transition:
    border-color var(--t2),
    background var(--t2),
    color var(--t2);
  cursor: pointer;
  text-decoration: none;
}
.btn-forest-outline:hover {
  border-color: var(--gb-lime);
  background: rgba(var(--gb-lime-rgb, 190,220,80),.08);
  color: var(--gb-lime);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--gb-cream);
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ── Rating summary bar ── */
.testi-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--gb-white);
  border-radius: var(--r-xl);
  padding: 1.5rem 2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 2px 20px rgba(43,95,53,.06);
}
.testi-summary__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.testi-summary__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gb-deep);
  line-height: 1;
}
.testi-summary__stars {
  display: flex;
  align-items: center;
  gap: .18rem;
  color: #F5A623;
}
.testi-summary__label {
  font-size: .8rem;
  color: var(--gb-text-soft);
  font-weight: 500;
}
.testi-summary__pills {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.testi-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 600;
  color: var(--gb-forest);
  background: rgba(43,95,53,.08);
  padding: .35rem .85rem;
  border-radius: var(--r-full);
}
.testi-pill svg { flex-shrink: 0; }

/* ── Cards grid ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Featured card spans full first column, both rows */
.testi-card--featured {
  grid-row: 1 / 3;
}

.testi-card {
  background: var(--gb-white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: 0 2px 16px rgba(43,95,53,.05);
  border: 1px solid rgba(43,95,53,.07);
  transition: transform var(--t2), box-shadow var(--t2);
  position: relative;
  overflow: hidden;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43,95,53,.12);
}

/* Decorative quote mark */
.testi-card__quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(43,95,53,.07);
  pointer-events: none;
  user-select: none;
}
.testi-card--featured .testi-card__quote-mark {
  font-size: 8rem;
  top: .5rem;
}

/* Top row: avatar + meta + stars */
.testi-card__top {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.testi-card__stars {
  display: flex;
  align-items: center;
  gap: .1rem;
  color: #F5A623;
  margin-left: auto;
}

/* Avatar */
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gb-white);
  flex-shrink: 0;
  background-color: var(--av-color, var(--gb-forest));
}
.testi-card--featured .testi-card__avatar {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

.testi-card__name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gb-deep);
  line-height: 1.2;
}
.testi-card__location {
  display: block;
  font-size: .73rem;
  color: var(--gb-text-soft);
  margin-top: .1rem;
}

/* Review text */
.testi-card__text {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--gb-text);
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testi-card--featured .testi-card__text {
  font-size: clamp(.9rem, 1.15vw, 1rem);
  line-height: 1.8;
}

/* Purchased product tag */
.testi-card__product {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gb-forest);
  background: rgba(43,95,53,.07);
  padding: .4rem .85rem;
  border-radius: var(--r-full);
  width: fit-content;
  margin-top: auto;
}
.testi-card__product svg { flex-shrink: 0; opacity: .7; }

.testi-card__date {
  font-size: .72rem;
  color: var(--gb-text-soft);
  margin-top: -.25rem;
}

/* ── Footer link ── */
.testi-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.testi-footer__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gb-forest);
  border-bottom: 2px solid var(--gb-lime);
  padding-bottom: .15rem;
  text-decoration: none;
  transition: color var(--t2), border-color var(--t2);
}
.testi-footer__link:hover {
  color: var(--gb-deep);
  border-color: var(--gb-forest);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL-IN ANIMATIONS
═══════════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transition:
    opacity .75s var(--ease-out),
    transform .75s var(--ease-out);
}
[data-anim="up"]   { transform: translateY(32px); }
[data-anim="left"] { transform: translateX(32px); }
[data-anim="right"]{ transform: translateX(-32px); }

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0,0);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--gb-deep); color: var(--gb-cream); }

/* ── Top section ── */
.footer__top { padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1.8fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

/* Brand col */
.footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: .92;
  margin-bottom: 1.25rem;
  transition: opacity var(--t2);
}
.footer__logo-link:hover .footer__logo-img { opacity: 1; }

.footer__tagline {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(232,220,200,.5);
  max-width: 290px;
  margin-bottom: 1.6rem;
}

/* Social buttons */
.footer__social {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232,220,200,.45);
  border: 1px solid rgba(232,220,200,.1);
  border-radius: var(--r-sm);
  transition: color var(--t2), background var(--t2), border-color var(--t2), transform var(--t2);
}
.social-btn:hover {
  color: var(--gb-cream);
  background: rgba(141,198,63,.12);
  border-color: rgba(141,198,63,.3);
  transform: translateY(-2px);
}

/* Nav grid */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col-head {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gb-lime);
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col a {
  font-size: .875rem;
  color: rgba(232,220,200,.5);
  transition: color var(--t1), padding-left var(--t2);
  display: inline-block;
}
.footer__col a:hover {
  color: var(--gb-cream);
  padding-left: 5px;
}

/* Newsletter col */
.footer__newsletter { display: flex; flex-direction: column; gap: 0; }
.footer__nl-desc {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(232,220,200,.5);
  margin-bottom: 1.1rem;
}

.nl-form { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.nl-form__row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  padding: .3rem .3rem .3rem 1.1rem;
  transition: border-color var(--t2);
}
.nl-form__row:focus-within { border-color: rgba(141,198,63,.5); }
.nl-form__row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--gb-cream);
  font-size: .875rem;
  min-width: 0;
}
.nl-form__row input::placeholder { color: rgba(232,220,200,.3); }
.nl-form__row button {
  width: 36px;
  height: 36px;
  background: var(--gb-lime);
  color: var(--gb-deep);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t1), transform var(--t1);
}
.nl-form__row button:hover { background: var(--gb-lime-light); transform: scale(1.06); }
.nl-form__note {
  font-size: .74rem;
  color: rgba(232,220,200,.3);
}

/* Trust badges */
.footer__badges {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.f-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(232,220,200,.4);
  border: 1px solid rgba(232,220,200,.1);
  border-radius: var(--r-sm);
  padding: .35rem .7rem;
}

/* ── Footer bottom bar ── */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.055);
  padding-block: 1.4rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: .78rem;
  color: rgba(232,220,200,.3);
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: .78rem;
  color: rgba(232,220,200,.3);
  transition: color var(--t1);
}
.footer__legal a:hover { color: rgba(232,220,200,.7); }
.footer__pay {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.pay-pill {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .22rem .6rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xs);
  color: rgba(232,220,200,.35);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__newsletter { grid-column: 1 / -1; max-width: 480px; }

  .hero__visual { height: 420px; }
  .hero__ring--lg { width: 370px; height: 370px; }
  .hero__ring--md { width: 275px; height: 275px; }
  .hero__ring--sm { width: 185px; height: 185px; }
  .hero__icon-wrap { width: 210px; height: 210px; }

  /* Categories: 2-col on tablet */
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Products: 2-col on tablet */
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .featured__hd { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  /* Story: stack on tablet */
  .story { grid-template-columns: 1fr; }
  .story__image { min-height: 380px; }
  .story__panel { justify-content: center; }
  .story__content { max-width: 100%; }

  /* Why: 2-col on tablet */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials: featured loses span, 2-col grid */
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card--featured { grid-row: auto; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h:    62px;
    --announce-h:  36px;
  }

  /* Header */
  .header__nav   { display: none; }
  .header__cta   { display: none; }
  .hamburger     { display: flex; }

  /* Mobile nav drawer */
  .header__nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--gb-white);
    flex-direction: column;
    padding: 1.5rem var(--pad-x) 3rem;
    overflow-y: auto;
    z-index: 90;
    box-shadow: var(--shadow-xl);
  }
  .header__nav.is-open .nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .header__nav.is-open .nav__link {
    font-size: 1.15rem;
    padding: .9rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-radius: 0;
  }
  .header__nav.is-open .nav__link::after { display: none; }
  .header__nav.is-open .nav__mega { display: none; }
  .header__nav.is-open .nav__chevron { display: none; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: clamp(2rem, 5vh, 3.5rem);
    text-align: center;
  }
  .hero__copy { max-width: 100%; }
  .hero__badge { margin-inline: auto; }
  .hero__body  { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }

  .hero__visual {
    order: -1;
    height: 300px;
  }
  .hero__ring--lg { width: 270px; height: 270px; }
  .hero__ring--md { width: 200px; height: 200px; }
  .hero__ring--sm { width: 140px; height: 140px; }
  .hero__icon-wrap { width: 155px; height: 155px; }

  .hero__chip--tl { top: 5%; left: 3%; }
  .hero__chip--br { bottom: 5%; right: 3%; }
  .hero__chip--tr { top: 40%; right: 2%; }

  /* Trust strip */
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }

  /* Categories: 1-col on mobile */
  .cat-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .cat-card__media { aspect-ratio: 16 / 9; }

  /* Products: 2-col on mobile (small cards) */
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .prod-card__body { padding: .85rem .9rem 1rem; }
  .prod-card__name { font-size: .9rem; }
  .prod-card__desc { display: none; }
  .prod-card__price { font-size: 1.05rem; }
  .filter-bar { gap: .3rem; }
  .filter-tab { padding: .44rem .85rem; font-size: .76rem; }

  /* Testimonials: 1-col on mobile */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-summary { flex-direction: column; align-items: flex-start; }
  .testi-summary__score { gap: .75rem; }

  /* Story mobile */
  .story__quote { bottom: 1rem; }
  .story__quote p { font-size: .82rem; }

  /* Why mobile: 1-col */
  .why-grid { grid-template-columns: 1fr; }
  .why-us__band { flex-direction: column; text-align: center; }
  .why-us__band-actions { justify-content: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__newsletter { max-width: 100%; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__stats { gap: 1.1rem; }
  .hero__chip  { font-size: .72rem; padding: .42rem .8rem; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .footer__nav  { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; gap: .5rem; }
  .categories__footer { flex-direction: column; text-align: center; gap: .75rem; }
}
