/* ============================================================
   AMIRTHA HERBALS — home landing
   Design system inspired by Vilvah
   Sage green #4F5732 · Soft sage #A4B660 · Pale lime #A4BB66
   Type: Fira Sans (body / nav / headings) · Cormorant Garamond
   serif stand-in for Peachi (display / hero / logo)
   Buttons 8px · Product cards 13px + soft diffuse shadow
   Container 1280px · 8px spacing base · 4/2/1 grid
   Loaded only on index.html, after style.css.
   ============================================================ */

:root {
  --bg:            #ffffff;
  --bg-warm:       #f5f5f5;
  --bg-soft:       #f5f5f5;
  --surface:       #ffffff;
  --fg:            #000000;
  --fg-soft:       #1a1a1a;
  --muted:         #585858;
  --border:        #dedede;
  --border-strong: #e9e9eb;

  --accent:        #4f5732;
  --accent-deep:   #3a4120;
  --accent-ink:    #3a4120;
  --accent-soft:   #a4b660;
  --accent-bright: #a4bb66;
  --accent-mid:    #88994b;
  --accent-olive:  #98aa57;
  --accent-alt:    #96a856;
  --sage-border:   #596b1f;

  --gold:          #d6b53a;
  --gold-star:     #8a6d1a;

  --footer-bg:     #2f3520;
  --footer-fg:     #ffffff;
  --footer-muted:  #c7cdb6;

  --font-display: 'Cormorant Garamond', 'Peachi', 'Iowan Old Style', Charter, Georgia, 'Times New Roman', serif;
  --font-body:    'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container: 1280px;

  --radius-xs: 3px;
  --radius-s: 5px;
  --radius-img: 6px;
  --radius-m: 8px;
  --radius-l: 12px;
  --radius-xl: 13px;
  --radius-pill: 60px;

  --shadow-card: 0 0 10.88px rgba(112, 112, 112, 0.2);
  --shadow-card-hover: 0 0 15px rgba(112, 112, 112, 0.3);
  --shadow-lift: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --focus-ring: 0 0 0 3px #ffffff, 0 0 0 5px var(--accent);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

body { background: var(--bg); color: var(--fg); font-family: var(--font-body); }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--font-body); }

/* ---------- announcement (top bar) ---------- */
.announce {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-bottom: 1px solid var(--sage-border);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.5rem 1rem;
}
.announce strong { color: var(--accent-ink); font-weight: 700; }
.announce-track { position: relative; height: 1.5em; overflow: hidden; }
.announce-item {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 0.45em;
  opacity: 0;
  transform: translateY(70%);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  will-change: transform, opacity;
}
.announce-item.is-active { opacity: 1; transform: translateY(0); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
}
.brand-word { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; letter-spacing: 0.01em; color: var(--fg); }
.brand-sub { font-family: var(--font-body); color: var(--muted); font-size: 0.55rem; letter-spacing: 0.3em; }
.nav-links a {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-links a::after { height: 2px; background: var(--accent); }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-links a.is-active { color: var(--accent); font-weight: 600; }
.btn-icon { border-radius: var(--radius-s); border-color: var(--border); }

/* ---------- buttons (Vilvah spec) ---------- */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  min-height: 44px; padding: 12px 20px;
  border-radius: var(--radius-m);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.btn-dark { background: var(--accent); color: #ffffff; box-shadow: none; }
.btn-dark:hover { background: var(--sage-border); color: #ffffff; transform: translateY(-2px); }
.btn-dark:active { background: var(--accent-deep); }
.btn-white { background: #ffffff; color: var(--accent); box-shadow: none; }
.btn-white:hover { background: var(--bg-warm); color: var(--accent); transform: translateY(-2px); }
.btn-underline {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; color: var(--fg);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1em;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.btn-underline:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-m);
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none;
}
.btn-primary:hover { background: var(--sage-border); color: #ffffff; transform: translateY(-2px); }
.btn-primary:active { background: var(--accent-deep); }
.btn-ghost {
  border: 1px solid var(--sage-border);
  border-radius: var(--radius-m);
  color: var(--accent);
  background: #ffffff;
}
.btn-ghost:hover { background: var(--bg-warm); color: var(--accent); border-color: var(--accent); }
.btn-light { background: #ffffff; color: var(--accent); border-radius: var(--radius-m); }
.btn-light:hover { background: var(--bg-warm); color: var(--accent); transform: translateY(-2px); }

/* ---------- hero (promo banner) ---------- */
.home-hero {
  background: linear-gradient(180deg, #eef2dd 0%, #e7ecd0 100%);
  border-bottom: 1px solid var(--border);
}
.home-hero .container { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--sage-border);
  border-radius: var(--radius-l);
  padding: 0.45em 0.9em;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
}
.hero-kicker .k-star { color: var(--gold-star); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4.8vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--fg);
  margin: 1.1rem 0 0.9rem;
}
.hero-sub { font-size: 1rem; line-height: 1.65; color: var(--muted); max-width: 48ch; }
.hero-ctas { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-rate { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.5rem; }
.hero-rate .stars { color: var(--gold-star); letter-spacing: 0.08em; }
.hero-rate .stars + span { font-size: 0.85rem; color: var(--muted); }
.hero-rate strong { font-weight: 600; color: var(--fg); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-card {
  position: relative;
  width: min(360px, 88%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f2f4e8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-visual-card svg { width: 100%; height: 100%; }
.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.4em;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 0.55em 1em;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--fg);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.float-chip .chip-star { color: var(--gold-star); }
.chip-gold { top: 12%; left: -0.6rem; }
.chip-leaf { bottom: 14%; right: -0.6rem; color: var(--accent); }
.chip-leaf svg { color: var(--accent); }

@media (max-width: 900px) {
  .hero-panel { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-rate { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual-card { width: min(280px, 80%); aspect-ratio: 4 / 4.6; }
  .chip-gold { left: 6%; }
  .chip-leaf { right: 6%; }
}

/* ---------- made-for trust strip ---------- */
.made-for { background: var(--bg-warm); border-bottom: 1px solid var(--border); }
.made-for .rating-row {
  text-align: center;
  padding-top: 1.4rem;
  font-size: 0.9rem; color: var(--muted);
}
.made-for .rating-row .stars { color: var(--gold-star); letter-spacing: 0.1em; margin-right: 0.5rem; }
.made-for .rating-row strong { color: var(--fg); font-weight: 600; }
.mf-row {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 1.1rem 0 1.5rem;
}
.mf-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--fg-soft); }
.mf-item svg { color: var(--accent); flex: none; }

/* ---------- section scaffolding ---------- */
.home-section { padding-block: clamp(2.5rem, 6vw, 4rem); }
.sec-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.6em;
  margin-bottom: 0.5rem;
}
.sec-eyebrow::before { content: ""; width: 1.5em; height: 1px; background: currentColor; opacity: 0.6; }
.section-head.is-centered .sec-eyebrow::after { content: ""; width: 1.5em; height: 1px; background: currentColor; opacity: 0.6; }
.section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--fg);
}
.section-head .head-actions { display: flex; align-items: center; gap: 1.1rem; }

/* ---------- category cards (Vilvah square cards) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } }
.cat-card {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), opacity 220ms var(--ease);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); opacity: 0.92; }
.cat-card .cc-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(164, 182, 102, 0.28) 0%, rgba(164, 182, 102, 0.1) 100%); }
.cat-card .cc-img svg { width: 72%; height: 72%; }
.cat-card .cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(47, 53, 32, 0) 40%, rgba(47, 53, 32, 0.55) 100%);
  pointer-events: none;
}
.cat-card .cc-copy {
  position: absolute; left: 1rem; bottom: 1rem;
  color: #ffffff;
  text-align: left;
}
.cat-card .cc-label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.01em; }
.cat-card .cc-count { display: block; margin-top: 0.1rem; font-size: 0.76rem; color: rgba(255, 255, 255, 0.82); font-weight: 500; }

/* ---------- offer tiles ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-tile {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.offer-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.offer-tile .ot-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #f2f4e8 0%, #e7ecd0 100%); }
.offer-tile .ot-img svg { width: 64%; height: 64%; }
.offer-tile .ot-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(47, 53, 32, 0.6) 100%);
  color: #ffffff;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: 0.01em;
  text-align: left;
}

/* ---------- carousels ---------- */
.v-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.25rem 0 0.75rem;
  margin: 0 -0.25rem;
}
.v-track::-webkit-scrollbar { display: none; }
.v-track > * { flex: 0 0 auto; width: clamp(230px, 23vw, 268px); scroll-snap-align: start; }
.v-nav { display: flex; gap: 0.4rem; }
.v-nav button {
  width: 44px; height: 44px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.v-nav button:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; }

/* ---------- product cards (Vilvah spec) ---------- */
.v-card {
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 10px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.v-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.v-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-img);
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.v-media .v-img { width: 76%; height: 76%; transition: transform 400ms var(--ease); }
.v-card:hover .v-media .v-img { transform: scale(1.04); }
.v-offer {
  position: absolute; top: 0.6rem; left: 0.6rem; z-index: 2;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.v-wish {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.v-wish:hover { color: var(--accent); transform: scale(1.06); }
.v-wish.is-wished { color: var(--accent); background: var(--bg-warm); }
.v-body { padding: 0.8rem 0.2rem 0; display: flex; flex-direction: column; gap: 0.22rem; flex: 1; }
.v-reviews { font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.v-reviews .v-stars { color: var(--gold-star); letter-spacing: 0.06em; }
.v-name { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; line-height: 1.35; color: var(--fg); }
.v-tag { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }
.v-price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: auto; padding-top: 0.3rem; }
.v-price .v-sale { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--fg); }
.v-price s { color: var(--muted); font-size: 0.8rem; }
.v-price .v-off { color: var(--accent); font-size: 0.7rem; font-weight: 700; }
.v-contents {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 0.18rem;
}
.v-contents li {
  position: relative;
  padding-left: 1.05em;
  font-size: 0.76rem; color: var(--muted); line-height: 1.4;
}
.v-contents li::before {
  content: "";
  position: absolute; left: 0; top: 0.42em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); opacity: 0.75;
}
.v-add {
  margin-top: 0.7rem;
  min-height: 42px;
  border-radius: var(--radius-m);
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45em;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}
.v-add:hover { background: var(--sage-border); color: #ffffff; transform: translateY(-1px); }
.v-add:active { transform: translateY(1px); }
.v-add.is-added { background: var(--accent-mid); color: #ffffff; }

/* ---------- before & after slider ---------- */
.ba-grid { max-width: 560px; margin: 0 auto; }
.ba { --ba-pos: 50%; touch-action: none; user-select: none; -webkit-user-select: none; }
.ba-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  cursor: ew-resize;
}
.ba-layer { position: absolute; inset: 0; z-index: 1; }
.ba-layer .ba-img { width: 100%; height: 100%; display: block; }
.ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }
.ba-after { z-index: 1; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos);
  z-index: 3;
  width: 2px; background: #ffffff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
  cursor: ew-resize;
  outline: none;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
}
.ba-tag {
  position: absolute; top: 0.9rem; z-index: 4;
  font-family: var(--font-body);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45em 0.95em;
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.ba-tag-before { left: 0.9rem; background: var(--accent); color: #ffffff; }
.ba-tag-after { right: 0.9rem; background: #ffffff; color: var(--accent); border: 1px solid var(--border-strong); }
.ba-caption { text-align: center; margin-top: 1rem; font-size: 0.88rem; color: var(--muted); }
.ba-caption strong { color: var(--fg); font-weight: 600; }

/* ---------- category tabs ---------- */
.cat-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.cat-tabs button {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--radius-l);
  border: 1px solid var(--sage-border);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.cat-tabs button:hover { background: var(--bg-warm); border-color: var(--accent); }
.cat-tabs button.is-active { background: var(--accent); border-color: var(--accent); color: #ffffff; }
.cat-foot { margin-top: 1.5rem; display: flex; justify-content: center; }

/* ---------- brand band ---------- */
.brand-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #4a5330 0%, #3a4120 100%);
  border-radius: var(--radius-l);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.brand-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% -10%, rgba(164, 187, 102, 0.28) 0%, transparent 60%);
  pointer-events: none;
}
.brand-band h2 { position: relative; color: #ffffff; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing: 0.01em; line-height: 1.15; max-width: 24ch; }
.brand-band p { position: relative; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; line-height: 1.7; max-width: 56ch; margin: 0.9rem auto 1.7rem; font-family: var(--font-body); }

/* ---------- grounded in nature ---------- */
.gn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .gn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gn-grid { grid-template-columns: 1fr; } }
.gn-item { text-align: center; padding: 1.6rem 1rem; }
.gn-icon {
  width: 64px; height: 64px;
  margin: 0 auto 0.9rem;
  border-radius: var(--radius-l);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.gn-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--fg); }
.gn-item p { font-size: 0.83rem; color: var(--muted); margin-top: 0.45rem; line-height: 1.6; }

/* ---------- testimonials ---------- */
.t-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .t-row { grid-template-columns: 1fr; } }
.t-card {
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  box-shadow: var(--shadow-card);
}
.t-stars { color: var(--gold-star); letter-spacing: 0.12em; font-size: 0.85rem; }
.t-quote { font-size: 0.95rem; line-height: 1.7; color: var(--fg-soft); font-family: var(--font-body); }
.t-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.t-avatar {
  width: 44px; height: 44px; border-radius: var(--radius-l);
  background: var(--accent);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  flex: none;
}
.t-author .t-name { display: block; font-weight: 600; font-size: 0.92rem; color: var(--fg); }
.t-author .t-role { display: block; font-size: 0.78rem; color: var(--muted); }

/* ---------- faq ---------- */
.home-faq { background: var(--bg-warm); border-block: 1px solid var(--border); }
.faq-item { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-l); }
.faq-item summary { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--fg); }
.faq-item summary::after { color: var(--accent); }
.faq-item p { color: var(--muted); font-family: var(--font-body); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

/* ---------- newsletter ---------- */
.news-inner { background: #4a5330; color: #ffffff; }
.news-inner::before { background: radial-gradient(60% 120% at 50% -10%, rgba(164, 187, 102, 0.3) 0%, transparent 60%); }
.news-inner h2 { color: #ffffff; font-family: var(--font-display); font-weight: 600; }
.news-inner p { color: rgba(255, 255, 255, 0.85); font-family: var(--font-body); }
.news-form input {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: var(--radius-m);
  font-family: var(--font-body);
}
.news-form input::placeholder { color: rgba(255, 255, 255, 0.75); }
.news-form input:focus { border-color: #ffffff; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25); }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); }
.footer-col h4 { color: #ffffff; font-family: var(--font-body); font-weight: 600; }
.footer-col a { color: var(--footer-muted); font-family: var(--font-body); }
.footer-col a:hover { color: #ffffff; }
.social-btn { border-color: rgba(255, 255, 255, 0.18); color: var(--footer-fg); }
.social-btn:hover { background: #ffffff; color: var(--accent); border-color: #ffffff; }
.footer-brand .brand-word { color: #ffffff; }
.footer-brand .brand-sub { color: var(--footer-muted); }
.footer-bottom { color: var(--footer-muted); }
.payments span { border-color: rgba(255, 255, 255, 0.2); }

/* ---------- toast ---------- */
.toast { background: var(--footer-bg); color: var(--footer-fg); }
.toast svg { color: var(--accent-bright); }

/* ---------- drawer / modal accents ---------- */
.drawer-head .small-title { font-family: var(--font-display); font-weight: 600; }
.cart-summary .sum-value { font-family: var(--font-body); font-weight: 700; }

/* ============================================================
   Inner pages — shop categories, combos, shop all, about
   Reuses the Vilvah tokens bound at the top of this file.
   ============================================================ */

/* ---------- page hero ---------- */
.page-hero {
  background:
    radial-gradient(120% 140% at 88% -10%, rgba(164, 187, 102, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #eef2dd 0%, #f5f6ec 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { gap: 0.9rem; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .page-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0.15rem 0 0.45rem;
}
.page-hero .lede { color: var(--muted); }
.crumb { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.crumb a { color: var(--accent); }
.crumb a:hover { color: var(--accent-ink); }

/* ---------- toolbar: chips + sort ---------- */
.chip {
  background: #ffffff;
  border-color: var(--sage-border);
  color: var(--accent);
  letter-spacing: 0.02em;
  box-shadow: none;
}
.chip:hover { border-color: var(--accent); background: var(--bg-warm); color: var(--accent); }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: #ffffff; }
.chip.is-active:hover { background: var(--sage-border); color: #ffffff; }
.sort-select { border-color: var(--sage-border); }
.sort-select:hover { border-color: var(--accent); }

/* ---------- grids ---------- */
.product-grid { gap: 1.25rem; }

/* ---------- cta band ---------- */
.cta-band {
  background: linear-gradient(180deg, #4a5330 0%, #3a4120 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.cta-band h2 { font-family: var(--font-display); font-weight: 700; color: #ffffff; letter-spacing: 0.01em; }
.cta-band p { color: rgba(255, 255, 255, 0.85); }
.cta-band .btn-primary { background: #ffffff; color: var(--accent); }
.cta-band .btn-primary:hover { background: var(--bg-warm); color: var(--accent); transform: translateY(-2px); }

/* ---------- about page ---------- */
.value-card { background: #f8f9f1; border-color: var(--border); border-radius: var(--radius-l); }
.value-card svg { color: var(--accent); }
.value-card h3 { font-family: var(--font-display); font-weight: 600; }
.step::before { color: var(--accent); }
.ingredient { background: #f8f9f1; border-color: var(--border); border-radius: var(--radius-l); }
.ingredient .ing-num { color: var(--accent); }
.split-list li svg { color: var(--accent); }
.split-art { background: linear-gradient(160deg, #eef2dd 0%, #e7ecd0 100%); border-color: var(--border); }
