/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f6efe3;
  --bg-2:      #ece0cb;
  --paper:     #fffdfa;
  --ink:       #241c14;
  --ink-soft:  #3a2e21;
  --ink-mute:  #7a6b57;
  --accent:    #b0522c;
  --accent-2:  #6b7a3f;
  --gold:      #c99a3c;
  --line:      rgba(36,28,20,0.14);
  --shadow:    0 24px 48px -24px rgba(36,28,20,0.28);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --radius: 18px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-weight: 500; }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--paper); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
input, textarea, select { font: inherit; color: inherit; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(1180px, 100% - 2.6rem); margin-inline: auto; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--bg);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-head { max-width: 46ch; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: .6rem; }
.section-head p { color: var(--ink-mute); margin-top: .9rem; font-size: 1.05rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s;
}
.btn-primary { background: var(--accent); color: var(--paper); box-shadow: 0 14px 28px -14px rgba(176,82,44,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 32px -14px rgba(176,82,44,0.65); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-soft); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }
.pill { display: inline-flex; padding: .3rem .75rem; border-radius: 999px; background: var(--bg-2); font-size: .78rem; font-weight: 600; color: var(--ink-soft); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Navigation
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(246,239,227,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 12px 24px -20px rgba(36,28,20,0.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand { display: flex; align-items: baseline; gap: .5rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand em { font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: .95rem; font-weight: 500; }
.nav-links a { position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); transition: border-color .3s, transform .3s;
}
.icon-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 4px;
  border-radius: 999px; background: var(--accent); color: var(--paper);
  font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .3s var(--ease-out);
}
.cart-count.is-active { transform: scale(1); }
.nav-burger { display: none; }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 480;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px -24px rgba(36,28,20,0.35);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
  display: none;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; padding: .6rem 0; }
.mobile-menu a { padding: 1rem 1.4rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }
}

/* =============================================================
   5. Hero (botanical, no photography)
   ============================================================= */
.hero {
  position: relative; overflow: clip;
  padding-block: clamp(3rem, 10vw, 6rem) clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(201,154,60,0.22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 85%, rgba(107,122,63,0.18), transparent 60%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-title {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin-top: .9rem;
  max-width: 15ch;
}
.hero-sub { margin-top: 1.3rem; font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero-trust { display: flex; gap: 1.6rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-trust div { font-size: .82rem; color: var(--ink-mute); }
.hero-trust strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }

.hero-art { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.hero-art svg { width: 100%; height: 100%; }
.hero-orbit {
  position: absolute; inset: 6%; border-radius: 50%; border: 1px dashed var(--line);
  animation: spin 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-orbit { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   6. Marquee ticker
   ============================================================= */
.marquee-wrap {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding-block: .9rem;
}
.marquee { display: flex; width: max-content; gap: 2.5rem; animation: marquee 32s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee { animation-duration: 90s; } }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap; }
.marquee span::after { content: "·"; margin-left: 2.5rem; color: var(--accent); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   7. Story / manifesto
   ============================================================= */
.manifesto { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.manifesto-num { font-family: var(--serif); font-size: 3.2rem; color: var(--accent); }
.manifesto p { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--ink-soft); max-width: 62ch; }
@media (max-width: 720px) { .manifesto { grid-template-columns: 1fr; } }

/* =============================================================
   8. Category chips
   ============================================================= */
.cat-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.cat-chip {
  padding: .65rem 1.3rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .9rem; font-weight: 600; transition: all .3s var(--ease-out);
}
.cat-chip:hover, .cat-chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* =============================================================
   9. Product grid & swatch cards (no photography — illustrated)
   ============================================================= */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper); border-radius: var(--radius); overflow: clip;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-swatch {
  position: relative; aspect-ratio: 4 / 3.1; display: grid; place-items: center;
  overflow: clip;
}
.product-swatch::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(0,0,0,0.14), transparent 55%);
}
.product-card:hover .product-swatch-icon { transform: scale(1.08) rotate(-4deg); }
.product-swatch-icon { position: relative; z-index: 1; width: 46%; transition: transform .5s var(--ease-out); filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18)); }
.product-origin {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
  padding: .3rem .6rem; border-radius: 999px; background: rgba(255,255,255,0.72); color: var(--ink-soft);
}
.product-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.product-body h3 { font-size: 1.18rem; }
.product-blurb { font-size: .88rem; color: var(--ink-mute); flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: .3rem; }
.product-size { font-size: .8rem; color: var(--ink-mute); }
.product-price { font-family: var(--serif); font-size: 1.25rem; color: var(--accent); }
.product-add {
  margin-top: .7rem; width: 100%; padding: .75rem; border-radius: 999px;
  background: var(--ink); color: var(--bg); font-weight: 600; font-size: .9rem;
  transition: background .3s, transform .3s var(--ease-out);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.product-add:hover { background: var(--accent); transform: translateY(-2px); }
.product-add.is-added { background: var(--accent-2); }

/* Spice hue palette (swatch backgrounds) */
.swatch-saffron       { background: radial-gradient(120% 120% at 30% 20%, #f4b731, #c9861f 55%, #8f5a12); }
.swatch-paprika        { background: radial-gradient(120% 120% at 30% 20%, #e46a3c, #b0522c 55%, #7a331a); }
.swatch-paprika-hot     { background: radial-gradient(120% 120% at 30% 20%, #c9432c, #8f2317 55%, #5c130c); }
.swatch-turmeric        { background: radial-gradient(120% 120% at 30% 20%, #f3c94a, #d99c1f 55%, #a06e12); }
.swatch-cumin           { background: radial-gradient(120% 120% at 30% 20%, #b98a4a, #8a6430 55%, #5e4520); }
.swatch-cinnamon        { background: radial-gradient(120% 120% at 30% 20%, #b06a3f, #7c4425 55%, #522c17); }
.swatch-ras             { background: radial-gradient(120% 120% at 30% 20%, #d97a3a, #a2531f 55%, #6e3512); }
.swatch-curry           { background: radial-gradient(120% 120% at 30% 20%, #e0a72e, #b47e14 55%, #7c560d); }
.swatch-zaatar          { background: radial-gradient(120% 120% at 30% 20%, #93a35c, #6b7a3f 55%, #465127); }
.swatch-smoked-salt      { background: radial-gradient(120% 120% at 30% 20%, #8b8178, #5c534b 55%, #34302b); }
.swatch-vanilla         { background: radial-gradient(120% 120% at 30% 20%, #6b4a30, #4a3020 55%, #2c1c12); }
.swatch-five-spice       { background: radial-gradient(120% 120% at 30% 20%, #a3392c, #6e2119 55%, #3f110c); }

/* =============================================================
   10. Bento featured (index)
   ============================================================= */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 215px; gap: 1.1rem; }
.bento .product-card { grid-column: span 2; grid-row: span 2; }
.bento .product-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento .product-card:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.bento .product-card:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.bento .product-card:nth-child(n+4) { grid-column: span 1; grid-row: span 1; }
.bento .product-card .product-body { padding: .65rem .85rem; flex: 0 0 auto; gap: .3rem; }
.bento .product-card h3 { font-size: 1.02rem; }
.bento .product-card .product-add { padding: .55rem; font-size: .82rem; margin-top: .35rem; }
.bento .product-swatch { aspect-ratio: unset; flex: 1 1 auto; min-height: 0; }
.bento .product-card:nth-child(n+4) .product-blurb,
.bento .product-card:nth-child(n+4) .product-size { display: none; }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .bento .product-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* =============================================================
   11. Testimonials
   ============================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.testi-card p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--ink-soft); }
.testi-name { margin-top: 1.1rem; font-weight: 700; font-size: .92rem; }
.testi-role { font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   12. FAQ
   ============================================================= */
.faq-list { max-width: 62ch; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; text-align: left; font-weight: 600; font-size: 1.02rem;
}
.faq-q .plus { transition: transform .35s var(--ease-out); font-size: 1.3rem; color: var(--accent); }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding-bottom: 1.25rem; color: var(--ink-mute); max-width: 58ch; }

/* =============================================================
   13. Newsletter / CTA
   ============================================================= */
.cta-band {
  background: var(--ink); color: var(--bg); border-radius: 28px;
  padding: clamp(2.4rem, 6vw, 4rem); text-align: center;
  position: relative; overflow: clip;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 140%;
  background: radial-gradient(45% 60% at 50% 0%, rgba(201,154,60,0.35), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--bg); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { color: rgba(246,239,227,0.75); margin-top: .8rem; }
.cta-form { display: flex; gap: .8rem; justify-content: center; margin-top: 1.8rem; flex-wrap: wrap; }
.cta-form input {
  padding: .9rem 1.2rem; border-radius: 999px; border: 1px solid rgba(246,239,227,0.3);
  background: rgba(246,239,227,0.08); color: var(--bg); min-width: 260px;
}
.cta-form input::placeholder { color: rgba(246,239,227,0.55); }
.cta-form .btn-primary { background: var(--gold); color: var(--ink); box-shadow: none; }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3rem 2.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--ink-mute); margin-bottom: .9rem; }
.footer li { margin-bottom: .55rem; font-size: .92rem; }
.footer li a:hover { color: var(--accent); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   15. Cart drawer
   ============================================================= */
.cart-overlay {
  position: fixed; inset: 0; z-index: 900; background: rgba(36,28,20,0.4);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 901;
  width: min(420px, 100%); background: var(--paper); box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  transform: translateX(100%); transition: transform .45s var(--ease-out);
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.4rem 1rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { color: var(--ink-mute); text-align: center; padding: 3rem 1rem; }
.cart-line { display: grid; grid-template-columns: 54px 1fr auto; gap: .9rem; align-items: center; }
.cart-swatch { width: 54px; height: 54px; border-radius: 12px; }
.cart-line h4 { font-size: .95rem; }
.cart-line .cart-origin { font-size: .75rem; color: var(--ink-mute); }
.qty-row { display: flex; align-items: center; gap: .5rem; margin-top: .4rem; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.qty-btn:hover { border-color: var(--ink); }
.cart-line-price { text-align: right; font-family: var(--serif); font-weight: 600; }
.cart-remove { font-size: .74rem; color: var(--ink-mute); text-decoration: underline; margin-top: .3rem; }
.cart-foot { border-top: 1px solid var(--line); padding: 1.3rem 1.4rem 1.6rem; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 1rem; }
.cart-subtotal strong { font-family: var(--serif); font-size: 1.3rem; color: var(--accent); }
.cart-foot .btn { width: 100%; }

/* =============================================================
   16. Checkout / forms
   ============================================================= */
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.form-block { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.form-block + .form-block { margin-top: 1.4rem; }
.form-block h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: .8rem 1rem; border-radius: 12px; border: 1px solid var(--line); background: var(--bg);
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.pay-options { display: flex; flex-direction: column; gap: .8rem; }
.pay-option {
  display: flex; align-items: flex-start; gap: .8rem; padding: 1rem 1.1rem;
  border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .3s, background .3s;
}
.pay-option:has(input:checked) { border-color: var(--accent); background: rgba(176,82,44,0.06); }
.pay-option input { margin-top: .2rem; }
.pay-option strong { display: block; font-size: .95rem; }
.pay-option span { font-size: .82rem; color: var(--ink-mute); }
.pay-option .soon { display: inline-block; margin-left: .5rem; font-size: .68rem; padding: .15rem .5rem; border-radius: 999px; background: var(--bg-2); color: var(--ink-mute); }
.order-summary { position: sticky; top: calc(var(--nav-h) + 1.4rem); }
.order-line { display: flex; justify-content: space-between; font-size: .92rem; margin-bottom: .7rem; color: var(--ink-soft); }
.order-total { display: flex; justify-content: space-between; font-size: 1.15rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.order-total strong { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); }
.bank-details { margin-top: .8rem; padding: 1rem; border-radius: 12px; background: var(--bg-2); font-size: .88rem; display: none; }
.bank-details.is-visible { display: block; }
.bank-details dt { font-weight: 700; margin-top: .5rem; }
.bank-details dt:first-child { margin-top: 0; }

/* =============================================================
   17. Misc pages (gracias)
   ============================================================= */
.state-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-block: 6rem; }
.state-page .eyebrow { justify-content: center; }
.state-page h1 { margin-top: 1rem; font-size: clamp(2.2rem, 5vw, 3.2rem); }
.state-page p { margin-top: 1rem; color: var(--ink-mute); max-width: 46ch; margin-inline: auto; }
.state-page .btn { margin-top: 2rem; }

/* =============================================================
   18. Toast
   ============================================================= */
.toast {
  position: fixed; bottom: 1.6rem; left: 50%; z-index: 950;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--ink); color: var(--bg); padding: .9rem 1.4rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600; transition: transform .4s var(--ease-out), opacity .4s;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.4);
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* =============================================================
   19. Responsive misc
   ============================================================= */
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 320px; margin-inline: auto; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
