/* ============================================================
   AMIRTHA HERBALS — design system
   Palette: human-approachable direction, herbal-green accent
   Type: Cormorant Garamond (display) / Inter (body)
   ============================================================ */

:root {
  --bg:      oklch(98% 0.004 240);
  --bg-warm: oklch(97.5% 0.006 100);
  --surface: oklch(100% 0 0);
  --fg:      oklch(20% 0.02 240);
  --fg-soft: oklch(30% 0.018 240);
  --muted:   oklch(50% 0.016 240);
  --border:  oklch(90% 0.008 240);
  --border-strong: oklch(84% 0.01 240);

  --accent:       oklch(56% 0.12 170);
  --accent-deep:  oklch(39% 0.10 170);
  --accent-ink:   oklch(33% 0.09 170);
  --accent-soft:  oklch(95.5% 0.03 170);
  --accent-bright: oklch(70% 0.13 170);

  --footer-bg:    oklch(30% 0.05 170);
  --footer-fg:    oklch(91% 0.015 170);
  --footer-muted: oklch(74% 0.02 170);

  --success: oklch(52% 0.14 150);
  --danger:  oklch(52% 0.16 25);

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

  --container: 1200px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;

  --shadow-card: 0 1px 2px oklch(20% 0.02 240 / 0.04), 0 10px 28px oklch(20% 0.02 240 / 0.06);
  --shadow-lift: 0 2px 4px oklch(20% 0.02 240 / 0.06), 0 22px 44px oklch(20% 0.02 240 / 0.12);
  --focus-ring: 0 0 0 3px oklch(100% 0 0), 0 0 0 6px var(--accent);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-s); }

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--fg);
}
h1, .h1 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; }
h2, .h2 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h3, .h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: -0.005em; }

.hero-title { font-size: clamp(2.7rem, 5.2vw, 4.1rem); }
.page-title { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.card-title { font-size: 1.35rem; }
.small-title { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 1.4em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.is-centered::after {
  content: "";
  width: 1.4em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lede { font-size: 1.0625rem; line-height: 1.7; color: var(--muted); max-width: 62ch; }
.lede.lg { font-size: 1.15rem; }
.lede.on-dark { color: var(--footer-muted); }

.small-caps {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--surface); border-block: 1px solid var(--border); }
.section--dark { background: var(--footer-bg); color: var(--footer-fg); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 420px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.section-head .lede { margin-top: 0.75rem; }
.section-head.is-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 48px;
  padding: 0.7em 1.5em;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 160ms var(--ease), background 160ms var(--ease),
              color 160ms var(--ease), border-color 160ms var(--ease),
              box-shadow 160ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn-primary {
  background: var(--accent-deep);
  color: oklch(100% 0 0);
  box-shadow: 0 10px 24px oklch(39% 0.1 170 / 0.28);
}
.btn-primary:hover {
  background: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px oklch(33% 0.09 170 / 0.32);
}

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg-soft);
  background: transparent;
}
.btn-ghost:hover { background: var(--accent-soft); color: var(--accent-ink); border-color: var(--accent); }

.btn-quiet {
  color: var(--accent-deep);
  font-weight: 600;
  min-height: 44px;
  padding-inline: 0.5em;
  border-radius: var(--radius-s);
}
.btn-quiet:hover { color: var(--accent-ink); }
.btn-quiet .arrow { transition: transform 160ms var(--ease); }
.btn-quiet:hover .arrow { transform: translateX(4px); }

.btn-light {
  background: oklch(100% 0 0);
  color: var(--accent-ink);
  box-shadow: 0 10px 24px oklch(10% 0 0 / 0.2);
}
.btn-light:hover { background: oklch(92% 0.03 170); transform: translateY(-2px); }

.btn-sm { min-height: 40px; padding: 0.45em 1.1em; font-size: 0.85rem; }
.btn-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-soft);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.btn-icon:hover { background: var(--accent-soft); color: var(--accent-ink); border-color: var(--accent); }

/* ---------- announcement + header ---------- */
.announce {
  background: var(--accent-deep);
  color: oklch(96% 0.02 170);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce strong { color: oklch(100% 0 0); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(98% 0.004 240 / 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.brand-mark { width: 34px; height: 34px; color: var(--accent-deep); }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.28em;
}

.nav-links { display: flex; align-items: center; gap: clamp(0.5rem, 1.5vw, 1.5rem); }
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-soft);
  padding: 0.5em 0.2em;
  transition: color 160ms var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.2em; right: 0.2em; bottom: 0.1em;
  height: 2px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.is-active { color: var(--accent-deep); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.nav-actions .btn { min-height: 44px; }

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; right: 0;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(100% 0 0);
  font-size: 0.66rem;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  padding-inline: 4px;
  transform: translate(40%, -20%);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
  color: var(--fg);
}

.nav-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  color: var(--fg-soft);
  background: var(--surface);
  border: 1px solid var(--border);
}

@media (max-width: 480px) {
  .nav-actions .btn-icon:not(.cart-btn) { display: none; }
}

@media (max-width: 1024px) {
  .site-header {
    z-index: 85;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 95;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    background: var(--bg);
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 300ms var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); box-shadow: var(--shadow-lift); }
  .nav-links a { font-size: 1.7rem; font-family: var(--font-display); font-weight: 600; padding: 0.35em 0; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-close { display: inline-flex; }
}

/* ---------- drawer (cart / menu) ---------- */
.drawer-scrim {
  position: fixed; inset: 0;
  background: oklch(20% 0.02 240 / 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
  z-index: 80;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100vw);
  background: var(--bg);
  z-index: 100;
  transform: translateX(102%);
  transition: transform 320ms var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px oklch(20% 0.02 240 / 0.18);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 { font-size: 1.4rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.drawer-foot {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.close-btn { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); }
.close-btn:hover { background: var(--accent-soft); color: var(--accent-ink); }

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.cart-empty svg { margin: 0 auto 1rem; color: var(--border-strong); }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item .cart-thumb { width: 72px; height: 72px; flex: none; border-radius: var(--radius-s); overflow: hidden; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; }
.cart-item .cart-thumb svg { width: 52px; height: 52px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--fg); }
.cart-item-info .cart-price { font-size: 0.85rem; color: var(--muted); margin-top: 0.15rem; }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.qty button {
  min-width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-soft);
}
.qty button:hover { background: var(--accent-soft); color: var(--accent-ink); }
.qty span { min-width: 36px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.cart-remove { align-self: flex-start; width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); }
.cart-remove:hover { background: oklch(95% 0.02 25); color: var(--danger); }

.cart-summary { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-summary .sum-label { color: var(--muted); font-size: 0.9rem; }
.cart-summary .sum-value { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; }
.cart-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-copy .hero-title { margin: 1.1rem 0 1.25rem; font-size: clamp(2.3rem, 4.5vw, 3.6rem); }
.hero-copy .eyebrow { color: var(--accent-deep); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 2.25rem; margin-top: 2.4rem; }
.hero-trust li { position: relative; font-size: 0.84rem; font-weight: 500; color: var(--fg-soft); }
.hero-trust li:not(:last-child)::after { content: ""; position: absolute; right: -1.15rem; top: 0.2em; bottom: 0.2em; width: 1px; background: var(--border-strong); }

.hero-ph { position: relative; }
.hero-ph .ph--hero { aspect-ratio: 4 / 5; }
.hero-card {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  max-width: 72%;
  background: oklch(100% 0 0 / 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 0.95rem 1.15rem;
  display: grid; gap: 0.2rem;
}
.hero-card-kicker { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); }
.hero-card-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.2; color: var(--fg); }
.hero-card-price { font-size: 0.84rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-ph { order: -1; }
  .hero-ph .ph--hero { aspect-ratio: 4 / 3.4; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-trust li:not(:last-child)::after { display: none; }
}

/* ---------- benefits strip ---------- */
.benefits { border-bottom: 1px solid var(--border); background: var(--surface); }
.benefits-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.5rem 1.75rem; border-left: 1px solid var(--border); }
.benefit:first-child { border-left: 0; }
.benefit strong { font-size: 0.9rem; font-weight: 600; color: var(--fg); }
.benefit span { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .benefits-row { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(odd) { border-left: 0; }
  .benefit:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .benefits-row { grid-template-columns: 1fr; }
  .benefit { border-left: 0; }
  .benefit:nth-child(odd) { border-left: 0; }
  .benefit:nth-child(n+2) { border-top: 1px solid var(--border); }
}

/* ---------- placeholder frames ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem;
  padding: 1.25rem;
  text-align: center;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-m);
  background: var(--surface);
  color: var(--muted);
}
.ph svg { color: var(--muted); flex: none; }
.ph-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); }
.ph-hint { font-size: 0.8rem; line-height: 1.55; max-width: 30ch; }

/* ---------- category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-tile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-strong); }
.cat-ph { border-radius: var(--radius-m); overflow: hidden; }
.cat-ph .ph--cat { aspect-ratio: 4 / 5; padding: 1rem; }
.cat-meta { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.35rem 0.5rem 0; }
.cat-count { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cat-tile h3 { font-size: 1.35rem; }
.cat-tile p { font-size: 0.84rem; color: var(--muted); margin-top: 0.2rem; }
.cat-link {
  display: inline-flex; align-items: center; gap: 0.45em;
  margin-top: 0.45rem;
  font-size: 0.84rem; font-weight: 600; color: var(--accent-deep);
}
.cat-link:hover { color: var(--accent-ink); }
.cat-link svg { transition: transform 160ms var(--ease); }
.cat-link:hover svg { transform: translateX(4px); }

/* ---------- product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--border-strong); }

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-media svg { width: 78%; height: 78%; transition: transform 400ms var(--ease); }
.product-card:hover .product-media svg { transform: scale(1.045); }

.product-badges { position: absolute; top: 0.9rem; left: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; z-index: 2; }
.badge {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.32em 0.7em;
  border-radius: 999px;
}
.badge--save { background: var(--accent-soft); color: var(--accent-ink); }
.badge--new { background: oklch(100% 0 0 / 0.85); color: var(--fg); border: 1px solid var(--border); }

.wish-btn {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.82);
  backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-soft);
  border: 1px solid oklch(20% 0.02 240 / 0.08);
  transition: transform 160ms var(--ease), color 160ms var(--ease), background 160ms var(--ease);
}
.wish-btn:hover { transform: scale(1.08); }
.wish-btn.is-wished { color: oklch(52% 0.18 25); background: oklch(96% 0.02 25); }

.product-info { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.product-name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; line-height: 1.15; color: var(--fg); }
.product-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.product-foot {
  margin-top: auto;
  padding-top: 0.9rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.price { display: flex; align-items: baseline; gap: 0.5rem; }
.price .now { font-weight: 700; font-size: 1.02rem; color: var(--fg); letter-spacing: -0.01em; }
.price .was { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }
.add-btn {
  min-height: 44px;
  padding: 0.45em 1.05em;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 0.4em;
  border: 1px solid transparent;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}
.add-btn:hover { background: var(--accent-deep); color: oklch(100% 0 0); transform: translateY(-1px); }
.add-btn:active { transform: translateY(1px); }
.add-btn.is-added { background: oklch(94% 0.05 150); color: oklch(35% 0.11 150); border-color: oklch(75% 0.1 150); }

/* ---------- filters / toolbar ---------- */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  min-height: 44px;
  padding: 0.4em 1.1em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--fg-soft);
  font-size: 0.85rem; font-weight: 500;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent-ink); }
.chip.is-active { background: var(--accent-deep); border-color: var(--accent-deep); color: oklch(100% 0 0); }
.chip.is-active:hover { background: var(--accent-ink); }

.sort-wrap { display: flex; align-items: center; gap: 0.6rem; }
.sort-wrap label { font-size: 0.82rem; color: var(--muted); }
.sort-select {
  appearance: none;
  min-height: 44px;
  padding: 0.4em 2.2em 0.4em 1.1em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--fg);
  font-size: 0.88rem; font-weight: 500;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23383838' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
}
.sort-select:hover { border-color: var(--accent); }
.result-count { font-size: 0.86rem; color: var(--muted); }

.search-field {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}
.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0.5em 1.1em 0.5em 2.7em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--fg);
  font-size: 0.9rem;
}
.search-field input::placeholder { color: var(--muted); }
.search-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search-field svg { position: absolute; left: 1em; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

@media (max-width: 720px) {
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .search-field { max-width: none; }
}

/* ---------- combo cards ---------- */
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .combo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .combo-grid { grid-template-columns: 1fr; } }

.combo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.combo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--border-strong); }
.combo-media { aspect-ratio: 4 / 3.4; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.combo-media svg { width: 70%; height: 70%; }
.combo-save {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent-deep); color: oklch(100% 0 0);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4em 0.85em; border-radius: 999px;
}
.combo-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.combo-name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.12; }
.combo-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.combo-contents { list-style: none; margin: 0.4rem 0; }
.combo-contents li {
  position: relative;
  padding-left: 1.4em;
  font-size: 0.84rem; color: var(--fg-soft);
  line-height: 1.9;
}
.combo-contents li::before {
  content: "";
  position: absolute; left: 0; top: 0.78em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.combo-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.9rem;
  border-top: 1px solid var(--border);
}
.combo-price .was { display: block; font-size: 0.78rem; color: var(--muted); text-decoration: line-through; }
.combo-price .now { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--fg); }

/* ---------- brand band ---------- */
.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-l);
  background: var(--footer-bg);
  color: var(--footer-fg);
}
@media (max-width: 860px) { .band { grid-template-columns: 1fr; } }
.band-item { display: flex; flex-direction: column; gap: 0.65rem; }
.band-item svg { color: var(--accent-bright); }
.band-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: oklch(100% 0 0); }
.band-item p { font-size: 0.9rem; line-height: 1.6; color: var(--footer-muted); }

/* ---------- principles ---------- */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .principles { grid-template-columns: 1fr; } }
.principle { padding-top: 1.3rem; border-top: 1px solid var(--border-strong); display: flex; flex-direction: column; gap: 0.5rem; }
.p-num { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--accent-deep); }
.principle h3 { font-size: 1.25rem; }
.principle p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ---------- editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-art {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid oklch(20% 0.02 240 / 0.06);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, oklch(96% 0.02 90) 0%, oklch(92% 0.03 140) 100%);
}
.split-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.split-ph { border-radius: var(--radius-l); overflow: hidden; }
.split-ph .ph--feature { aspect-ratio: 4 / 5; }
.split-copy .eyebrow { margin-bottom: 1rem; }
.split-copy h2 { margin-bottom: 1.1rem; }
.split-copy .lede { margin-bottom: 1.25rem; }
.split-list { margin: 1.4rem 0 1.9rem; display: grid; gap: 0.9rem; }
.split-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.92rem; color: var(--fg-soft); }
.split-list li svg { flex: none; margin-top: 0.15em; color: var(--accent-deep); }
.split-list strong { font-weight: 600; color: var(--fg); }

/* ---------- testimonials ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.test-stars { color: oklch(72% 0.13 85); letter-spacing: 0.15em; }
.test-quote { font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; line-height: 1.4; color: var(--fg); }
.test-card cite { margin-top: auto; font-style: normal; display: flex; flex-direction: column; gap: 0.15rem; }
.test-card cite .t-name { font-weight: 600; font-size: 0.9rem; color: var(--fg); }
.test-card cite .t-city { font-size: 0.78rem; color: var(--muted); }
.test-card cite .t-product { font-size: 0.76rem; color: var(--muted); margin-top: 0.25rem; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 720px; margin-inline: auto; }
.faq { display: grid; gap: 0.75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.25rem; font-weight: 600; font-size: 0.95rem; color: var(--fg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--accent-deep); transition: transform 200ms var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item p { padding: 0 1.25rem 1.15rem; font-size: 0.9rem; color: var(--fg-soft); line-height: 1.6; }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

/* ---------- page hero ---------- */
.page-hero {
  background:
    radial-gradient(90% 120% at 90% 0%, oklch(90% 0.05 120 / 0.4) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.page-hero-inner { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.page-hero .eyebrow { color: var(--accent-deep); }
.page-hero h1 { margin: 0.2rem 0 0.4rem; }
.crumb { font-size: 0.78rem; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.crumb a:hover { color: var(--accent-deep); }

/* ---------- about page ---------- */

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { padding: 1.6rem; border-radius: var(--radius-l); background: var(--surface); border: 1px solid var(--border); }
.value-card svg { color: var(--accent-deep); margin-bottom: 1rem; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 1rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

.ingredient-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 720px) { .ingredient-list { grid-template-columns: 1fr; } }
.ingredient {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.ingredient .ing-num { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--accent-deep); min-width: 1.6em; }
.ingredient h4 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.ingredient p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ---------- newsletter ---------- */
.newsletter { position: relative; overflow: hidden; }
.newsletter .section-head { margin-bottom: 1.75rem; }
.news-inner {
  background: var(--accent-deep);
  color: oklch(97% 0.015 170);
  border-radius: var(--radius-l);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 50% -10%, oklch(70% 0.12 170 / 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.news-inner h2 { color: oklch(100% 0 0); font-size: clamp(1.9rem, 3.2vw, 2.6rem); position: relative; }
.news-inner p { color: oklch(88% 0.02 170); margin: 0.8rem auto 1.8rem; max-width: 46ch; font-size: 0.95rem; position: relative; }
.news-form { display: flex; gap: 0.6rem; max-width: 460px; margin: 0 auto; position: relative; flex-wrap: wrap; justify-content: center; }
.news-form input {
  flex: 1; min-width: 220px;
  min-height: 50px;
  padding: 0.6em 1.2em;
  border-radius: 999px;
  border: 1px solid oklch(70% 0.12 170 / 0.5);
  background: oklch(100% 0 0 / 0.12);
  color: oklch(100% 0 0);
  font-size: 0.92rem;
}
.news-form input::placeholder { color: oklch(85% 0.02 170 / 0.7); }
.news-form input:focus { outline: none; border-color: oklch(100% 0 0); box-shadow: 0 0 0 3px oklch(100% 0 0 / 0.25); }
.news-ok { display: none; color: oklch(100% 0 0); font-size: 0.92rem; margin-top: 1rem; position: relative; }
.news-ok.is-visible { display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-fg); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-word { color: oklch(100% 0 0); }
.footer-brand .brand-sub { color: var(--footer-muted); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: var(--footer-muted); margin: 1.1rem 0 1.4rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(100% 0 0);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--footer-muted); transition: color 160ms var(--ease); }
.footer-col a:hover { color: var(--accent-bright); }
.social-row { display: flex; gap: 0.6rem; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(100% 0 0 / 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--footer-fg);
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.social-btn:hover { background: oklch(100% 0 0); color: var(--accent-ink); border-color: oklch(100% 0 0); }
.footer-bottom {
  border-top: 1px solid oklch(100% 0 0 / 0.1);
  padding-block: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--footer-muted);
}
.footer-bottom .legal { display: flex; gap: 1.4rem; }
.payments { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.payments span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; color: var(--footer-muted); border: 1px solid oklch(100% 0 0 / 0.14); border-radius: 4px; padding: 0.3em 0.6em; }

/* ---------- quick view modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 110;
  background: oklch(20% 0.02 240 / 0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms var(--ease);
}
.modal-scrim.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  border-radius: var(--radius-l);
  max-width: 920px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(14px) scale(0.98);
  transition: transform 260ms var(--ease);
  box-shadow: var(--shadow-lift);
}
.modal-scrim.is-open .modal { transform: none; }
@media (max-width: 760px) { .modal { grid-template-columns: 1fr; } }
.modal-media { background: var(--bg-warm); display: flex; align-items: center; justify-content: center; padding: 2rem; min-height: 320px; }
.modal-media svg { width: 74%; max-width: 320px; }
.modal-copy { padding: 2.2rem 2.2rem 2.4rem; position: relative; display: flex; flex-direction: column; gap: 0.5rem; }
.modal-copy .modal-close { position: absolute; top: 1rem; right: 1rem; }
.modal-copy h2 { font-size: 2rem; line-height: 1.08; }
.modal-copy .price { margin: 0.3rem 0; }
.modal-copy .price .now { font-size: 1.35rem; }
.modal-copy .lede { font-size: 0.92rem; margin-bottom: 0.5rem; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0; }
.modal-meta span { font-size: 0.76rem; font-weight: 600; color: var(--fg-soft); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 0.35em 0.85em; }
.modal-ctas { display: flex; gap: 0.8rem; align-items: center; margin-top: 1.1rem; flex-wrap: wrap; }
.modal-ctas .qty { margin-top: 0; }
.modal-ctas .btn-primary { flex: 1; min-width: 180px; }
.trust-strip { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.trust-strip li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; font-weight: 500; color: var(--muted); }
.trust-strip svg { color: var(--accent-deep); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 140%);
  z-index: 130;
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow-lift);
  transition: transform 320ms var(--ease);
  max-width: calc(100vw - 2rem);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { color: var(--accent-bright); flex: none; }

/* ---------- reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- misc ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-band p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; max-width: 46ch; }
