
/* ============================================================
   ANNOUNCEMENT BAR (herbaria-style, sticky at very top)
   The visual styling of the topbar (announcements + search) lives
   in css/nav-search.css under .topbar. We just push the nav down.
   ============================================================ */
body:has(.topbar) .nav { top: 40px; }
body:has(.topbar) .nav--scrolled { top: 0; }
/* ============================================================
   ESSENCE OF HOPE — Design System
   Wellness Rooted in Nature
   ============================================================ */

:root {
  /* Colour palette — sampled from the PDF design */
  --cream:        #F1ECE2;   /* primary background */
  --cream-soft:   #F5F0E8;   /* secondary background */
  --cream-deep:   #E8E0D2;   /* card / inset background */
  --ivory:        #FAF7F1;   /* lightest section */
  --bone:         #EFE7DA;   /* subtle dividers */
  --forest:       #2A7050;   /* deep brand green */
  --forest-2:     #1E5439;   /* dark section bg */
  --sage:         #5C8060;   /* mid green */
  --sage-light:   #6B7C5C;   /* light sage */
  --moss:         #1E5439;   /* darkest green */
  --olive:        #5C6240;   /* olive accent */
  --gold:         #B08B57;   /* primary gold accent (decorative only — fails AA for body text) */
  --gold-light:   #C9A876;   /* light gold (backgrounds only) */
  --gold-deep:    #8B6B3E;   /* deep gold (large text ≥18pt or borders) */
  --gold-text:    #75582D;   /* text-safe gold — AA body on cream (5.6:1) — use for eyebrow/body */
  --ink:          #1A1A1A;   /* primary text */
  --ink-2:        #2B2B2B;   /* secondary text */
  --muted:        #6B6B6B;   /* muted text */
  --muted-2:      #6B6B6B;   /* extra muted (was #8A8A8A — fails AA; now matches --muted) */
  --line:         rgba(26,26,26,0.12);
  --line-light:   rgba(26,26,26,0.08);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script:'Petit Formal Script', 'Dancing Script', cursive;

  /* Layout */
  --max:    1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;

  /* Spacing scale (4px base, multiples of 2 for fine adjustments) */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;
  --space-13: 120px;
  --space-14: 160px;

  /* Typography scale */
  --fs-xs:    0.75rem;    /* 12px */
  --fs-sm:    0.875rem;   /* 14px */
  --fs-base:  1rem;       /* 16px */
  --fs-md:    1.125rem;   /* 18px */
  --fs-lg:    1.25rem;    /* 20px */
  --fs-xl:    1.5rem;     /* 24px */
  --fs-2xl:   2rem;       /* 32px */
  --fs-3xl:   2.5rem;     /* 40px */
  --fs-4xl:   3rem;       /* 48px */
  --fs-display: 4rem;     /* 64px+ */
  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-base:   1.6;
  --lh-loose:  1.8;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============== Reset ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

/* ---------- Accessible focus ring (a11y polish) ---------- */
:focus-visible {
  outline: 2px solid var(--gold-deep, #8B6B3E);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-deep, #8B6B3E);
  outline-offset: 3px;
}
/* For dark backgrounds (the forest section) */
.section--forest :focus-visible,
[data-bg="dark"] :focus-visible {
  outline-color: var(--gold, #B08B57);
}
/* Make sure the focus ring doesn't clip the input borders */
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline-offset: 1px;
}
/* Reduce focus ring thickness for large h1 / h2 elements */
h1:focus-visible, h2:focus-visible, h3:focus-visible {
  outline-offset: 6px;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink); opacity: 0.85;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--forest); color: var(--cream); }

/* ============== Typography ============== */

h1, h2, h3, h4, h5, h6 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
p  { line-height: 1.7; color: var(--ink-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--cream { color: var(--cream); opacity: 0.8; }
.eyebrow--gold { color: var(--gold-text); }


/* ============== Layout helpers ============== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

section { position: relative; }

/* ============== Navigation ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  overflow: visible;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(241, 236, 226, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--line-light);
}
.nav--dark.nav--scrolled { background: rgba(42, 112, 80, 0.92); }

.nav__brand { display: flex; align-items: center; gap: 18px; color: var(--ink); flex-shrink: 0; }
.nav__logo {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.nav__logo img, .nav__logo svg { width: 100%; height: 100%; display: block; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; shape-rendering: geometricPrecision; }
.nav__title { display: flex; flex-direction: column; line-height: 1.15; gap: 2px; white-space: nowrap; min-width: 0; }
.nav__title-main { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; line-height: 1.1; }
.nav__title-sub  { font-family: var(--serif); font-size: 0.88rem; font-style: italic; color: var(--muted); white-space: nowrap; }
@media (max-width: 1500px) {
  .nav__title-sub { display: none; }
}
/* Hide kanji + tagline in nav — only shown in footer */
.nav__title-ja, .nav__title-tag { display: none; }

.nav--dark .nav__title-sub { color: rgba(241,236,226,0.7); }

.nav__links { display: flex; gap: clamp(6px, 0.8vw, 18px); justify-content: center; min-width: 0; flex-wrap: nowrap; padding-right: 16px; }

/* At narrower viewports, hide the "Connect" pill button in the nav (still in mobile menu) */
@media (max-width: 1900px) {
  .nav__cta .btn-nav { display: none; }
}
/* At narrower viewports, also hide the wishlist heart (still in mobile menu) */
@media (max-width: 1750px) {
  .nav__cta .nav__wishlist { display: none; }
}
/* Hide the Letters link from desktop nav at narrower widths — it stays in footer + mobile menu */
@media (max-width: 1500px) {
  .nav__links a[href="letters.html"] { display: none; }
}
.nav__link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink); opacity: 0.85;
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; left: 0; }
.nav__link--active { font-weight: 500; }

.nav--dark .nav__link { color: var(--cream); }

.nav__cta { display: flex; justify-content: flex-end; align-items: center; gap: 8px; min-width: 0; flex-shrink: 0; }
.btn-nav {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink); opacity: 0.85;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--ink); color: var(--cream); }
.nav--dark .btn-nav { border-color: var(--cream); color: var(--cream); }
.nav--dark .btn-nav:hover { background: var(--cream); color: var(--ink); }

.nav__signin-link { white-space: nowrap; display: inline-flex; align-items: center; padding: 6px 14px; font-size: 0.85rem; color: var(--ink); opacity: 0.85; }
.nav__signin-link:hover { opacity: 1; }

/* Currency switcher — compact icon-only, no label, tucked between Connect and cart */
.currency-switch { display: inline-flex; align-items: center; padding: 4px 8px !important; }
.currency-switch__label { display: none; }
.currency-switch select {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(42, 112, 80, 0.2);
  background: transparent;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.04em;
}
.currency-switch select:hover { border-color: var(--ink); }
@media (max-width: 1500px) { .currency-switch { display: none !important; } }
@media (max-width: 900px)  { .currency-switch { display: none !important; } }

.nav__burger { display: none; }

/* Mobile menu — closed by default, off-screen and out of layout */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: 100px var(--gutter) 60px;
  flex-direction: column; gap: 32px;
  transform: translateX(100vw);
  transition: transform 0.6s var(--ease);
  display: none;
}
.mobile-menu[aria-hidden="false"],
.mobile-menu--open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu__link {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink); opacity: 0.85;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.mobile-menu__close {
  position: absolute; top: 24px; right: var(--gutter);
  font-size: 1.4rem; cursor: pointer;
}

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__logo { width: 68px; height: 68px; }
  .nav__title-main { font-size: 1.18rem; }
  .nav__title-sub { font-size: 0.88rem; }
  .nav__title-ja { font-size: 0.78rem; }
  .nav__burger {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border: 1px solid var(--ink);
    border-radius: 50%;
  }
  .nav__burger span {
    display: block; width: 18px; height: 1.5px; background: var(--ink);
    position: relative;
  }
  .nav__burger span::before, .nav__burger span::after {
    content: ''; position: absolute; left: 0;
    width: 18px; height: 1.5px; background: var(--ink);
  }
  .nav__burger span::before { top: -6px; }
  .nav__burger span::after  { top: 6px; }
}

/* Very small screens: hide sub/ja brand text, tighter nav */
@media (max-width: 480px) {
  .nav {
    padding: 12px 16px !important;
    gap: 8px !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .nav__brand { gap: 12px !important; min-width: 0; max-width: 100%; }
  .nav__logo { width: 60px !important; height: 60px !important; flex-shrink: 0; }
  .nav__title { min-width: 0; overflow: hidden; }
  .nav__title-sub, .nav__title-ja, .nav__title-tag { display: none !important; }
  .nav__title-main { font-size: 0.95rem !important; letter-spacing: 0.04em !important; white-space: nowrap; }
  .nav__burger { width: 36px !important; height: 36px !important; flex-shrink: 0; }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--forest); transform: translateY(-1px); }
.btn--ghost   { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--cream   { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--ink); color: var(--cream); }
.btn--lg { padding: var(--space-5) 36px; font-size: 1rem; }

.btn__arrow {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink); opacity: 0.85;
  font-size: 0.7rem;
  transition: transform 0.3s var(--ease);
}
.btn--primary .btn__arrow { background: var(--cream); color: var(--ink); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============== Hero (Home) ============== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 60vh;
  padding-top: 130px;
  background: var(--cream);
}
.hero__content {
  padding: 30px var(--gutter) 50px;
  display: flex; flex-direction: column; justify-content: flex-start;
  max-width: 640px;
  width: 100%;
  gap: 20px;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: var(--space-3);
}
.hero__eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }

.hero__eyebrow-sep { opacity: 0.4; margin: 0 4px; }
.hero__eyebrow-meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--ink, #1A1A1A);
  opacity: 0.55;
}

.hero__title {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--ink); opacity: 0.85;
}
.hero__title em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--ink); opacity: 0.85;
}
.hero__desc {
  font-size: 1.02rem;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 4px;
  line-height: 1.65;
}
.hero__cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  background: #2A7050;  /* brand forest green, fills any letterbox */
  animation: slowZoom 18s var(--ease-soft) forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}


/* Hero decorative enso — subtle brand mark in the empty space */
.hero__decoration {
  position: absolute;
  top: 200px; left: -80px;
  width: 360px; height: 360px;
  color: var(--gold-deep);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.hero__decoration svg { width: 100%; height: 100%; display: block; }
.hero__content { position: relative; z-index: 1; }
.hero__image { position: relative; z-index: 1; }

/* Hero scroll indicator — gentle "more below" cue */
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--gold-deep, #8A6D3B);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease, gap 0.3s ease;
}
.hero__scroll:hover { opacity: 1; color: var(--gold-deep); }
.hero__scroll-arrow {
  display: inline-block;
  animation: scrollBounce 2.2s ease-in-out infinite;
  font-size: 1.1rem;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (max-width: 900px) {
  .hero__scroll { display: none; }
}


.hero__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--cream) 0%, transparent 18%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero__content { padding: 16px var(--gutter) 24px; max-width: 100%; gap: 14px; }
  .hero__image { height: 50vh; min-height: 320px; order: 2; }
  .hero__image-overlay { background: linear-gradient(180deg, transparent 0%, transparent 70%, var(--cream) 100%); }
}

/* ============== Section common ============== */
.section { padding: clamp(28px, 3.4vw, 48px) 0; scroll-margin-top: 110px; }
.section--cream    { background: var(--cream); }
.section--soft     { background: var(--cream-soft); }
.section--ivory    { background: var(--ivory); }
.section--forest   { background: var(--forest); color: var(--cream); }
.section--forest-2 { background: var(--forest-2); color: var(--cream); }

.section--forest h1, .section--forest h2, .section--forest h3,
.section--forest-2 h1, .section--forest-2 h2, .section--forest-2 h3,
.section--sage h1, .section--sage h2, .section--sage h3,
.section--forest p, .section--forest-2 p, .section--sage p, .section--dark p { color: rgba(241,236,226,0.85); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(28px, 3.5vw, 48px); scroll-margin-top: 110px; }
.section__head__eyebrow { margin-bottom: 18px; }
.section__head__title { margin-bottom: 22px; }
.section__head__desc { color: var(--muted); font-size: 1.02rem; }
.section--forest .section__head__desc, .section--forest-2 .section__head__desc,
.section--sage .section__head__desc, .section--dark .section__head__desc { color: rgba(241,236,226,0.75); }


/* Browse-all tile (4th item in featured products) */
.product-card--browse .product-card__media--browse {
  background: linear-gradient(135deg, var(--cream-soft, #F5F0E5) 0%, var(--cream, #FBF8F1) 100%);
  display: grid; place-items: center;
  border: 1px dashed var(--gold-deep, #8A6D3B);
}
.product-card__browse-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--gold-deep, #8A6D3B);
}
.product-card__browse-icon {
  font-size: 48px; line-height: 1; opacity: 0.7;
  width: 88px; height: 88px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease, ease);
}
.product-card--browse:hover .product-card__browse-icon {
  opacity: 1; transform: scale(1.05);
  background: var(--gold-deep); color: var(--cream);
}
.product-card__browse-text {
  font-family: var(--serif, serif);
  font-size: 18px; font-style: italic;
  text-align: center; line-height: 1.3;
}

/* ============== Page 1: Somatic Tools (Product grid) ============== */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.product-row--reverse { grid-template-columns: 1.4fr 1fr; }
.product-row--reverse .product-row__media { order: 2; }

.product-row__copy { max-width: 460px; }
.product-row__copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 24px; }
.product-row__copy p { color: var(--ink-2); margin-bottom: 24px; }

.product-row__media {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: var(--space-4);
  align-items: end;
}
.product-row__media img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius);
}
.product-row__media img:nth-child(2) { aspect-ratio: 1/1; }
.product-row__media img:nth-child(3) { aspect-ratio: 1/1; }

@media (max-width: 800px) {
  .product-row, .product-row--reverse { grid-template-columns: 1fr; gap: 40px; }
  .product-row--reverse .product-row__media { order: 0; }
  .product-row__media { grid-template-columns: 1fr 1fr; }
  .product-row__media img:first-child { grid-column: span 2; aspect-ratio: 4/3; }
}

/* ============== Product card detail row ============== */
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: 60px;
}
.product-card {
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(26,26,26,0.08); }
.product-card__img { aspect-ratio: 4/5; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-soft); }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 22px 24px 28px; }
.product-card__title { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 4px; }
.product-card__price { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.05em; }
@media (max-width: 800px) { .product-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .product-cards { grid-template-columns: 1fr; } }

/* ============== Feature banner (Wellness is not a trend) ============== */
.feature-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: 60px 0;
}
.feature-banner__icon {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.feature-banner__icon img { width: 100%; height: 100%; object-fit: cover; }
.feature-banner h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.2; margin-bottom: 16px; max-width: 580px; }
.feature-banner p  { color: var(--ink-2); max-width: 640px; }

@media (max-width: 700px) { .feature-banner { grid-template-columns: 1fr; text-align: center; } .feature-banner__icon { margin: 0 auto; } }

/* ============== Section heading w/ underline ============== */
.heading-deco { text-align: center; margin-bottom: 60px; }
.heading-deco__eyebrow { display: block; margin-bottom: 18px; }
.heading-deco__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 18px;
  position: relative; display: inline-block;
  padding: 0 30px;
}
.heading-deco__title::before, .heading-deco__title::after {
  content: ''; position: absolute; top: 50%;
  width: 30px; height: 1px; background: currentColor;
}
.heading-deco__title::before { right: 100%; }
.heading-deco__title::after  { left: 100%; }
.heading-deco__sub { color: var(--muted); max-width: 720px; margin: 0 auto; font-size: 0.98rem; }

/* ============== Offerings (5-step with images) ============== */
.offerings { display: grid; gap: var(--space-6); margin-top: 60px; }
.offerings__row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--space-6);
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.offerings__row--reverse { grid-template-columns: 1.4fr 0.9fr; }
.offerings__row--reverse .offerings__row__media { order: 2; }
.offerings__row:hover { transform: translateY(-2px); }
.offerings__row__media { aspect-ratio: 4/3; overflow: hidden; }
.offerings__row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-soft); }
.offerings__row:hover .offerings__row__media img { transform: scale(1.05); }
.offerings__row__body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.offerings__row__num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-deep); margin-bottom: 12px; }
.offerings__row__title { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 14px; }
.offerings__row__text { color: var(--ink-2); font-size: 0.95rem; }

@media (max-width: 800px) {
  .offerings__row, .offerings__row--reverse { grid-template-columns: 1fr; }
  .offerings__row--reverse .offerings__row__media { order: 0; }
  .offerings__row__media { aspect-ratio: 16/9; }
}

/* ============== Pillar / Bridge text section ============== */
.bridge-text {
  max-width: 920px; margin: 0 auto;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.65;
  color: var(--ink); opacity: 0.85;
  text-align: center;
}
.bridge-text strong { font-weight: 600; color: var(--gold-deep); font-style: italic; font-family: var(--serif); }

/* ============== Quote block ============== */
.quote {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px);
  align-items: center; padding: clamp(40px, 5vw, 72px) 0;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold-deep);
  line-height: 0.6;
  margin-bottom: 30px;
}
.quote__text { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.35; color: var(--ink); }
.quote__attr { margin-top: 30px; font-family: var(--script); font-style: italic; color: var(--gold-deep); font-size: 1.5rem; }
.quote__media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.quote__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
.quote__media img:nth-child(2) { aspect-ratio: 1/1; margin-top: 40px; }
.quote__media img:nth-child(3) { grid-column: span 2; aspect-ratio: 4/3; margin-top: 0; }

@media (max-width: 800px) {
  .quote { grid-template-columns: 1fr; }
  .quote__media { grid-template-columns: 1fr 1fr; }
}

/* ============== Core expertise / Categories grid ============== */
.expertise {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.expertise__head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 24px; }
.expertise__categories {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--space-5);
}
.expertise__cat { text-align: center; }
.expertise__cat__icon {
  width: 36px; height: 36px; margin: 0 auto 14px;
  color: var(--cream);
}
.expertise__cat__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.expertise__cat__title { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 14px; }
.expertise__cat__list { list-style: none; font-size: 0.82rem; color: rgba(241,236,226,0.7); line-height: 1.7; }
.expertise__cat__list li::before { content: '·'; margin-right: 6px; color: var(--gold); }

@media (max-width: 800px) {
  .expertise { grid-template-columns: 1fr; }
  .expertise__categories { grid-template-columns: 1fr 1fr; }
}

/* ============== Signature experiences cards ============== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: 60px;
}
.experience-card {
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.experience-card:hover { transform: translateY(-4px); }
.experience-card__img { aspect-ratio: 4/5; overflow: hidden; }
.experience-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-soft); }
.experience-card:hover .experience-card__img img { transform: scale(1.04); }
.experience-card__body { padding: var(--space-6) 26px 28px; }
.experience-card__title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 10px; }
.experience-card__text { color: var(--ink-2); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 800px) { .experience-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .experience-grid { grid-template-columns: 1fr; } }

/* ============== Workshop / Programs list ============== */
.program-list { margin-top: 40px; }
.program-list__item {
  display: flex; gap: 30px; padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: flex-start;
}
.program-list__item:last-child { border-bottom: 0; }
.program-list__cat {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  flex: 0 0 280px;
  color: var(--ink); opacity: 0.85;
}
.program-list__sub {
  flex: 1;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.program-list__sub li::before { content: '·'; margin-right: 8px; color: var(--gold); }

@media (max-width: 700px) {
  .program-list__item { flex-direction: column; gap: var(--space-3); }
  .program-list__cat { flex: 1; }
}

/* ============== Elevated rituals — split hero ============== */
.split-ritual {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 540px;
  background: var(--sage);
  color: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}
.split-ritual__text { padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.split-ritual__text h2 { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.split-ritual__text h2 em { color: var(--gold-text); font-style: italic; }
.split-ritual__text p  { color: rgba(241,236,226,0.85); }
.split-ritual__text .arrow { color: var(--gold); font-size: 1.4rem; margin: 18px 0; }
.split-ritual__image { background-size: cover; background-position: center; }
@media (max-width: 800px) { .split-ritual { grid-template-columns: 1fr; } .split-ritual__image { min-height: 320px; } }

/* ============== Ritual Objects two-column gallery ============== */
.gallery-duo {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.gallery-duo__media { aspect-ratio: 4/5; }
.gallery-duo__media img { width: 100%; height: 100%; object-fit: cover; }
.gallery-duo__text { padding: clamp(36px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.gallery-duo__text h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 18px; }
.gallery-duo__text em { font-style: italic; color: var(--gold-deep); }
.gallery-duo__text p { color: var(--ink-2); margin-bottom: 14px; }

.gallery-list {
  margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5);
}
.gallery-list__item h4 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 4px; }
.gallery-list__item p { color: var(--muted); font-size: 0.85rem; }

@media (max-width: 800px) { .gallery-duo { grid-template-columns: 1fr; } .gallery-duo__media { aspect-ratio: 16/10; } .gallery-list { grid-template-columns: 1fr; } }

/* ============== CTA Circle (Connect) ============== */
.connect-cta {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-6);
  padding: 80px 0;
}
.connect-cta__line {
  width: 100%; max-width: 600px; height: 1px; background: var(--line);
  position: relative;
}
.connect-cta__circle {
  width: 180px; height: 180px;
  background: var(--gold-deep); /* signature blue from PDF */
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.02em;
  position: relative; z-index: 2;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-decoration: none;
}
.connect-cta__circle:hover { transform: scale(1.05); box-shadow: 0 30px 60px rgba(91, 91, 214, 0.35); }

/* ============== Footer ============== */
.footer {
  background: var(--cream);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid var(--line-light);
}
.footer__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px;
}
.footer__brand p { color: var(--muted); margin-top: 16px; max-width: 320px; font-size: 0.92rem; line-height: 1.55; }
.footer__brand .nav__logo { width: 140px; height: 140px; }
.footer__brand .nav__title-main { font-size: 1.5rem; }
.footer__brand .nav__title-sub { font-size: 1.05rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--ink-2); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-deep); }
.footer__bottom {
  max-width: var(--max); margin: 60px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line-light);
  font-size: 0.82rem; color: var(--muted);
}
.footer__admin-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--muted); opacity: 0.7;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
  letter-spacing: 0.04em;
}
.footer__admin-link:hover { color: var(--ink); opacity: 1; }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  width: 38px; height: 38px; border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.footer__socials a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__bottom { flex-direction: column; gap: var(--space-3); } .footer__brand .nav__logo { width: 88px; height: 88px; } }

/* ============== About / Founder ============== */
.founder-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 100px);
  padding: 130px var(--gutter) 80px;
  background: var(--cream);
}
.founder-hero__title { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 12px; line-height: 1.05; }
.founder-hero__text  { font-size: 1.02rem; line-height: 1.65; color: var(--ink-2); margin-bottom: 16px; max-width: 540px; }
.founder-hero__script { font-family: var(--script); font-style: italic; color: var(--gold-deep); font-size: 1.4rem; margin-top: 24px; }
.founder-hero__eyebrow { color: var(--gold-deep); margin-bottom: 14px; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; display: flex; align-items: center; gap: var(--space-3); }
.founder-hero__ja { display: block; margin-bottom: 14px; }
.founder-hero__closing { font-style: italic; color: var(--ink-2); text-align: center; max-width: 520px; margin: 32px auto 0; line-height: 1.7; font-size: 1.02rem; }
.founder-hero__media {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 0;
  padding-top: 18px;
}
.founder-hero__portrait {
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
}
.founder-hero__caption {
  margin: 36px auto 0;
  padding: 24px 8px 0;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-2, #3A3A3A);
  text-align: center;
  max-width: 360px;
  position: relative;
}
.founder-hero__caption::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 1px;
  background: var(--gold-deep, #8B6B3E);
  opacity: 0.6;
}
.founder-hero__ingredients {
  margin: 64px auto 0;
  text-align: center;
  max-width: 360px;
}
.founder-hero__ingredient-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-2, #3A3A3A);
  letter-spacing: 0.02em;
}
.founder-hero__ingredient-list li {
  position: relative;
}
.founder-hero__ingredient-list li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -10px;
  color: var(--gold-deep, #8B6B3E);
  opacity: 0.5;
}
.founder-hero__img {
  width: 360px; height: 480px; object-fit: cover;
  border-radius: 200px 200px 24px 24px;
}
.founder-hero__leaf {
  position: absolute; bottom: 40px; left: -30px;
  width: 120px; opacity: 0.5;
  pointer-events: none;
}
.founder-hero__badge {
  position: absolute; top: 30px; right: 0;
  width: 100px; height: 100px;
  background: var(--gold-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
}
.founder-hero__badge svg { width: 32px; height: 32px; }
.founder-hero__divider {
  width: 100%; max-width: 600px; height: 1px; background: var(--line);
  margin: 0 auto;
}

@media (max-width: 800px) {
  .founder-hero { grid-template-columns: 1fr; padding-top: 180px; }
  .founder-hero__img { width: 280px; height: 380px; }
}

/* ============== Editorial italic-serif h2 pattern ==============
   A h2 that uses the serif font in italic. Used for major section
   breaks where the brand wants a "letter" or "magazine" feel,
   instead of the corporate all-caps treatment. */
.h2-italic, h2.h2-italic {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: none;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  color: var(--ink, #1A1A1A);
}

/* ============== Concern / Use row (Dhun-inspired, EOH voice) ==============
   A horizontal row of circular images by ritual concern. Quiet photos
   + italic-serif labels. Brand-true adaptation of Dhun's "Recovery /
   Body / Face / Mind" pattern — but for EOH's ritual uses. */
.concern-row {
  background: var(--bone);
  padding: clamp(60px, 8vw, 100px) 0;
}
.concern-row__head {
  text-align: center;
  margin-bottom: 48px;
}
.concern-row__eyebrow {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted, #6A6A6A);
  display: block;
  margin-bottom: 14px;
}
.concern-row__title {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink, #1A1A1A);
  margin: 0 0 14px;
}
.concern-row__sub {
  font-size: 0.95rem;
  color: var(--ink-2, #3A3A3A);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.concern-row__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.concern-row__item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s var(--ease);
}
.concern-row__item:hover { transform: translateY(-4px); }
.concern-row__circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  position: relative;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px rgba(42, 112, 80, 0.06);
}
.concern-row__circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.98);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.concern-row__item:hover .concern-row__circle img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}
.concern-row__kanji {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: 0.78rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  background: rgba(42, 112, 80, 0.7);
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.concern-row__label {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink, #1A1A1A);
  line-height: 1.3;
  display: block;
}
.concern-row__sublabel {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #6A6A6A);
  display: block;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .concern-row__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .concern-row__item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ============== Sanctuary / Inside the Studio ============== */
.sanctuary {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.sanctuary__media { aspect-ratio: 3/4; border-radius: 200px 200px 24px 24px; overflow: hidden; }
.sanctuary__media img { width: 100%; height: 100%; object-fit: cover; }
.sanctuary__copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.sanctuary__copy p { color: var(--ink-2); }
@media (max-width: 800px) { .sanctuary { grid-template-columns: 1fr; } }

/* ============== Shared Experiences (community image + text) ============== */
.shared-exp {
  background: var(--bone);
  padding: clamp(80px, 10vw, 140px) 0;
}
.shared-exp__title { text-align: center; font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 40px; }
.shared-exp__row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.shared-exp__row__media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.shared-exp__row__media img { width: 100%; height: 100%; object-fit: cover; }
.shared-exp__row__copy h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin-bottom: 18px; }
.shared-exp__row__copy p { color: var(--ink-2); }
@media (max-width: 800px) { .shared-exp__row { grid-template-columns: 1fr; } }

/* ============== Sensory Curation / dark ============== */
.sensory {
  background: var(--forest-2); color: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px, 7vw, 100px) var(--gutter);
}
.sensory__copy h2 { font-size: clamp(2.2rem, 3.6vw, 3rem); color: var(--cream); margin-bottom: 20px; }
.sensory__list { text-align: center; }
.sensory__list h4 { color: var(--cream); font-family: var(--serif); margin: 22px 0 6px; font-size: 1.2rem; }
.sensory__list p { color: rgba(241,236,226,0.75); max-width: 460px; margin: 0 auto; font-size: 0.95rem; line-height: 1.6; }
.sensory__media { aspect-ratio: 3/2; max-height: 580px; border-radius: var(--radius); overflow: hidden; align-self: center; }
.sensory__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .sensory { grid-template-columns: 1fr; padding: clamp(48px, 6vw, 80px) var(--gutter); } }

/* ============== Contact page ============== */
  .contact {
  background: var(--ink);
  color: var(--cream);
  min-height: 100vh;
  padding: 200px var(--gutter) 80px;
}
.contact__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 100px);
}
.contact h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 60px;
  line-height: 1.05;
}

.form { display: flex; flex-direction: column; gap: 36px; max-width: 640px; }
.form__group { position: relative; }
.form__label { display: block; font-family: var(--serif); font-size: 1.3rem; margin-bottom: 14px; color: var(--cream); }
.form__input, .form__textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241,236,226,0.25);
  padding: var(--space-3) 0;
  color: var(--cream);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.form__input::placeholder, .form__textarea::placeholder { color: rgba(241,236,226,0.45); }
.form__input:focus, .form__textarea:focus { border-bottom-color: var(--gold); }
.form__textarea { resize: vertical; min-height: 80px; font-family: var(--sans); }

.form__select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241,236,226,0.25);
  padding: var(--space-3) 0;
  color: rgba(241,236,226,0.45);
  font-size: 1rem;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F1ECE2'><path d='M8 11.5L2 5.5h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 14px;
}
.form__select option { background: var(--ink); color: var(--cream); }

.form__divider { width: 100%; height: 1px; background: rgba(241,236,226,0.12); margin: 6px 0 12px; }
.form__submit-wrap { display: flex; justify-content: flex-end; margin-top: 14px; }
.form__submit {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--cream);
  border: 0;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.form__submit:hover { transform: scale(1.05); box-shadow: 0 30px 60px rgba(91, 91, 214, 0.35); }
.form__success { color: var(--ink-2); font-size: 0.92rem; margin-top: 12px; display: none; }
.form__success.is-visible { display: block; }

.contact__info { padding-top: 8px; }
.contact__info__name { font-family: var(--sans); font-weight: 600; color: var(--cream); font-size: 1.05rem; margin-bottom: 4px; }
.contact__info__role { color: rgba(241,236,226,0.65); margin-bottom: 24px; }
.contact__info__logo { width: 60px; height: 60px; background: #2A7050; border-radius: 50%; display: grid; place-items: center; margin-bottom: 30px; }
.contact__info__logo svg { width: 28px; height: 28px; }
.contact__info__divider { width: 40px; height: 1px; background: rgba(241,236,226,0.25); margin: var(--space-6) 0; }
.contact__info__label { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(241,236,226,0.55); margin-bottom: 12px; }
.contact__info__value { color: var(--cream); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 800px) { .contact__grid { grid-template-columns: 1fr; } }

/* ============== Reveal animations ============== */
.js-ready .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============== Misc ============== */

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============== Hand-drawn leaf decoration ============== */

/* ============== Section: Workshops / Experience detail ============== */
.workshop-detail {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.workshop-detail--reverse { grid-template-columns: 1.4fr 1fr; }
.workshop-detail--reverse .workshop-detail__media { order: 2; }
.workshop-detail__media { min-height: 420px; max-height: 540px; }
.workshop-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.workshop-detail__copy { padding: clamp(36px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.workshop-detail__copy h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 16px; }
.workshop-detail__copy p  { color: var(--ink-2); margin-bottom: 18px; }
.workshop-detail__copy ul { list-style: none; margin-top: 18px; }
.workshop-detail__copy ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.workshop-detail__copy ul li::before {
  content: '·'; position: absolute; left: 6px; top: 6px; color: var(--gold); font-weight: 700;
}
@media (max-width: 800px) {
  .workshop-detail, .workshop-detail--reverse { grid-template-columns: 1fr; }
  .workshop-detail--reverse .workshop-detail__media { order: 0; }
  .workshop-detail__media { aspect-ratio: 16/10; }
}

/* ============== Tag pills ============== */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  padding: var(--space-2) 16px; border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--ink-2);
}

/* ============== Page hero (small) ============== */
.page-hero {
  padding: 160px var(--gutter) 80px;
  background: var(--cream);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin-bottom: 24px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ============== Marquee ============== */
.marquee {
  display: flex; overflow: hidden; user-select: none;
  padding: 28px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
  background: var(--cream);
}
.marquee__track {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: var(--ink); opacity: 0.85;
  display: flex; align-items: center; gap: 60px;
}
.marquee__item::after { content: '✦'; color: var(--gold); font-size: 0.6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============== Testimonials (homepage) ============== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial {
  background: var(--cream);
  padding: var(--space-7) var(--space-6) var(--space-6);
  border-radius: 4px;
  text-align: left;
  position: relative;
  border: 1px solid var(--line-light);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--space-2);
  left: var(--space-4);
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink); opacity: 0.85;
  margin: 0 0 var(--space-5);
  font-style: italic;
  font-weight: 400;
}
.testimonial__attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line-light);
  padding-top: var(--space-3);
}
.testimonial__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink); opacity: 0.85;
}
.testimonial__loc {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.testimonials__cta {
  text-align: center;
  margin-top: var(--space-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.testimonials__cta .muted {
  color: var(--muted);
  font-size: 0.95rem;
}
.link-gold {
  color: var(--gold-text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.link-gold:hover {
  color: var(--forest);
  border-color: var(--forest);
}
@media (max-width: 700px) {
  .testimonials { grid-template-columns: 1fr; gap: var(--space-4); }
  .testimonial { padding: var(--space-6) var(--space-5); }
}

/* ============== Utility ============== */
.text-center { text-align: center; }

/* ============================================================
   JAPANESE DESIGN ELEMENTS
   Tasteful accents that complement the wellness aesthetic
   ============================================================ */

/* ---------- Kanji / Japanese typography ---------- */
.kanji, .ja {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink); opacity: 0.85;
}
.ja--gold   { color: var(--gold-deep); }
.ja--muted  { color: var(--muted); opacity: 0.7; }
.ja--cream  { color: var(--cream); opacity: 0.85; }
.ja--md     { font-size: 1rem; }
.ja--sm     { font-size: 0.88rem; letter-spacing: 0.18em; }
.ja--xs     { font-size: 0.78rem; letter-spacing: 0.22em; }

/* Japanese sub-eyebrow under English eyebrow */
.ja-eyebrow {
  display: block;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  margin-top: 4px;
  opacity: 0.75;
}
.ja-eyebrow--cream { color: var(--cream); opacity: 0.7; }

/* ---------- Hanko seal ---------- */
.hanko {
  display: inline-block;
  width: 60px; height: 60px;
  background-image: url("../images/ja/hanko-hope.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  transition: transform 0.5s var(--ease);
}
.hanko--lg  { width: 84px; height: 84px; }
.hanko--sm  { width: 38px; height: 38px; }
.hanko--rotate-3 { transform: rotate(-3deg); }
.hanko--rotate-5 { transform: rotate(-5deg); }
.hanko--rotate-7 { transform: rotate(-7deg); }
.hanko:hover { transform: rotate(-2deg) scale(1.05); }

/* ---------- Enso circle (now rendered as live SVG via enso.min.js) ---------- */
.enso {
  display: inline-block;
  width: 120px; height: 120px;
  color: var(--ink);
  opacity: 0.85;
  line-height: 0;
  vertical-align: middle;
}
.enso--md  { width: 80px; height: 80px; }
.enso--sm  { width: 48px; height: 48px; }
.enso--xl  { width: 200px; height: 200px; }
.enso--xxl { width: 320px; height: 320px; }
.enso--gold { color: var(--gold-deep); opacity: 0.85; }
.enso-svg { display: inline-block; line-height: 0; }
.enso-svg svg { display: block; }

/* The header (page-opener) enso — a small mark fixed in the corner */
#enso-header-mark {
  position: fixed;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  animation: enso-header-fade-in 1.2s 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
#enso-header-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: center;
  animation: enso-header-pulse 6s 3s ease-in-out infinite;
}
#enso-header-mark svg path { filter: drop-shadow(0 0 0.5px rgba(139, 107, 62, 0.3)); }
@keyframes enso-header-fade-in {
  from { opacity: 0; transform: scale(0.6) rotate(-30deg); }
  to   { opacity: 0.55; transform: scale(1) rotate(0); }
}
@keyframes enso-header-pulse {
  0%, 100% { transform: scale(1) rotate(0); opacity: 0.55; }
  50%      { transform: scale(1.04) rotate(2deg); opacity: 0.7; }
}
@media (max-width: 600px) {
  #enso-header-mark { width: 32px; height: 32px; top: 12px; right: 12px; }
}

/* ---------- Brushstroke divider ---------- */
.brush-divider {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 18px;
  background-image: url("../images/ja/brush-divider.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: var(--ink); opacity: 0.85;
  opacity: 0.5;
  margin: var(--space-7) auto;
}
.brush-divider--left { margin-left: 0; }
.brush-divider--gold { color: var(--gold-deep); opacity: 0.55; }
.brush-divider--sm { max-width: 200px; height: 12px; }

/* ---------- Bamboo accent ---------- */

/* ---------- Japanese vertical label (for hero side margin) ---------- */
.ja-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  opacity: 0.75;
}
.ja-side--left  { left: 40px; }
.ja-side--right { right: 40px; }

/* ---------- Wabi-sabi asymmetric layout shift ---------- */

/* ---------- Japanese brand mark in nav ---------- */
.nav__title-ja {
  display: block;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 2px;
  opacity: 0.75;
}
.nav--dark .nav__title-ja { color: rgba(241,236,226,0.55); }

/* ---------- English tagline (under Japanese brand mark) ---------- */
.nav__title-tag {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.01em;
  max-width: 220px;
  line-height: 1.25;
  opacity: 0.7;
}
.nav--dark .nav__title-tag { color: rgba(241,236,226,0.5); }
@media (max-width: 720px) { .nav__title-tag { display: none; } }

/* ---------- Kanji-marked section label ---------- */
.section-mark {
  display: flex; align-items: center; gap: var(--space-4);
  margin-bottom: 24px;
}
.section-mark__kanji {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 1.4rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  line-height: 1;
}
.section-mark__eyebrow {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted, #6A6A6A);
  white-space: nowrap;
  padding: 0 14px;
}
.section-mark__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-mark__line--gold { background: var(--gold); opacity: 0.4; }
.section-mark--cream .section-mark__kanji { color: var(--gold-text); }
.section-mark--cream .section-mark__line { background: rgba(241,236,226,0.25); }

/* ---------- Enso-wrapped section badge ---------- */

/* ---------- Japanese + English bilingual title ---------- */

/* ---------- Hanko watermark behind big numbers ---------- */
.number-watermark {
  position: relative;
}

/* ---------- Aesthetic: refined paper texture overlay ---------- */

/* ---------- Kanji-cornered card (replaces plain borders) ---------- */
.card-ja {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
}
.card-ja::before {
  content: attr(data-kanji);
  position: absolute;
  top: 16px; right: 22px;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 0.1em;
}

/* ---------- Footer hanko + enso mark ---------- */
.footer__hanko {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: 24px;
}
.footer__hanko-img { width: 44px; height: 44px; }
.footer__hanko-text {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  line-height: 1.5;
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 800px) {
  .ja-side { display: none; }
}


/* ============================================================
   SHOP SYSTEM
   ============================================================ */

/* ---------- Cart icon in nav ---------- */
.nav__cart {
  position: relative;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  min-width: 40px; min-height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink); opacity: 0.85;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nav__cart:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav--dark .nav__cart { color: var(--cream); border-color: rgba(241,236,226,0.3); }
.nav--dark .nav__cart:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.nav__cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--gold-deep);
  color: var(--cream);
  border-radius: 50%;
  display: none;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
}
.nav__cart svg { width: 18px; height: 18px; }

/* ---------- Currency switcher ---------- */
.currency-switch {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--ink); opacity: 0.85;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.currency-switch:hover { border-color: var(--ink); }
.currency-switch select {
  border: 0; background: transparent; outline: none;
  font: inherit; color: inherit; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.currency-switch__label { font-size: 0.7rem; color: var(--muted); }
.nav--dark .currency-switch { color: var(--cream); border-color: rgba(241,236,226,0.25); }

/* ---------- Shop hero ---------- */
.shop-hero {
  padding: 160px var(--gutter) 60px;
  background: var(--cream);
  text-align: center;
}
.shop-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin-bottom: 18px; }
.shop-hero p { color: var(--muted); max-width: 580px; margin: 0 auto 30px; font-size: 1rem; line-height: 1.7; }
.shop-hero__actions {
  display: flex; gap: var(--space-3); justify-content: center; align-items: center; flex-wrap: wrap;
}

/* ---------- Category pills / filter bar ---------- */
.filter-bar {
  position: sticky; top: 70px;
  z-index: 30;
  background: rgba(241, 236, 226, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 60px;
}
.filter-bar__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  flex-wrap: wrap;
  overflow: hidden;
}
.filter-pills { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.filter-pill {
  padding: var(--space-2) 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill--active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.filter-bar__controls { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; }
.filter-bar__search {
  padding: var(--space-2) 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.85rem;
  outline: none;
  min-width: 0;
}
.filter-bar__search:focus { border-color: var(--ink); }
.filter-bar__sort {
  padding: var(--space-2) 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
}

/* ---------- Product card (shop grid) ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .shop-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr; } }

.shop-card {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(26,26,26,0.08); }
.shop-card__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone);
}
.shop-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-soft); }
.shop-card:hover .shop-card__img img { transform: scale(1.04); }
.shop-card__badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: var(--space-1-5); z-index: 2;
}
.shop-card__badge {
  padding: 4px 10px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.shop-card__badge--gold { background: var(--gold); }
.shop-card__badge--forest { background: var(--forest); }
.shop-card__quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}
.shop-card:hover .shop-card__quick { opacity: 1; }
.shop-card__quick button {
  background: var(--cream);
  color: var(--ink); opacity: 0.85;
  border: 0;
  padding: 10px 20px;
  font-size: 0.78rem;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.shop-card__quick button:hover { background: var(--ink); color: var(--cream); }
.shop-card__body { padding: 22px 24px 26px; }
.shop-card__cat {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 8px;
}
.shop-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
  line-height: 1.2;
}
.shop-card__tagline {
  color: var(--muted); font-size: 0.85rem; line-height: 1.5;
  margin-bottom: 14px;
  min-height: 38px;
}
.shop-card__price {
  display: flex; align-items: baseline; gap: var(--space-2);
  font-family: var(--serif);
}
.shop-card__price-main { font-size: 1.15rem; }
.shop-card__price-compare {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}
.shop-card__price-from { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Cart drawer ---------- */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--cream);
  z-index: 200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  padding: var(--space-6);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--space-1-5);
  position: relative;
}
.cart-drawer__head h3 { font-family: var(--serif); font-size: 1.6rem; }
.cart-drawer__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.cart-drawer__close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: var(--space-3) 24px; }
.cart-drawer__empty {
  text-align: center; padding: 60px 20px;
  color: var(--muted);
}
.cart-drawer__line {
  display: flex; gap: 14px;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line-light);
}
.cart-drawer__img { width: 80px; height: 80px; border-radius: 4px; overflow: hidden; flex: 0 0 auto; }
.cart-drawer__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer__info { flex: 1; }
.cart-drawer__name { font-family: var(--serif); font-size: 1rem; line-height: 1.3; margin-bottom: 4px; }
.cart-drawer__price { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 8px; }
.cart-drawer__qty { display: flex; align-items: center; gap: var(--space-1-5); }
.cart-drawer__qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}
.cart-drawer__qty button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cart-drawer__qty span { min-width: 22px; text-align: center; font-size: 0.9rem; }
.cart-drawer__rm {
  width: auto !important; height: auto !important;
  border: 0 !important; border-radius: 0 !important;
  padding: 0 0 0 8px; margin-left: auto;
  font-size: 0.72rem !important; color: var(--muted) !important;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: transparent !important;
}
.cart-drawer__rm:hover { background: transparent !important; color: var(--ink) !important; }
.cart-drawer__foot {
  padding: var(--space-6);
  border-top: 1px solid var(--line);
  background: var(--ivory);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.cart-drawer__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.cart-drawer__row strong { font-size: 1.3rem; }
.cart-drawer__note { color: var(--muted); font-size: 0.78rem; text-align: center; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--cream);
  padding: 14px 28px; border-radius: 999px;
  font-size: 0.88rem; z-index: 300;
  opacity: 0; pointer-events: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-page { padding: 130px var(--gutter) 80px; background: var(--cream); }
.product-page__inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb {
  display: flex; gap: var(--space-2); align-items: center;
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__sep { color: var(--line); }

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 80px;
}

/* Gallery */
.gallery { display: grid; grid-template-columns: 80px 1fr; gap: var(--space-4); }
.gallery__thumbs { display: flex; flex-direction: column; gap: 10px; }
.gallery__thumb {
  width: 80px; height: 80px;
  border-radius: 4px; overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--bone);
  transition: border-color 0.2s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb--active { border-color: var(--gold-deep); }
.gallery__main {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bone);
}
.gallery__main img,
.gallery__main video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: none;
}
.gallery__main img.is-active,
.gallery__main video.is-active { display: block; }

.product-info__cat {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px;
}
.product-info h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  margin-bottom: 8px;
}
.product-info__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.product-info__price-row {
  display: flex; align-items: baseline; gap: var(--space-3);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.product-info__price { font-family: var(--serif); font-size: 1.8rem; }
.product-info__price-compare {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--muted); text-decoration: line-through;
}
.product-info__save {
  background: var(--gold);
  color: var(--cream);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-info__short { color: var(--ink-2); line-height: 1.7; margin-bottom: 28px; }

.product-info__variants { margin-bottom: 24px; }
.product-info__variants-label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px; color: var(--ink);
}
.variant-row { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--ink); opacity: 0.85;
}
.variant-btn:hover { border-color: var(--ink); }
.variant-btn--active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.qty-row { display: flex; align-items: center; gap: var(--space-4); margin-bottom: 24px; }
.qty-row__label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}
.qty-stepper {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.qty-stepper button {
  width: 40px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 1.1rem; color: var(--ink);
  transition: background 0.2s var(--ease);
}
.qty-stepper button:hover { background: var(--bone); }
.qty-stepper input {
  width: 50px; height: 44px;
  border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: center; font-size: 1rem; font-family: var(--sans);
  background: transparent; outline: none;
}

.product-info__actions { display: flex; gap: var(--space-3); margin-bottom: 30px; }
.product-info__actions .btn { flex: 1; justify-content: center; }

.product-info__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) 24px;
  padding: var(--space-6) 0; border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
.product-info__meta dt { color: var(--muted); margin-bottom: 4px; }
.product-info__meta dd { color: var(--ink); margin-bottom: 8px; }

.product-info__notes {
  margin-top: 24px; padding: 18px 22px;
  background: var(--ivory);
  border-radius: 4px;
  font-size: 0.85rem; color: var(--ink-2);
  display: flex; gap: var(--space-3); align-items: flex-start;
}

@media (max-width: 800px) {
  .product-detail { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__thumbs { flex-direction: row; overflow-x: auto; }
}

/* Product detail tabs */
.pd-tabs {
  display: flex; gap: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.pd-tab {
  padding: 14px 0;
  background: transparent; border: 0; border-bottom: 2px solid transparent;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.pd-tab--active { color: var(--ink); border-bottom-color: var(--ink); }
.pd-panel { display: none; padding: var(--space-5) 0 40px; }
.pd-panel.is-active { display: block; }
.pd-panel p { line-height: 1.8; color: var(--ink-2); margin-bottom: 16px; max-width: 760px; }
.pd-panel h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: var(--space-5) 0 10px;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding: 130px var(--gutter) 80px; background: var(--cream); }
.cart-page__inner { max-width: var(--max); margin: 0 auto; }
.cart-page h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 16px; }

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 40px;
}
.cart-lines { display: flex; flex-direction: column; }
.cart-line {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line__img { width: 110px; height: 130px; border-radius: 4px; overflow: hidden; background: var(--bone); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 4px; }
.cart-line__variant { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.cart-line__price { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 10px; }
.cart-line__remove {
  background: transparent; border: 0; color: var(--muted);
  font-size: 0.78rem; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 3px;
}
.cart-line__qty { display: flex; align-items: center; gap: var(--space-2); }
.cart-line__qty button {
  width: 30px; height: 30px;
  border: 1px solid var(--line); border-radius: 50%;
  background: transparent; cursor: pointer;
  display: grid; place-items: center;
}
.cart-line__qty span { min-width: 26px; text-align: center; }

/* === Cart section (single-page checkout) === */
.cart-flow {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  margin-top: 36px;
  align-items: start;
}
.cart-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.cart-section {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 32px 32px;
}
.cart-section--last { padding-bottom: 28px; }
.cart-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.cart-section__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cart-section__count {
  display: inline-block;
  background: var(--cream);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 99px;
  border: 1px solid var(--line);
  min-width: 28px;
  text-align: center;
}
.cart-section__clear {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
}
.cart-section__clear:hover { color: var(--ink); }
.cart-section__body { /* default - just a wrapper */ }

/* === Cart line (cleaner, more breathing room) === */
.cart-lines-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.cart-lines-count {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.cart-lines-clear {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.cart-lines-clear:hover { color: #B85C3E; }
.cart-lines { display: flex; flex-direction: column; }
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.cart-line:first-child { padding-top: 4px; }
.cart-line:last-child { border-bottom: 0; padding-bottom: 4px; }
.cart-line__img {
  width: 96px; height: 116px;
  border-radius: 4px; overflow: hidden; background: var(--bone);
  flex-shrink: 0;
}
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__body { min-width: 0; padding-top: 2px; }
.cart-line__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.cart-line__name:hover { color: var(--forest); }
.cart-line__variant {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.cart-line__unit {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.cart-line__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cart-line__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}
.cart-line__remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.01em;
}
.cart-line__remove:hover { color: #B85C3E; }
.cart-line__remove svg { flex-shrink: 0; }

/* Inline qty stepper used inside cart line */
.qty-stepper--inline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  height: 36px;
}
.qty-stepper--inline button {
  width: 36px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
  font-family: var(--sans);
}
.qty-stepper--inline button:hover { background: var(--bone); }
.qty-stepper--inline button:active { background: var(--ink); color: var(--cream); }
.qty-stepper--inline .qty-stepper__val {
  min-width: 36px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

/* === Order Summary (right column, sticky) === */
.cart-summary {
  background: var(--ivory);
  padding: 28px;
  border-radius: 6px;
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
}
.cart-summary__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.cart-summary__lines { margin-bottom: 18px; }
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.cart-summary__row--total {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 18px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}
.cart-summary__free {
  color: var(--forest);
  font-weight: 500;
  font-size: 0.85rem;
  background: rgba(45, 68, 35, 0.08);
  padding: 2px 8px;
  border-radius: 3px;
}
.cart-summary__row--discount span { color: var(--forest); }
.cart-summary__note {
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
  margin: 10px 0 0;
}

/* Coupon (compact) */
.cart-coupon { margin: 20px 0 18px; }
.cart-coupon__input-row {
  display: flex;
  gap: 8px;
}
.cart-coupon__input {
  flex: 1;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.cart-coupon__input:focus { border-color: var(--ink); }
.cart-coupon__input-row .btn { padding: 0 18px; height: 40px; font-size: 0.82rem; }
.cart-coupon__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(45, 68, 35, 0.08);
  border: 1px solid rgba(45, 68, 35, 0.2);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.88rem;
}
.cart-coupon__code {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.05em;
}
.cart-coupon__remove {
  background: transparent;
  border: 0;
  color: var(--forest);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 4px;
}
.cart-coupon__hint {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 8px;
}
.cart-coupon__hint code {
  background: var(--cream);
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-family: monospace;
}
.cart-coupon__error {
  color: #B85C3E;
  font-size: 0.8rem;
  margin-top: 6px;
}

.cart-summary .btn--lg {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  height: 52px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty .enso { display: block; margin: 0 auto 24px; }

@media (max-width: 900px) {
  .cart-flow { grid-template-columns: 1fr; gap: 24px; }
  .cart-flow > aside.cart-summary { position: static !important; }
  .cart-section { padding: 22px 20px 24px; }
}
@media (max-width: 600px) {
  .cart-line { grid-template-columns: 80px 1fr; gap: 14px; }
  .cart-line__img { width: 80px; height: 100px; }
  .cart-line__price { grid-column: 2; text-align: left; padding-top: 0; font-size: 1.05rem; }
  .cart-line__controls { gap: 10px; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-page { background: var(--cream); min-height: 100vh; }
.admin-page [hidden] { display: none !important; }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-side {
  background: var(--ink);
  color: var(--cream);
  padding: 30px 24px;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.admin-side__brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid rgba(241,236,226,0.12); }
.admin-side__brand h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--cream); margin: 0; }
.admin-side__brand span { font-size: 0.7rem; opacity: 0.6; display: block; }
.admin-nav { list-style: none; display: flex; flex-direction: column; gap: var(--space-1); }
.admin-nav__section { list-style: none; padding: 22px 14px 8px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(241,236,226,0.4); border-top: 1px solid rgba(241,236,226,0.08); margin-top: 18px; }
.admin-nav__section:first-child { border-top: none; margin-top: 0; padding-top: 8px; }
.admin-nav a {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 10px 14px;
  color: rgba(241,236,226,0.7);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}
.admin-nav a:hover, .admin-nav a.is-active {
  background: rgba(241,236,226,0.08);
  color: var(--cream);
}
.admin-nav a svg { width: 18px; height: 18px; }
.admin-nav__count {
  margin-left: auto;
  font-size: 0.72rem;
  background: rgba(241,236,226,0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

.admin-main { padding: 40px 50px; }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.admin-topbar h1 { font-size: 2rem; }
.admin-topbar__actions { display: flex; gap: var(--space-3); align-items: center; }

.admin-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4); margin-bottom: 30px;
}
.admin-stat {
  background: var(--ivory);
  padding: var(--space-6); border-radius: 4px;
}
.admin-stat__label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.admin-stat__value { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.admin-stat__sub { font-size: 0.78rem; color: var(--gold-deep); margin-top: 6px; }

/* Admin product list */
.admin-table {
  width: 100%;
  background: var(--ivory);
  border-radius: 4px;
  overflow: hidden;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  padding: 14px 20px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.admin-table td {
  padding: var(--space-4) 20px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.9rem;
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--cream); }
.admin-table__img { width: 48px; height: 56px; object-fit: cover; border-radius: 2px; }
.admin-table__name { font-family: var(--serif); font-size: 1rem; }
.admin-table__cat { font-size: 0.78rem; color: var(--muted); }
.admin-table__price { font-family: var(--serif); }
.admin-table__stock {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 0.72rem;
}
.admin-table__stock--in    { background: rgba(40, 90, 40, 0.12); color: #2A7050; }
.admin-table__stock--out   { background: rgba(180, 40, 40, 0.12); color: #8B2A2A; }
.admin-table__actions { display: flex; gap: var(--space-1-5); }
.admin-table__actions button {
  background: transparent; border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 4px;
  font-size: 0.78rem; cursor: pointer; color: var(--ink);
  transition: all 0.2s var(--ease);
}
.admin-table__actions button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.admin-table__actions button.is-danger:hover { background: #8B2A2A; border-color: #8B2A2A; }

/* Admin form */
.admin-form { background: var(--ivory); padding: var(--space-7); border-radius: 4px; }
.admin-form__section { margin-bottom: 36px; padding-bottom: 30px; border-bottom: 1px solid var(--line-light); }
.admin-form__section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.admin-form__title {
  font-family: var(--serif); font-size: 1.3rem; margin-bottom: 8px;
  display: flex; align-items: center; gap: var(--space-3);
}
.admin-form__ja { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-grid--3 { grid-template-columns: repeat(3, 1fr); }

.field { display: flex; flex-direction: column; gap: var(--space-1-5); }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
}
.field__label small { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 400; }
.field__input, .field__textarea, .field__select {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit; font-size: 0.92rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s var(--ease);
  color: var(--ink); opacity: 0.85;
}
.field__input:focus, .field__textarea:focus, .field__select:focus { border-color: var(--ink); }
.field__textarea { min-height: 100px; resize: vertical; font-family: var(--sans); line-height: 1.5; }

.field__checkbox {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 0.9rem; cursor: pointer;
}
.field__checkbox input { width: 18px; height: 18px; accent-color: var(--ink); }

/* Media uploader */
.uploader {
  border: 2px dashed var(--line);
  border-radius: 4px;
  padding: 30px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.uploader:hover, .uploader.is-drag { border-color: var(--ink); background: var(--bone); }
.uploader__icon { color: var(--muted); margin-bottom: 8px; }
.uploader__text { color: var(--ink); font-size: 0.92rem; }
.uploader__text small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 4px; }
.uploader__input { display: none; }

.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-3); margin-top: 14px; }
.media-thumb {
  position: relative;
  aspect-ratio: 1; border-radius: 4px; overflow: hidden;
  background: var(--bone);
}
.media-thumb img, .media-thumb video { width: 100%; height: 100%; object-fit: cover; }
.media-thumb__remove {
  position: absolute; top: 6px; right: 6px;
  width: 24px; height: 24px;
  background: rgba(0,0,0,0.6); color: white;
  border: 0; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center;
  font-size: 0.85rem;
}

.variant-editor {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: var(--space-4);
  margin-bottom: 12px;
  background: var(--cream);
}
.variant-editor__row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr auto; gap: var(--space-2); align-items: center; }

.tag-input {
  display: flex; flex-wrap: wrap; gap: var(--space-1-5);
  padding: var(--space-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
}
.tag-input__chip {
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.78rem;
  display: inline-flex; align-items: center; gap: var(--space-1-5);
}
.tag-input__chip button {
  background: transparent; border: 0; color: var(--cream);
  cursor: pointer; padding: 0; font-size: 0.9rem; line-height: 1;
}
.tag-input__field {
  border: 0; background: transparent; outline: none;
  flex: 1; min-width: 100px; font: inherit; font-size: 0.85rem;
}

.admin-toolbar {
  display: flex; gap: var(--space-3); align-items: center;
  margin-bottom: 20px;
}
.admin-toolbar__search {
  flex: 1; max-width: 320px;
  padding: 10px 14px; border: 1px solid var(--line);
  border-radius: 4px; background: var(--ivory);
  font: inherit; font-size: 0.9rem; outline: none;
}
.admin-toolbar__filter {
  padding: 10px 14px; border: 1px solid var(--line);
  border-radius: 4px; background: var(--ivory);
  font: inherit; font-size: 0.9rem; outline: none;
}

@media (max-width: 1000px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
}

/* ---------- Admin login ---------- */
.admin-login {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--cream);
  padding: 40px 20px;
}
.admin-login__card {
  width: 100%; max-width: 420px;
  background: var(--ivory);
  padding: 50px 40px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.admin-login__hanko {
  width: 64px; height: 64px; margin: 0 auto 20px;
}
.admin-login__card h1 { font-size: 1.8rem; margin-bottom: 6px; }
.admin-login__card p { color: var(--muted); margin-bottom: 30px; }
.admin-login__card .field { text-align: left; margin-bottom: 20px; }
.admin-login__card .btn { width: 100%; justify-content: center; }
.admin-login__hint { margin-top: 20px; font-size: 0.78rem; color: var(--muted); padding: var(--space-3); background: var(--bone); border-radius: 4px; }

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 80px 30px;
  background: var(--ivory);
  border-radius: 4px;
  color: var(--muted);
}
.empty-state .enso { display: block; margin: 0 auto 20px; opacity: 0.4; }
.empty-state h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.empty-state p { margin-bottom: 20px; }

/* ============================================================
   ADMIN v2 — login, dashboard charts, cards, order detail,
   activity feed, audit log, bulk actions
   ============================================================ */

/* Login screen */
.admin-login { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.admin-login__bg { position: absolute; inset: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.admin-login__bg .enso { color: var(--gold); opacity: 0.18; }
.admin-login__card { position: relative; z-index: 1; background: var(--ivory); padding: 50px 44px; max-width: 480px; width: 100%; border-radius: 4px; box-shadow: 0 30px 80px rgba(42, 112, 80, 0.08); text-align: center; }
.admin-login__card h1 { font-family: var(--serif); font-size: 2.2rem; color: var(--forest); margin: 0 0 6px; }
.admin-login__card p { color: var(--muted); margin-bottom: 30px; }
.admin-login__card form { text-align: left; }
.admin-login__card .field { margin-bottom: 18px; }
.admin-login__error { background: rgba(139, 42, 42, 0.08); border: 1px solid rgba(139, 42, 42, 0.2); color: #8B2A2A; padding: 10px 14px; border-radius: 3px; font-size: 0.85rem; margin-bottom: 14px; }
.admin-login__hint { margin-top: 24px; padding: var(--space-4); background: var(--bone); border-radius: 4px; }
.admin-login__hint-title { font-family: var(--serif); font-size: 0.9rem; color: var(--ink); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.admin-login__creds { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.admin-login__creds td { padding: 5px 8px; text-align: left; }
.admin-login__creds td:nth-child(3) { text-align: right; }
.admin-login__creds code { background: var(--cream); padding: 2px 6px; border-radius: 3px; font-family: ui-monospace, monospace; font-size: 0.78rem; }
.admin-login__session-note { color: var(--muted); font-size: 0.78rem; margin: var(--space-3) 0 0; line-height: 1.5; }
.login-btn__label { position: relative; }
button:disabled .login-btn__label::after { content: '...'; margin-left: 6px; }

.role-tag { display: inline-block; padding: 2px 8px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 2px; font-weight: 500; }
.role-tag--owner { background: rgba(176, 139, 87, 0.15); color: #8A6A3A; }
.role-tag--manager { background: rgba(40, 90, 40, 0.12); color: #2A7050; }
.role-tag--staff { background: rgba(91, 91, 214, 0.12); color: #3D3D9A; }

/* Side user */
.admin-side__user { padding: var(--space-4) 14px; background: rgba(241, 236, 226, 0.05); border-radius: 4px; margin-bottom: 30px; }
.admin-side__user-name { font-family: var(--serif); font-size: 1rem; color: var(--cream); margin-bottom: 4px; }
.admin-side__user-meta { display: flex; justify-content: space-between; align-items: center; }
.admin-side__user-time { font-size: 0.72rem; color: rgba(241, 236, 226, 0.5); }
.admin-side__foot { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(241, 236, 226, 0.12); display: flex; flex-direction: column; gap: var(--space-1); }
.admin-side__foot a { color: rgba(241, 236, 226, 0.65); font-size: 0.85rem; display: flex; gap: 10px; align-items: center; padding: var(--space-2) 14px; transition: color 0.15s; }
.admin-side__foot a:hover { color: var(--cream); }

/* Topbar ja eyebrow */
.admin-topbar h1 { font-size: 2.2rem; margin: 0; }
#viewJa { display: block; color: var(--gold-deep); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }

/* Topbar buttons */
.admin-topbar__actions .btn { padding: 10px 18px; }
.admin-topbar__actions .btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.admin-topbar__actions .btn--ghost:hover { background: var(--cream); }

/* Dashboard 4-col */
.admin-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .admin-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .admin-grid--4 { grid-template-columns: 1fr; } }

/* Cards */
.admin-card { background: var(--ivory); padding: var(--space-6); border-radius: 4px; }
.admin-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line-light); }
.admin-card__head h3 { font-family: var(--serif); font-size: 1.15rem; margin: 0; color: var(--forest); }
.admin-card__link { color: var(--gold-deep); font-size: 0.82rem; text-decoration: none; }
.admin-card__link:hover { color: var(--forest); }

.admin-row { display: grid; gap: var(--space-6); }
.admin-row--split { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .admin-row--split { grid-template-columns: 1fr; } }

/* Charts */
.chart-bars { display: flex; align-items: flex-end; gap: 2px; height: 100px; padding: var(--space-2) 0; }
.chart-bars__col { flex: 1; display: flex; align-items: flex-end; height: 100%; }
.chart-bars__bar { width: 100%; background: var(--forest); border-radius: 2px 2px 0 0; min-height: 1px; transition: height 0.4s ease; opacity: 0.85; }
.chart-bars__bar--gold { background: var(--gold); }
.chart-bars__axis { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.7rem; padding-top: 6px; border-top: 1px solid var(--line-light); margin-top: 4px; }

/* Top list */
.top-list { list-style: none; padding: 0; margin: 0; }
.top-list li { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line-light); }
.top-list li:last-child { border-bottom: 0; }
.top-list__rank { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-deep); width: 24px; }
.top-list__name { flex: 1; font-family: var(--serif); }
.top-list__count { color: var(--muted); font-size: 0.85rem; }

/* Alert list */
.alert-list { list-style: none; padding: 0; margin: 0; }
.alert-list li { display: flex; align-items: center; gap: var(--space-3); padding: 10px 0; border-bottom: 1px solid var(--line-light); }
.alert-list li:last-child { border-bottom: 0; }
.alert-list li img { width: 40px; height: 48px; object-fit: cover; border-radius: 2px; }
.alert-list__name { font-family: var(--serif); font-size: 0.95rem; }
.alert-list__sku { font-size: 0.78rem; color: var(--muted); }
.alert-list__more { text-align: center; color: var(--muted); font-size: 0.85rem; padding: var(--space-2) 0; }
.empty-line { color: var(--muted); text-align: center; padding: 30px 10px; font-size: 0.9rem; }

/* Activity feed */
.activity-feed { list-style: none; padding: 0; margin: 0; }
.activity-feed li { display: flex; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--line-light); align-items: flex-start; }
.activity-feed li:last-child { border-bottom: 0; }
.activity-feed__dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.activity-feed__title { font-family: var(--serif); font-size: 0.95rem; }
.activity-feed__time { font-size: 0.75rem; color: var(--muted); }
.activity-feed__detail { font-size: 0.82rem; color: var(--ink-mid); font-family: ui-monospace, monospace; margin: 2px 0 4px; word-break: break-all; }
.activity-feed--full { max-width: 900px; }
.activity-feed--full li { padding: 14px 0; }

/* Bulk actions */
.admin-toolbar__spacer { flex: 1; }
.admin-toolbar__bulk { display: flex; align-items: center; gap: var(--space-2); padding: var(--space-2) 12px; background: var(--cream); border-radius: 4px; border: 1px solid var(--gold); }
.admin-toolbar__bulk-count { font-size: 0.82rem; color: var(--gold-deep); margin-right: 6px; }
.btn--sm { padding: 6px 12px !important; font-size: 0.82rem !important; }
.btn.is-danger { color: #8B2A2A; border-color: rgba(139, 42, 42, 0.3); }
.btn.is-danger:hover { background: #8B2A2A; color: white; border-color: #8B2A2A; }
.btn--ghost.is-danger { color: #8B2A2A; }
.btn--ghost.is-danger:hover { background: rgba(139, 42, 42, 0.08); }

.admin-table__icon { display: inline-flex; align-items: center; padding: 6px 8px; color: var(--ink-mid); border: 1px solid var(--line-light); border-radius: 3px; }
.admin-table__icon svg { width: 14px; height: 14px; }
.admin-table__icon:hover { color: var(--forest); border-color: var(--forest); }

/* Modal */
.modal-root { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: var(--space-5); }
.modal-overlay { position: absolute; inset: 0; background: rgba(42, 112, 80, 0.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; animation: fadeIn 0.18s ease; }
.modal-card { position: relative; background: var(--ivory); border-radius: 4px; max-width: 720px; width: 100%; max-height: 90vh; overflow: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.2); animation: scaleIn 0.18s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

/* Order detail */
.order-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: var(--space-5); background: var(--cream); border-radius: 4px; }
.order-detail__grid h3 { font-family: var(--serif); font-size: 1.05rem; margin: 0 0 10px; color: var(--forest); }
.order-detail__grid p { margin: 0 0 6px; font-size: 0.9rem; }
@media (max-width: 600px) { .order-detail__grid { grid-template-columns: 1fr; } }
.order-lines { display: flex; flex-direction: column; gap: var(--space-3); }
.order-line { display: grid; grid-template-columns: 50px 1fr auto auto; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line-light); }
.order-line img { width: 50px; height: 60px; object-fit: cover; border-radius: 2px; }
.order-line__name { font-family: var(--serif); font-size: 0.95rem; }
.order-line__variant { font-size: 0.78rem; color: var(--muted); }
.order-line__qty { color: var(--muted); font-size: 0.9rem; }
.order-line__price { font-family: var(--serif); }
.timeline__entry { display: flex; gap: var(--space-3); padding: var(--space-2) 0; align-items: flex-start; }
.timeline__dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.timeline__status { font-family: var(--serif); font-size: 0.95rem; }
.timeline__note { font-size: 0.85rem; color: var(--ink-mid); }
.timeline__time { font-size: 0.75rem; color: var(--muted); }

/* Form toolbar */
.admin-form__toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line-light); }
.admin-form__back { color: var(--ink-mid); text-decoration: none; font-size: 0.9rem; }
.admin-form__back:hover { color: var(--forest); }
.admin-form__view-shop { color: var(--gold-deep); text-decoration: none; font-size: 0.9rem; }
.admin-form__view-shop:hover { color: var(--forest); }

/* Upload progress */
.uploader__progress { margin-top: 10px; padding: var(--space-2) 12px; background: var(--cream); border-radius: 3px; display: flex; align-items: center; gap: var(--space-3); }
.uploader__progress-bar { height: 6px; background: var(--gold); border-radius: 3px; width: 0; transition: width 0.3s; }
.uploader__progress-text { font-size: 0.8rem; color: var(--muted); flex: 1; }

/* Variant editor */
.variant-editor { background: var(--cream); padding: var(--space-3); border-radius: 4px; margin-bottom: 8px; }
.variant-editor__row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 80px 40px; gap: var(--space-2); align-items: center; }
.variant-editor__row .field__input { padding: var(--space-2) 10px; font-size: 0.85rem; }
@media (max-width: 800px) { .variant-editor__row { grid-template-columns: 1fr 1fr; } }

.field__checkbox { display: flex; align-items: center; gap: var(--space-2); font-size: 0.9rem; color: var(--ink); cursor: pointer; }
.field__checkbox input { width: 16px; height: 16px; accent-color: var(--forest); }

.admin-form__title + .admin-form__ja { margin-top: -16px; }

@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
}
@media (max-width: 600px) {
  .admin-main { padding: var(--space-6) 18px; }
  .admin-grid, .admin-grid--4 { grid-template-columns: 1fr; }
  .admin-form { padding: 22px 18px; }
}


/* ============================================================
   v3 — Discounts · Clearance · Shipping · Payments · Taxes · Wizard
   ============================================================ */

/* Setup banner */
.setup-banner { display: flex; align-items: center; gap: var(--space-6); background: linear-gradient(135deg, rgba(176,139,87,0.12), rgba(91,91,214,0.06)); padding: 22px 28px; border-radius: 4px; margin-bottom: 24px; border-left: 4px solid var(--gold); }
.setup-banner__icon .enso { width: 56px; height: 56px; display: block; }
.setup-banner__body { flex: 1; }
.setup-banner__body h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.2rem; color: var(--forest); }
.setup-banner__body p { margin: 0; color: var(--ink-mid); font-size: 0.9rem; }
.setup-banner__actions { display: flex; gap: 10px; }
@media (max-width: 700px) { .setup-banner { flex-direction: column; align-items: stretch; text-align: center; } .setup-banner__actions { justify-content: center; } }

/* Help card (intro at top of each feature) */
.help-card { display: flex; justify-content: space-between; align-items: center; gap: var(--space-6); background: var(--cream); padding: 18px 22px; border-radius: 4px; margin-bottom: 24px; }
.help-card strong { display: block; font-family: var(--serif); font-size: 1.05rem; margin-bottom: 4px; color: var(--forest); }
.help-card p { margin: 0; color: var(--ink-mid); font-size: 0.9rem; max-width: 680px; }
.help-card__link { color: var(--gold-deep); text-decoration: none; font-weight: 500; }
.help-card__link:hover { text-decoration: underline; }
@media (max-width: 700px) { .help-card { flex-direction: column; align-items: stretch; } }

/* Cart coupon */
.cart-coupon { margin: var(--space-5) 0; padding: 18px; background: var(--cream); border-radius: 4px; }
.cart-coupon label { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cart-coupon__input-row { display: flex; gap: var(--space-2); }
.cart-coupon__input { flex: 1; padding: 10px 14px; border: 1px solid var(--line); border-radius: 3px; font-family: inherit; font-size: 0.9rem; text-transform: uppercase; background: white; }
.cart-coupon__input:focus { outline: none; border-color: var(--gold); }
.cart-coupon__error { margin-top: 8px; color: #8B2A2A; font-size: 0.82rem; }
.cart-coupon__hint { margin-top: 6px; color: var(--muted); font-size: 0.78rem; }
.cart-coupon__hint code { background: white; padding: 1px 6px; border-radius: 2px; font-size: 0.78rem; }
.cart-coupon__applied { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(40, 90, 40, 0.1); border: 1px dashed var(--forest); border-radius: 3px; }
.cart-coupon__code { font-family: ui-monospace, monospace; font-weight: 600; color: var(--forest); }
.cart-coupon__name { flex: 1; color: var(--ink-mid); font-size: 0.88rem; }
.cart-coupon__remove { background: transparent; border: 0; color: var(--ink-mid); cursor: pointer; font-size: 0.82rem; padding: 4px 8px; }
.cart-coupon__remove:hover { color: #8B2A2A; }

/* Cart address + shipping */
.cart-address { margin: 18px 0; padding: 18px; background: var(--cream); border-radius: 4px; }
.cart-address label { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cart-address__row { display: flex; gap: 10px; }
.cart-shipping-options { margin-top: 12px; display: flex; flex-direction: column; gap: var(--space-1-5); }
.cart-shipping-option { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3); background: white; border: 1px solid var(--line); border-radius: 3px; cursor: pointer; transition: border-color 0.15s; }
.cart-shipping-option:hover, .cart-shipping-option.is-active { border-color: var(--gold); background: var(--ivory); }
.cart-shipping-option input { accent-color: var(--forest); }
.cart-shipping-option__name { font-weight: 500; }
.cart-shipping-option__meta { font-size: 0.8rem; color: var(--muted); }
.cart-shipping-option__price { margin-left: auto; font-family: var(--serif); font-weight: 500; }

/* Cart payment */
.cart-payment { margin: var(--space-5) 0; padding: 18px; background: var(--cream); border-radius: 4px; }
.cart-payment label { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.cart-payment-options { display: flex; flex-direction: column; gap: var(--space-1-5); }
.cart-payment-option { display: flex; align-items: center; gap: 14px; padding: var(--space-3) 14px; background: white; border: 1px solid var(--line); border-radius: 3px; cursor: pointer; }
.cart-payment-option:hover, .cart-payment-option.is-active { border-color: var(--gold); }
.cart-payment-option input { accent-color: var(--forest); }
.cart-payment-option__icon { font-size: 1.4rem; }
.cart-payment-option__label { font-weight: 500; }
.cart-payment-option__desc { font-size: 0.78rem; color: var(--muted); }
.cart-summary__note { font-size: 0.75rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.cart-summary__row--discount span { color: #2A7050; }
.cart-line__sale-badge { display: inline-block; background: #8B2A2A; color: white; padding: 2px 8px; border-radius: 2px; font-size: 0.7rem; letter-spacing: 0.1em; font-weight: 600; margin-top: 4px; }
.cart-line__price { font-family: var(--serif); font-size: 1.05rem; }
.cart-line__unit { font-size: 0.78rem; color: var(--muted); }

/* Payment flows */
.payment-flow--upi { }
.upi-qr { display: flex; gap: 22px; align-items: center; padding: var(--space-5); background: white; border: 1px solid var(--line); border-radius: 4px; }
.upi-qr__image { background: white; padding: var(--space-2); border: 1px solid var(--line); border-radius: 4px; }
.upi-qr__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.upi-qr__id { font-family: ui-monospace, monospace; font-size: 1.05rem; color: var(--forest); font-weight: 600; }
.upi-qr__amount { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-top: 4px; }
.upi-qr__merchant { font-size: 0.85rem; color: var(--ink-mid); margin-top: 4px; }
.payment-fine { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.bank-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
.bank-option { display: flex; align-items: center; gap: 10px; padding: var(--space-3); background: var(--cream); border: 1px solid var(--line); border-radius: 3px; cursor: pointer; }
.bank-option input { accent-color: var(--forest); }
.bank-option:hover { border-color: var(--gold); }
.modal-close { transition: color 0.15s; }
.modal-close:hover { color: var(--ink); }
.order-confirm__icon { display: inline-block; }

/* Sale badge in shop */
.shop-card__badge--sale { background: #8B2A2A; color: white; font-weight: 600; }
.shop-card.is-on-sale { position: relative; }
.shop-card.is-on-sale::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(139, 42, 42, 0.3); border-radius: var(--radius, 4px); pointer-events: none; }

/* Payment status rows */
.payment-status { display: flex; flex-direction: column; gap: var(--space-2); }
.payment-status__row { display: flex; justify-content: space-between; align-items: center; padding: var(--space-2) 0; border-bottom: 1px solid var(--line-light); font-size: 0.9rem; }
.payment-status__row:last-child { border-bottom: 0; }
.payment-status__row .on { color: #2A7050; font-weight: 500; }
.payment-status__row .off { color: var(--muted); }

/* Wizard */
.wizard-progress { height: 4px; background: var(--cream); }
.wizard-progress__bar { height: 100%; background: var(--gold); transition: width 0.3s ease; }
.wizard-footer { display: flex; justify-content: space-between; align-items: center; padding: 18px 32px; border-top: 1px solid var(--line); background: var(--cream); }
.wizard-checklist { list-style: none; padding: 0; margin: 0; }
.wizard-checklist li { padding: var(--space-2) 0; border-bottom: 1px solid var(--line-light); font-size: 0.95rem; }
.wizard-checklist li:last-child { border-bottom: 0; }
.wizard-payments { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: 14px; }
.wizard-payment { padding: 14px; background: var(--cream); border-radius: 4px; }
.wizard-next-steps { padding-left: 22px; }
.wizard-next-steps li { padding: 6px 0; }
fieldset { border-radius: 4px; }

/* Make form-grid handle more layouts */
.form-grid--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .form-grid--2, .form-grid--3 { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITY CLASSES — for inline style migration
   ============================================================ */





.u-flex-center-gap14-mb12 { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }












.u-mt-18 { margin-top: 18px; }

.u-mt-24 { margin-top: 24px; }



.u-mt-6-block { display: block; margin-top: 6px; }
.u-mt-8-block { display: block; margin-top: 8px; }


.u-mt-14-block-center { display: block; margin-top: 14px; text-align: center; }



.u-mb-8-block { display: block; margin-bottom: 8px; }



.u-ml-6 { margin-left: 6px; }


.u-text-center-mt32 { text-align: center; margin-top: 32px; }
.u-text-uppercase-letter { text-transform: uppercase; letter-spacing: 0.04em; }
.u-text-mb0 { margin: 0; }


.u-display-inline-block-5 { display: inline-block; opacity: 0.5; }

.u-ink-2-88 { font-size: 0.88rem; color: var(--ink-2); }
.u-serif-1-1-mb6 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 6px; }
.u-serif-gold-deep { font-family: var(--serif); color: var(--gold-deep); }


.u-cream-70 { color: rgba(241, 236, 226, 0.7); }
.u-cream-85 { color: rgba(241, 236, 226, 0.85); }
.u-cream { color: var(--cream); }
.u-cream-underline { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
.u-muted { color: var(--muted); }


.u-h1-center { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 680px; text-align: center; }

.u-filter-invert { filter: invert(1); }
.u-mt-24-1-1 { margin-top: 24px; font-size: 1.1rem; }


.u-mb0-10 { color: inherit; margin: 0 10px; }
.u-gold-light-6 { color: var(--gold-light); opacity: 0.6; margin-left: 6px; }

/* =========================================================================
   CHECKOUT FLOW — Customer Details / Shipping / Payment steps
   ========================================================================= */
.cart-flow {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-flow { grid-template-columns: 1fr; }
  .cart-flow > aside.cart-summary { position: static !important; }
}

.cart-main { display: flex; flex-direction: column; gap: 24px; min-width: 0; }

/* Step container */
.checkout-step {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.checkout-step.is-active { border-color: var(--ink); box-shadow: 0 4px 18px rgba(42, 112, 80, 0.06); }
.checkout-step__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.checkout-step__num {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  flex-shrink: 0;
}
.checkout-step__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
}
.checkout-step__edit {
  background: transparent;
  border: 0;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkout-step__edit:hover { color: var(--forest); }
.checkout-step__body { padding: 24px; }

/* Account chip (Google / guest) */
.checkout-account-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: var(--ink-2);
}
.checkout-account-chip a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.checkout-account-chip a:hover { color: var(--forest); }

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-section {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-2);
  margin: 24px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.form-actions .btn { min-width: 180px; }
@media (max-width: 600px) { .form-actions { flex-direction: column-reverse; } .form-actions .btn { width: 100%; } }

.form-b2b {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 4px;
  font-size: 0.88rem;
}
.form-b2b summary {
  cursor: pointer;
  color: var(--ink-2);
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-b2b summary::before {
  content: '+';
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  line-height: 1;
}
.form-b2b[open] summary::before { content: '−'; }
.form-b2b summary::-webkit-details-marker { display: none; }

.form-toggles { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink-2);
  user-select: none;
}
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle__track {
  position: relative;
  display: inline-block;
  width: 38px; height: 22px;
  background: var(--line);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.toggle__track::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease);
}
.toggle input:checked + .toggle__track { background: var(--forest); }
.toggle input:checked + .toggle__track::after { transform: translateX(16px); }

/* Field states */
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field__label .req { color: #b04545; margin-left: 2px; }
.field__input,
.field__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(42, 112, 80, 0.18);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s var(--ease);
  -webkit-appearance: none;
}
.field__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%231F3A2E' stroke-width='1.5'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field__input:focus,
.field__select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(42, 112, 80, 0.08);
}
.field__input::placeholder { color: var(--muted); }
.field__input.is-invalid,
.field__select.is-invalid {
  border-color: #b04545;
  background-color: rgba(176,69,69,0.03);
}
.field__input.is-invalid:focus,
.field__select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(176,69,69,0.1);
}
.field__input.is-valid,
.field__select.is-valid {
  border-color: rgba(42, 112, 80, 0.4);
}
.field__help { font-size: 0.75rem; color: var(--muted); margin: 4px 0 0; }
.field__hint {
  font-size: 0.75rem;
  margin-top: 4px;
  color: var(--muted);
  min-height: 0;
}
.field__hint--error { color: #b04545; }
.field__hint--ok { color: var(--forest); }

/* Phone with +91 prefix */
.field__phone { position: relative; display: flex; }
.field__phone-prefix {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  pointer-events: none;
  z-index: 1;
}
.field__phone .field__input { padding-left: 46px; }

/* Trust badges in summary */
.cart-summary__trust {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.trust-row svg { color: var(--forest); flex-shrink: 0; }

/* Cart line improvements (better grid) */
.cart-line {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-line:last-child { border-bottom: 0; }
.cart-line__body { min-width: 0; }
.cart-line__price-col { text-align: right; }
@media (max-width: 600px) {
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line__price-col { grid-column: 2; text-align: left; margin-top: 8px; }
}

/* Inline order chip in step 2 / 3 if user clicks edit */
.checkout-summary-mini {
  background: var(--cream);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.checkout-summary-mini strong { color: var(--ink); }

/* =========================================================================
   Nav account chip + sign-in link
   ========================================================================= */
.nav__account-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: rgba(42, 112, 80, 0.06);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
  max-width: 160px;
}
.nav__account-chip:hover { background: rgba(42, 112, 80, 0.12); }
.nav__account-chip__img,
.nav__account-chip__initial {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  flex-shrink: 0;
}
.nav__account-chip__img { object-fit: cover; }
.nav__account-chip__hi {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav__signin-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(42, 112, 80, 0.2);
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.nav__signin-link:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
@media (max-width: 1900px) {
  .nav__signin-link span { display: none; }
  .nav__signin-link { padding: 8px 10px; }
}
@media (max-width: 700px) {
  .nav__account-chip__hi { display: none; }
  .nav__account-chip { padding: 4px; }
  .nav__signin-link { padding: 6px 8px; font-size: 0.78rem; }
  .nav__signin-link svg { margin-right: 0; }
}

/* =========================================================================
   v3.5.22 — Returns, Cancellations, Invoices, DPDP, Premium features
   ========================================================================= */

/* ---------- DPDP Cookie Consent Banner ---------- */
.dpdp-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 100%;
  margin: 0 auto;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 -2px 24px rgba(42, 112, 80, 0.10);
  padding: 16px 24px;
  z-index: 10000;
  display: none;
  font-size: 0.85rem;
  line-height: 1.5;
}
.dpdp-banner.is-visible { display: block; }
.dpdp-banner__title { font-family: var(--serif); font-size: 1rem; margin: 0 0 4px; color: var(--ink); font-weight: 500; }
.dpdp-banner__body { color: var(--ink-2); margin: 0 0 12px; font-size: 0.82rem; line-height: 1.5; }
.dpdp-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.dpdp-banner__actions .btn { font-size: 0.78rem; padding: 8px 14px; }
.dpdp-banner__link { color: var(--ink-2); text-decoration: underline; font-size: 0.78rem; margin-left: 0; }
@media (min-width: 800px) {
  .dpdp-banner.is-visible {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 32px;
  }
  .dpdp-banner__body { margin: 0; flex: 1; }
  .dpdp-banner__actions { flex-shrink: 0; }
  .dpdp-banner__link { margin-left: auto; }
}
/* Mobile layout: stack everything, full-width buttons, prevent overflow */
@media (max-width: 540px) {
  .dpdp-banner { padding: 12px 16px; max-width: 100%; }
  .dpdp-banner__title { font-size: 0.92rem; }
  .dpdp-banner__body { font-size: 0.78rem; line-height: 1.4; }
  .dpdp-banner__actions { gap: 6px; }
  .dpdp-banner__actions .btn { font-size: 0.74rem; padding: 7px 12px; flex: 1; min-width: 0; text-align: center; }
  .dpdp-banner__link { font-size: 0.74rem; width: 100%; text-align: right; margin-top: 4px; }
}
@media (max-width: 600px) { .dpdp-banner { left: 12px; right: 12px; padding: 16px; } .dpdp-banner__link { margin-left: 0; } }

/* DPDP consent modal (granular per-purpose) */
.dpdp-modal { position: fixed; inset: 0; z-index: 1001; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(42, 112, 80, 0.55); backdrop-filter: blur(4px); }
.dpdp-modal.is-visible { display: flex; }
.dpdp-modal__card { background: var(--ivory); border-radius: 4px; max-width: 560px; width: 100%; max-height: 90vh; overflow: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.25); }
.dpdp-modal__head { padding: 20px 24px; border-bottom: 1px solid var(--line); }
.dpdp-modal__title { font-family: var(--serif); font-size: 1.4rem; margin: 0; font-weight: 500; }
.dpdp-modal__body { padding: 20px 24px; }
.dpdp-purpose { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; }
.dpdp-purpose:last-child { border-bottom: 0; }
.dpdp-purpose__info { flex: 1; }
.dpdp-purpose__name { font-weight: 500; margin: 0 0 4px; color: var(--ink); }
.dpdp-purpose__desc { font-size: 0.82rem; color: var(--muted); margin: 0; }
.dpdp-purpose__req { font-size: 0.7rem; color: var(--forest); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.dpdp-modal__foot { padding: 16px 24px; border-top: 1px solid var(--line); display: flex; gap: 8px; justify-content: flex-end; }

/* ---------- Returns & Cancellations ---------- */
.rc-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.rc-card__head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.rc-card__head h3 { font-family: var(--serif); font-size: 1.15rem; margin: 0; font-weight: 500; flex: 1; }
.rc-card__body { padding: 22px; }
.rc-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .rc-card__row { grid-template-columns: 1fr; } }
.rc-card__actions { display: flex; gap: 8px; justify-content: flex-end; padding: 16px 22px; border-top: 1px solid var(--line); background: var(--cream); }

.rc-photos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.rc-photo { width: 80px; height: 80px; border-radius: 4px; background: var(--bone); overflow: hidden; position: relative; cursor: pointer; }
.rc-photo img { width: 100%; height: 100%; object-fit: cover; }
.rc-photo__remove { position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; background: rgba(0,0,0,0.6); color: white; border: 0; border-radius: 50%; cursor: pointer; font-size: 0.7rem; line-height: 1; }
.rc-photo__add { display: grid; place-items: center; border: 2px dashed var(--line); color: var(--muted); cursor: pointer; }
.rc-photo__add:hover { border-color: var(--ink-2); color: var(--ink); }

.rc-policy-banner { background: var(--cream); border: 1px solid var(--line); border-radius: 4px; padding: 12px 16px; margin-bottom: 16px; display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; line-height: 1.5; }
.rc-policy-banner svg { color: var(--forest); flex-shrink: 0; margin-top: 2px; }
.rc-policy-banner strong { color: var(--ink); }

/* Refund preview */
.rc-refund-preview { background: var(--cream); border-radius: 4px; padding: 16px; margin-top: 14px; }
.rc-refund-preview__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; }
.rc-refund-preview__row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 500; font-family: var(--serif); font-size: 1.05rem; }

/* Status badges for returns/cancellations */
.status-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.status-pill--pending { background: rgba(212,162,86,0.15); color: #8B6B3E; }
.status-pill--approved { background: rgba(42, 112, 80, 0.1); color: var(--forest); }
.status-pill--rejected { background: rgba(176,69,69,0.1); color: #b04545; }
.status-pill--completed { background: rgba(42, 112, 80, 0.15); color: var(--forest); }
.status-pill--shipped { background: rgba(91,91,214,0.1); color: #3A3A8E; }
.status-pill--received { background: rgba(42, 112, 80, 0.1); color: var(--forest); }

/* ---------- Invoice ---------- */
.invoice-container { max-width: 800px; margin: 0 auto; background: white; padding: 48px; border-radius: 4px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
@media (max-width: 700px) { .invoice-container { padding: 24px; } }
.invoice-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.invoice-head__logo { width: 80px; height: 80px; }
.invoice-head__title h1 { font-family: var(--serif); font-size: 2rem; margin: 0 0 4px; font-weight: 500; }
.invoice-head__title p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.invoice-head__meta { text-align: right; font-size: 0.88rem; }
.invoice-head__meta-row { display: flex; gap: 16px; justify-content: flex-end; margin: 2px 0; }
.invoice-head__meta-row span:first-child { color: var(--muted); }

.invoice-parties { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 24px 0; }
@media (max-width: 600px) { .invoice-parties { grid-template-columns: 1fr; gap: 16px; } }
.invoice-party h4 { font-family: var(--serif); font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 8px; font-weight: 500; }
.invoice-party__name { font-weight: 500; margin: 0 0 4px; }
.invoice-party__detail { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }
.invoice-party__detail strong { color: var(--ink-2); }

.invoice-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.85rem; }
.invoice-table th { text-align: left; padding: 10px 8px; background: var(--cream); color: var(--ink-2); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.invoice-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.invoice-table tfoot td { font-weight: 500; border-bottom: 0; }
.invoice-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.invoice-table .center { text-align: center; }
.invoice-table .small { font-size: 0.78rem; color: var(--muted); }

.invoice-totals { margin: 24px 0; display: flex; justify-content: flex-end; }
.invoice-totals__box { min-width: 280px; }
.invoice-totals__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.invoice-totals__row--grand { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 12px; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.invoice-totals__row--discount { color: var(--forest); }
.invoice-totals__row--tax { color: var(--muted); font-size: 0.82rem; }

.invoice-footer { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.invoice-footer__signature { text-align: center; }
.invoice-footer__signature-img { max-width: 120px; max-height: 60px; opacity: 0.85; }
.invoice-footer__signature-line { border-top: 1px solid var(--ink-2); margin-top: 32px; padding-top: 4px; font-size: 0.78rem; color: var(--muted); }
.invoice-footer__terms { font-size: 0.78rem; color: var(--muted); max-width: 360px; line-height: 1.5; }
.invoice-footer__terms h5 { font-family: var(--serif); color: var(--ink-2); font-size: 0.82rem; margin: 0 0 4px; font-weight: 500; }

.invoice-qr { text-align: right; }
.invoice-qr img { width: 100px; height: 100px; }

/* ---------- Policy editor (admin) ---------- */
.policy-editor { background: var(--ivory); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.policy-editor__head { padding: 16px 20px; background: var(--cream); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.policy-editor__head h3 { font-family: var(--serif); font-size: 1.1rem; margin: 0; font-weight: 500; flex: 1; }
.policy-editor__body { padding: 20px; }
.policy-editor__row { display: grid; grid-template-columns: 200px 1fr; gap: 14px; align-items: center; margin-bottom: 12px; }
@media (max-width: 600px) { .policy-editor__row { grid-template-columns: 1fr; } }
.policy-editor__row label { font-size: 0.88rem; color: var(--ink-2); }
.policy-editor textarea { min-height: 200px; font-family: ui-monospace, monospace; font-size: 0.85rem; line-height: 1.5; }
.policy-editor__toggle { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--cream); border-radius: 4px; margin-bottom: 12px; }
.policy-editor__toggle input { width: 40px; height: 22px; }

.policy-version { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--cream); border-radius: 4px; margin-bottom: 8px; font-size: 0.85rem; }
.policy-version__num { font-family: var(--serif); font-weight: 500; }
.policy-version__date { color: var(--muted); font-size: 0.78rem; }
.policy-version__active { margin-left: auto; background: rgba(42, 112, 80, 0.1); color: var(--forest); padding: 2px 8px; border-radius: 999px; font-size: 0.7rem; }

/* ---------- Gift wrap / Loyalty / Premium ---------- */
.gift-section { background: var(--cream); border: 1px solid var(--line); border-radius: 4px; padding: 16px 20px; margin-top: 14px; }
.gift-section__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.gift-section__head h4 { font-family: var(--serif); font-size: 1rem; margin: 0; font-weight: 500; flex: 1; }
.gift-section__fee { color: var(--muted); font-size: 0.82rem; }
.gift-wrap-options { display: flex; gap: 8px; margin: 12px 0; }
.gift-wrap-option { flex: 1; padding: 12px; border: 2px solid transparent; border-radius: 4px; background: white; cursor: pointer; text-align: center; transition: all 0.15s; }
.gift-wrap-option.is-active { border-color: var(--ink); }
.gift-wrap-option__swatch { width: 100%; height: 32px; border-radius: 2px; margin-bottom: 6px; }
.gift-wrap-option__name { font-size: 0.78rem; color: var(--ink-2); }

.loyalty-bar { background: linear-gradient(90deg, var(--gold) var(--pct, 0%), var(--line) var(--pct, 0%)); height: 6px; border-radius: 3px; margin: 8px 0; }
.loyalty-tier { font-family: var(--serif); color: var(--gold-deep); font-size: 0.95rem; }
.loyalty-points { font-family: var(--serif); font-size: 2rem; color: var(--ink); margin: 4px 0; }

/* ---------- Order tracking timeline ---------- */
.tracking-card { background: var(--ivory); border: 1px solid var(--line); border-radius: 4px; padding: 20px 24px; }
.tracking-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tracking-head__id { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.tracking-head__status { margin-left: auto; }
.tracking-timeline { position: relative; padding-left: 28px; }
.tracking-timeline::before { content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tracking-step { position: relative; padding: 10px 0; }
.tracking-step__dot { position: absolute; left: -24px; top: 14px; width: 16px; height: 16px; border-radius: 50%; background: var(--line); border: 3px solid var(--ivory); }
.tracking-step.is-done .tracking-step__dot { background: var(--forest); }
.tracking-step.is-current .tracking-step__dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(212,162,86,0.2); }
.tracking-step.is-current { font-weight: 500; }
.tracking-step__label { font-size: 0.92rem; }
.tracking-step__time { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.tracking-step__note { font-size: 0.82rem; color: var(--ink-2); margin-top: 4px; }
.tracking-step__eta { font-size: 0.78rem; color: var(--muted); margin-top: 2px; font-style: italic; }

/* ---------- Gift card ---------- */
.gift-card-tile { background: linear-gradient(135deg, var(--forest) 0%, #2A7050 100%); color: var(--cream); padding: 18px 20px; border-radius: 6px; position: relative; overflow: hidden; }
.gift-card-tile::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(176,139,87,0.18) 0%, transparent 50%); }
.gift-card-tile__code { font-family: ui-monospace, monospace; font-size: 0.92rem; letter-spacing: 0.1em; padding: 6px 10px; background: rgba(255,255,255,0.12); border-radius: 3px; display: inline-block; margin: 4px 0; }
.gift-card-tile__balance { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.gift-card-tile__label { font-size: 0.72rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; }

/* Empty state, used by many premium features */
.premium-empty { text-align: center; padding: 48px 20px; }
.premium-empty__icon { font-size: 2.4rem; opacity: 0.4; margin-bottom: 12px; }
.premium-empty h3 { font-family: var(--serif); font-size: 1.2rem; margin: 0 0 6px; }
.premium-empty p { color: var(--muted); font-size: 0.9rem; margin: 0 0 16px; }

/* Admin: cancellation/return/notification queues */
.queue-table { background: var(--ivory); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.queue-table__head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.queue-table__head h3 { font-family: var(--serif); font-size: 1.1rem; margin: 0; font-weight: 500; flex: 1; }
.queue-table table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.queue-table th { text-align: left; padding: 10px 16px; background: var(--cream); color: var(--ink-2); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.queue-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.queue-table tr:hover td { background: var(--cream); cursor: pointer; }
.queue-table .queue-empty { padding: 48px 20px; text-align: center; color: var(--muted); }

/* Notification log */
.notif-log { display: flex; flex-direction: column; gap: 8px; }
.notif-row { display: grid; grid-template-columns: 90px 1fr 100px 100px 80px; gap: 14px; padding: 12px 16px; background: var(--ivory); border: 1px solid var(--line); border-radius: 4px; align-items: center; font-size: 0.85rem; }
@media (max-width: 800px) { .notif-row { grid-template-columns: 1fr; } }
.notif-row__channel { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.notif-row__channel--email { background: rgba(91,91,214,0.1); color: #3A3A8E; }
.notif-row__channel--sms { background: rgba(42, 112, 80, 0.1); color: var(--forest); }
.notif-row__channel--whatsapp { background: rgba(42,158,107,0.1); color: #2A9E6B; }

/* =========================================================================
   Our Story timeline (about.html)
   ========================================================================= */
.story-timeline { padding: 70px 0 80px; }
.story-timeline h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0; }
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 920px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-deep) 0%, var(--gold-deep) 60%, transparent 100%);
  opacity: 0.4;
}
.timeline__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  padding: 24px 0 24px 0;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 106px;
  top: 36px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold-deep);
  z-index: 1;
}
.timeline__year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  padding-top: 22px;
  text-align: right;
}
.timeline__body { padding-left: 14px; }
.timeline__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}
.timeline__ja { margin-bottom: 10px; display: block; }
.timeline__body p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}
.timeline__body em { font-style: italic; color: var(--gold-text); }

@media (max-width: 720px) {
  .timeline::before { left: 14px; }
  .timeline__item { grid-template-columns: 1fr; gap: 6px; padding-left: 40px; }
  .timeline__item::before { left: 10px; top: 30px; }
  .timeline__year { text-align: left; padding-top: 0; font-size: 1.3rem; }
  .timeline__body { padding-left: 0; }
  .timeline__title { font-size: 1.2rem; }
}

/* =========================================================================
   PDP "How To Use" ritual steps (product.html)
   ========================================================================= */
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 28px 0 14px;
}
.ritual-step {
  background: var(--cream-soft);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 24px 22px 26px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.ritual-step:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.ritual-step__num {
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  letter-spacing: 0;
}
.ritual-step__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  display: block;
  color: var(--gold-deep);
  line-height: 1;
}
.ritual-step__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ritual-step__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.ritual-step__body {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .ritual-steps { grid-template-columns: 1fr; }
}

/* =========================================================================
   PDP "Key Ingredients" cards (product.html)
   ========================================================================= */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 14px;
}
.ingredient-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px 20px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(176,139,87,0.08), transparent 70%);
  pointer-events: none;
}
.ingredient-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.ingredient-card__kanji {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: 0.7rem;
  color: var(--gold-deep);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.ingredient-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.ingredient-card__origin {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  display: block;
}
.ingredient-card__story {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .ingredients-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Ritual Sets (shop.html collection cards)
   ========================================================================= */
.ritual-set-card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ritual-set-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 180%;
  background: radial-gradient(circle, rgba(176,139,87,0.07) 0%, transparent 60%);
  pointer-events: none;
  transform: rotate(15deg);
}
.ritual-set-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,26,26,0.06); border-color: var(--gold-deep); }
.ritual-set-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.ritual-set-card__pole {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.25em;
  margin: 0;
}
.ritual-set-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}
.ritual-set-card__lede {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}
.ritual-set-card__items {
  list-style: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ritual-set-card__items li {
  font-size: 0.85rem;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.ritual-set-card__items li::before {
  content: '◦';
  position: absolute;
  left: 4px;
  color: var(--gold-deep);
  font-size: 1.1rem;
  line-height: 1;
}
.ritual-set-card__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 4px;
}
.ritual-set-card__price small {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}
.ritual-set-card__cta { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.ritual-set-card__cta .btn { flex: 1; justify-content: center; }

.ritual-set-card--evening { background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%); color: var(--cream); border-color: transparent; }
.ritual-set-card--evening .ritual-set-card__pole { color: var(--gold-light); }
.ritual-set-card--evening .ritual-set-card__title { color: var(--cream); }
.ritual-set-card--evening .ritual-set-card__lede { color: rgba(241,236,226,0.78); }
.ritual-set-card--evening .ritual-set-card__items li { color: rgba(241,236,226,0.85); }
.ritual-set-card--evening .ritual-set-card__items li::before { color: var(--gold-light); }
.ritual-set-card--evening .ritual-set-card__price { color: var(--cream); }
.ritual-set-card--evening .ritual-set-card__price small { color: rgba(241,236,226,0.55); }
.ritual-set-card--evening .btn--primary { background: var(--cream); color: var(--ink); }
.ritual-set-card--evening .btn--primary:hover { background: var(--gold); color: var(--ink); }
.ritual-set-card--evening .btn--ghost { border-color: rgba(241,236,226,0.35); color: var(--cream); }
.ritual-set-card--evening .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.ritual-sets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 40px 0 20px;
}
@media (max-width: 820px) { .ritual-sets-grid { grid-template-columns: 1fr; } }

.ritual-sets-intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.ritual-sets-intro__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

/* =========================================================================
   Hero ritual illustrations (shop.html ritual details)
   Note: The base layout lives in css/ritual-illustrations.css.
   This file just sets color and the global stroke style.
   ========================================================================= */
.ritual-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-deep);
  position: relative;
}
.ritual-hero--teacup  { color: var(--gold-deep); }
.ritual-hero--evening { color: var(--gold-deep); }
.ritual-hero svg {
  width: 100%;
  height: auto;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
/* Size variants — kept in sync with ritual-illustrations.css */
.ritual-hero--teacup svg    { max-width: 280px; }
.ritual-hero--evening svg   { max-width: 580px; }
@media (min-width: 900px) {
  .ritual-hero--evening svg { max-width: 620px; }
}
@media (max-width: 600px) {
  .ritual-hero--teacup svg  { max-width: 220px; }
  .ritual-hero--evening svg { max-width: 100%; }
}

/* Subtle colorways */
.ritual-hero--sun  { color: var(--gold-deep); opacity: 0.85; }
.ritual-hero--moon { color: var(--gold-deep); opacity: 0.8; }

/* Subtle animations for ritual hero illustrations */
@keyframes illu-steam-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.85; }
  50%  { transform: translateY(-3px) scale(1.03); opacity: 0.6; }
  100% { transform: translateY(0) scale(1); opacity: 0.85; }
}
.illu-steam path { animation: illu-steam-rise 2.4s ease-in-out infinite; transform-origin: center; }

@keyframes illu-smoke-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  50%  { transform: translateY(-4px) scale(1.05); opacity: 0.4; }
  100% { transform: translateY(0) scale(1); opacity: 0.7; }
}
.illu-smoke path, .illu-smoke-arc { animation: illu-smoke-rise 3.6s ease-in-out infinite; transform-origin: center; }

@keyframes illu-flame-flicker {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  25%      { transform: scaleY(1.05) translateY(-1px); opacity: 0.92; }
  50%      { transform: scaleY(0.98) translateY(0.5px); opacity: 1; }
  75%      { transform: scaleY(1.03) translateY(-0.5px); opacity: 0.95; }
}
.illu-flame-outer, .illu-flame-inner {
  animation: illu-flame-flicker 1.6s ease-in-out infinite;
  transform-origin: center bottom;
}
.illu-spark { animation: illu-flame-flicker 0.8s ease-in-out infinite; transform-origin: center; }

@keyframes illu-water-ripple {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(2px); }
  100% { transform: translateX(0); }
}
.illu-water { animation: illu-water-ripple 3.2s ease-in-out infinite; }

@keyframes illu-bird-fly {
  0%, 100% { transform: translateX(0) translateY(0); opacity: 0.9; }
  50%      { transform: translateX(8px) translateY(-2px); opacity: 0.6; }
}
.illu-bird { animation: illu-bird-fly 4s ease-in-out infinite; }

@keyframes illu-star-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}
.illu-stars path { animation: illu-star-twinkle 2.4s ease-in-out infinite; transform-origin: center; }

/* Enso draw-in animation (used by ritual hero enso) */
.illu-enso-draw {
  animation: enso-draw 2s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes enso-draw {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}

/* Inline sun/moon deco next to ritual set titles */
.ritual-set-card__deco {
  display: inline-block;
  vertical-align: middle;
  margin-left: 14px;
  width: 100px;
  height: 32px;
  color: var(--gold-deep);
  opacity: 0.75;
}
.ritual-set-card__deco svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
@media (max-width: 600px) {
  .ritual-set-card__deco { display: none; }
}

/* =========================================================================
   Page entry: subtle fade-in for the whole body
   ========================================================================= */
body { animation: page-fade-in 0.6s ease-out forwards; }
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .illu-steam path, .illu-smoke path, .illu-flame-outer, .illu-flame-inner,
  .illu-water, .illu-bird, .illu-stars path, .illu-smoke-arc,
  #enso-header-mark svg, .illu-enso-draw { animation: none !important; }
}

/* =========================================================================
   Per-icon micro-animations (ritual step icons, 32x32)
   Reuses the keyframes from ritual illustrations, plus adds a few
   for bubble pulse, sparkle twinkle, sun-ray, breath, leaf sway, etc.
   ========================================================================= */
@keyframes illu-bubble-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.illu-bubble { animation: illu-bubble-pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes illu-sparkle-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.1); }
}
.illu-sparkle { animation: illu-sparkle-twinkle 1.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes illu-sun-ray {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%      { opacity: 1; transform: scale(1.08); }
}
.illu-sun-ray { animation: illu-sun-ray 1.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.illu-sun { animation: illu-sun-ray 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes illu-breath-cycle {
  0%, 100% { opacity: 0.55; transform: translateX(0); }
  50%      { opacity: 1; transform: translateX(0.5px); }
}
.illu-breath-1, .illu-breath-2, .illu-breath-3 {
  animation: illu-breath-cycle 3.2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.illu-breath-2 { animation-delay: 0.3s; }
.illu-breath-3 { animation-delay: 0.6s; }

@keyframes illu-wait-tick {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.illu-wait { animation: illu-wait-tick 1s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes illu-droplet-drip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(0.6px); }
}
.illu-droplet { animation: illu-droplet-drip 1.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes illu-leaf-sway {
  0%, 100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1deg); }
}
.illu-leaf { animation: illu-leaf-sway 4s ease-in-out infinite; transform-origin: 12px 19px; transform-box: fill-box; }
.illu-leaf-vein { animation: illu-leaf-sway 4s ease-in-out infinite; transform-origin: 12px 19px; transform-box: fill-box; }

/* Tighter animations for the small 32px icons */
.ritual-step__icon .illu-flame-outer,
.ritual-step__icon .illu-flame-inner {
  animation-duration: 1.2s;
  transform-origin: center bottom;
  transform-box: fill-box;
}
.ritual-step__icon .illu-spark { animation-duration: 0.6s; }
.ritual-step__icon .illu-steam { animation-duration: 1.8s; }
.ritual-step__icon .illu-water { animation-duration: 2.4s; }

/* =========================================================================
   RITUAL LANDING PAGE (ritual.html)
   ========================================================================= */
.ritual-hero-page {
  padding: 130px 0 50px;
  background: var(--cream);
  text-align: center;
  position: relative;
}
.ritual-hero-page__inner { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.ritual-hero-page__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.ritual-hero-page__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.ritual-hero-page__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.ritual-hero-page__lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto 50px;
}
.ritual-hero-page__illu {
  max-width: 480px;
  margin: 0 auto 50px;
  color: var(--gold-deep);
}
.ritual-hero-page__illu svg { width: 100%; height: auto; }
.ritual-hero-page__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Three truths grid */
.ritual-truths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.ritual-truth-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px 36px;
  position: relative;
}
.ritual-truth-card__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.ritual-truth-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.ritual-truth-card .ja { display: block; margin-bottom: 14px; }
.ritual-truth-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 820px) {
  .ritual-truths__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* The Morning / The Evening pole sections */
.ritual-pole { padding: 64px 0; }
.ritual-pole__lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 14px 0 22px;
}
.ritual-pole__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ritual-pole__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
}

/* Four senses grid */
.ritual-senses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
  max-width: 920px;
}
.ritual-sense {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px 30px;
  transition: all 0.3s var(--ease);
}
.ritual-sense:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.ritual-sense__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ritual-sense__icon svg { width: 100%; height: 100%; }
.ritual-sense__body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 2px;
  letter-spacing: 0.01em;
}
.ritual-sense__body .ja { display: block; margin-bottom: 8px; }
.ritual-sense__body p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .ritual-senses__grid { grid-template-columns: 1fr; }
}

/* Forest CTA */
.ritual-cta { padding: 110px 0; }
.ritual-cta__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.ritual-cta__inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 1.1;
}
.ritual-cta__inner .ja { display: block; margin-bottom: 18px; }
.ritual-cta__inner p {
  color: rgba(241, 236, 226, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 600px;
}
.ritual-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ritual-cta__actions .btn--ghost {
  border-color: rgba(241, 236, 226, 0.4);
  color: var(--cream);
}
.ritual-cta__actions .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

/* v5.5 — Home page redesign: offer grid, product card grid, testimonials, newsletter, founder */
.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; }

.hero__trust {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.05em; color: var(--muted);
}
.hero__trust li { display: flex; align-items: center; gap: 6px; }

/* What we offer — 3-card grid */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--cream, #FBF8F1);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider, #E6E0D0);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(45,68,35,0.12); }
.offer-card__media { aspect-ratio: 3/2; overflow: hidden; background: var(--divider, #E6E0D0); }
.offer-card__media img { width:100%; height:100%; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .offer-card__media img { transform: scale(1.05); }
.offer-card__body { padding: 24px 28px 32px; }
.offer-card__num {
  font-family: var(--f-serif, serif); font-style: italic;
  font-size: 13px; color: var(--gold-deep, #8A6D3B);
  letter-spacing: 0.05em;
}
.offer-card h3 {
  font-family: var(--f-serif, serif); font-size: 26px; font-weight: 400;
  margin: 4px 0 12px; color: var(--ink, #1A1A1A);
}
.offer-card p { color: var(--muted, #6B6B6B); line-height: 1.55; margin: 0 0 16px; }
.offer-card__cta {
  display: inline-block; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--forest, #2A7050);
  font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* Product grid for featured products */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--cream, #FBF8F1);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid var(--divider, #E6E0D0);
}
.product-card:hover { transform: translateY(-2px); }
.product-card__media { aspect-ratio: 1/1; overflow: hidden; background: var(--divider, #E6E0D0); }
.product-card__media img { width:100%; height:100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body { padding: 16px 20px 22px; }
.product-card__name { font-family: var(--f-serif, serif); font-size: 18px; font-weight: 400; margin: 6px 0 4px; color: var(--ink, #1A1A1A); }
.product-card__sub { font-size: 12px; color: var(--muted, #6B6B6B); margin: 0 0 8px; line-height: 1.4; }
.product-card__price { font-family: var(--f-mono, monospace); font-size: 14px; color: var(--forest, #2A7050); font-weight: 500; }

.badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--bestseller { background: rgba(45, 68, 35, 0.12); color: var(--forest, #2A7050); }
.badge--new        { background: rgba(176, 139, 87, 0.18); color: var(--gold-deep, #8A6D3B); }
.badge--limited    { background: rgba(176, 122, 122, 0.18); color: #8B4040; }

.section__cta { text-align: center; margin-top: 48px; }

/* Founder section */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }
.founder-media { position: relative; }
.founder-media img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px;
}
.founder-body h2 { font-family: var(--f-serif, serif); font-size: 44px; font-weight: 400; margin: 8px 0; color: var(--ink, #1A1A1A); }
.founder-tagline { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep, #8A6D3B); margin: 0 0 24px; }
.founder-body p { color: var(--muted, #6B6B6B); line-height: 1.65; margin: 0 0 18px; max-width: 56ch; }
.founder-body strong { color: var(--ink, #1A1A1A); }

/* Testimonials */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 40px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--cream, #FBF8F1);
  border: 1px solid var(--divider, #E6E0D0);
  border-radius: 6px; padding: 28px 24px 20px; margin: 0;
  position: relative;
}
.testimonial::before {
  content: '"'; font-family: var(--f-serif, serif); font-style: italic;
  position: absolute; top: -10px; left: 20px;
  font-size: 60px; color: var(--gold, #B08B57); line-height: 1; opacity: 0.5;
}
.testimonial blockquote {
  font-family: var(--f-serif, serif); font-style: italic;
  font-size: 16px; line-height: 1.55; color: var(--ink, #1A1A1A);
  margin: 0 0 16px;
}
.testimonial figcaption {
  font-size: 12px; color: var(--muted, #6B6B6B); letter-spacing: 0.04em;
}
.testimonial figcaption strong { color: var(--ink, #1A1A1A); }

/* Newsletter CTA */
.newsletter { padding: 0 24px; }
.newsletter__body { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter__body h2 { font-family: var(--f-serif, serif); font-size: 38px; font-weight: 400; margin: 8px 0 12px; }
.newsletter__body p { font-size: 16px; line-height: 1.55; margin: 0 0 24px; }
.newsletter__form {
  display: flex; gap: 8px; max-width: 440px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.newsletter__form input {
  flex: 1; min-width: 240px; padding: 12px 16px;
  border: 1px solid rgba(251,248,241,0.3);
  background: rgba(251,248,241,0.08);
  color: var(--cream, #FBF8F1); font-size: 14px; border-radius: 4px;
}
.newsletter__form input::placeholder { color: rgba(251,248,241,0.5); }
.newsletter__form input:focus { outline: 2px solid var(--gold, #B08B57); outline-offset: 2px; }

/* Section header consistency */
.section__head { text-align: center; max-width: 720px; margin: 0 auto; }
.section__head__title { font-family: var(--f-serif, serif); font-size: 38px; font-weight: 400; margin: 4px 0 12px; color: var(--ink, #1A1A1A); }
.section__head__sub { color: var(--muted, #6B6B6B); font-size: 15px; line-height: 1.6; margin: 0; }

/* Tighten section spacing to make home page feel more compact */
section.section { padding: 64px 0; }
@media (max-width: 600px) { section.section { padding: 48px 0; } }

/* v5.9 Shop Card — Bottom Add Button Layout */
.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
}
.shop-card__delivery {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--c-forest, #2A7050);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.shop-card__actions {
  padding: 0 16px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.shop-card__add {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cream, #FBF8F1);
  color: var(--c-forest, #2A7050);
  border: 1px solid var(--c-forest, #2A7050);
  padding: 8px 14px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-card__add:hover {
  background: var(--c-forest, #2A7050);
  color: var(--cream, #FBF8F1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 68, 35, 0.18);
}
.shop-card__add.is-added {
  background: var(--c-gold, #B08B57);
  color: white;
  border-color: var(--c-gold, #B08B57);
}
.shop-card__add svg {
  flex-shrink: 0;
}
.shop-card__add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.shop-card__add:disabled:hover {
  background: var(--cream, #FBF8F1);
  color: var(--c-forest, #2A7050);
  transform: none;
  box-shadow: none;
}
.shop-card__add.is-armed {
  background: var(--c-forest, #2A7050);
  color: var(--cream, #FBF8F1);
  border-color: var(--c-forest, #2A7050);
}

/* Quantity stepper for shop cards (Amazon-style) */
.qty-stepper--card {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--c-line, #E6E0D0);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream, #FBF8F1);
  height: 36px;
  min-width: 96px;
}
.qty-stepper--card .qty-stepper__btn {
  width: 28px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--c-forest, #2A7050);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
  font-family: var(--body);
}
.qty-stepper--card .qty-stepper__btn:hover {
  background: var(--c-bone, #F0E9D8);
}
.qty-stepper--card .qty-stepper__btn:active {
  background: var(--c-forest, #2A7050);
  color: var(--cream, #FBF8F1);
}
.qty-stepper--card .qty-stepper__input {
  width: 40px;
  height: 100%;
  border: 0;
  border-left: 1px solid var(--c-line, #E6E0D0);
  border-right: 1px solid var(--c-line, #E6E0D0);
  text-align: center;
  font-size: 0.92rem;
  font-family: var(--body);
  background: transparent;
  outline: none;
  color: var(--c-ink, #1A1A1A);
  -moz-appearance: textfield;
  font-weight: 500;
  padding: 0;
}
.qty-stepper--card .qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper--card .qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Mobile: bigger touch target */
@media (max-width: 768px) {
  .shop-card__add {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .shop-card__delivery {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
  .qty-stepper--card {
    height: 40px;
    min-width: 100px;
  }
  .qty-stepper--card .qty-stepper__btn {
    width: 32px;
    font-size: 1.15rem;
  }
  .qty-stepper--card .qty-stepper__input {
    width: 36px;
    font-size: 1rem;
  }
}

/* v5.9 Product Detail — Enhanced */
.pd-cat { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-gold-deep, #8A6D3B); margin-bottom: 8px; }
.pd-cat .ja { margin-left: 8px; opacity: 0.5; }
.pd-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; color: var(--ink, #1A1A1A); line-height: 1.2; margin: 0 0 8px; }
.pd-tagline { font-style: italic; color: var(--muted, #6B6B6B); margin-bottom: 12px; }
.pd-rating { font-size: 0.88rem; color: var(--c-gold, #B08B57); margin-bottom: 16px; }
.pd-price { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; margin-bottom: 16px; }
.pd-price__sale { color: var(--c-forest, #2A7050); }
.pd-price__compare { font-size: 1rem; color: var(--muted); text-decoration: line-through; margin-left: 12px; }
.pd-price__off { font-size: 0.78rem; font-weight: 700; color: var(--cream, #FBF8F1); background: var(--c-gold-deep, #8A6D3B); padding: 3px 8px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }
.pd-desc { color: var(--ink); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.pd-delivery { display: flex; align-items: center; gap: 12px; background: var(--cream, #FBF8F1); border: 1px solid var(--c-divider, #E6E0D0); border-radius: 6px; padding: 14px 16px; margin-bottom: 24px; }
.pd-delivery__icon { font-size: 1.6rem; }
.pd-delivery__title { font-weight: 600; color: var(--c-forest, #2A7050); }
.pd-delivery__sub { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
.pd-variants { margin-bottom: 20px; }
.pd-variants__label { font-size: 0.85rem; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
.pd-variants__options { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-variant { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 18px; border: 1px solid var(--c-divider, #E6E0D0); background: white; border-radius: 4px; cursor: pointer; transition: all 0.2s; font-family: var(--body); }
.pd-variant:hover { border-color: var(--c-forest, #2A7050); }
.pd-variant.is-active { border-color: var(--c-forest, #2A7050); background: var(--cream, #FBF8F1); }
.pd-variant__name { font-size: 0.85rem; font-weight: 500; }
.pd-variant__price { font-size: 0.78rem; color: var(--muted); }
.pd-qty { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pd-qty__label { font-size: 0.85rem; color: var(--ink); }
.pd-qty__controls { display: flex; align-items: center; border: 1px solid var(--c-divider); border-radius: 4px; overflow: hidden; }
.pd-qty__controls button { width: 36px; height: 36px; border: 0; background: var(--cream); cursor: pointer; font-size: 1.1rem; }
.pd-qty__controls button:hover { background: var(--c-divider); }
.pd-qty__controls span { width: 40px; text-align: center; font-weight: 500; }
.pd-stock { font-size: 0.78rem; padding: 4px 10px; border-radius: 3px; }
.pd-stock--in { color: var(--c-forest); background: rgba(45, 68, 35, 0.08); }
.pd-stock--low { color: var(--c-gold-deep); background: rgba(176, 139, 87, 0.12); font-weight: 600; }
.pd-stock--out { color: var(--muted); background: var(--c-divider); }
.pd-cta { display: flex; gap: 10px; margin-bottom: 24px; }
.pd-add { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--c-forest, #2A7050); color: var(--cream, #FBF8F1); border: 0; padding: 16px 24px; font-family: var(--body); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.pd-add:hover { background: #1E5439; }
.pd-add.is-added { background: var(--c-gold, #B08B57); }
.pd-add[disabled] { background: var(--c-divider); color: var(--muted); cursor: not-allowed; }
.pd-add__arrow { transition: transform 0.2s; }
.pd-add:hover .pd-add__arrow { transform: translateX(4px); }
.pd-wishlist { width: 52px; height: 52px; border: 1px solid var(--c-divider); background: white; border-radius: 4px; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.pd-wishlist:hover { border-color: var(--c-forest); color: var(--c-forest); }
.pd-wishlist.is-saved { border-color: var(--c-gold); color: var(--c-gold); }
.pd-trust { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--c-divider); }
.pd-trust__item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.pd-trust__icon { color: var(--c-forest); width: 18px; text-align: center; }
.product-detail__gallery { position: relative; }
.pd-gallery__main { width: 100%; aspect-ratio: 1; border-radius: 4px; overflow: hidden; background: var(--cream); }
.pd-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumbs { display: flex; gap: 8px; margin-top: 12px; }
.pd-gallery__thumb { width: 64px; height: 64px; border: 1px solid var(--c-divider); border-radius: 4px; padding: 0; cursor: pointer; overflow: hidden; background: var(--cream); }
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumb.is-active { border-color: var(--c-forest); border-width: 2px; }

/* Sticky mobile CTA */
.pd-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid var(--c-divider); padding: 12px 16px; z-index: 100; transform: translateY(100%); transition: transform 0.3s ease; box-shadow: 0 -4px 16px rgba(0,0,0,0.06); }
.pd-sticky-cta.is-visible { transform: translateY(0); }
.pd-sticky-cta__inner { display: flex; align-items: center; gap: 12px; max-width: 720px; margin: 0 auto; }
.pd-sticky-cta__info { flex: 1; min-width: 0; }
.pd-sticky-cta__name { font-size: 0.78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-sticky-cta__price { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--c-forest); }
.pd-sticky-cta__btn { padding: 12px 20px; background: var(--c-forest); color: var(--cream); border: 0; border-radius: 4px; font-family: var(--body); font-weight: 500; cursor: pointer; }

/* Cart icon pulse on add */
.pulse { animation: pulse-glow 0.6s ease; }
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); box-shadow: 0 0 16px rgba(176, 139, 87, 0.4); }
}

@media (min-width: 901px) {
  .pd-sticky-cta { display: none; }
}
@media (max-width: 900px) {
  .pd-name { font-size: 1.7rem; }
  .pd-price { font-size: 1.5rem; }
  .product-detail { padding-bottom: 80px; }
}

/* Quote block copy */
.quote__copy { padding: clamp(20px, 4vw, 40px); }

/* =========================================================================
   COLLECTIONS HUB & SUB-PAGES
   ========================================================================= */

/* ---- Hero ---- */
.collections-hero {
  position: relative;
  padding: 200px 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  overflow: hidden;
}
.collections-hero__decor {
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}
.collections-hero__decor svg { animation: spin 60s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.collections-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.collections-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 18px 0 22px;
}
.collections-hero__desc {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 32px;
}
.collections-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.collections-hero__stats {
  display: flex; gap: clamp(28px, 5vw, 60px);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--divider);
  flex-wrap: wrap;
}
.collections-hero__stats .stat__num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}
.collections-hero__stats .stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.collections-hero__enso {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  opacity: 0.4;
  pointer-events: none;
}

/* ---- Section heads ---- */
.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section__head__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 8px 0 14px;
}
.section__head__sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.section__head__eyebrow { display: block; }

/* ---- Collections grid ---- */
.collections-grid {
  display: grid;
  gap: var(--space-5, 32px);
}
.collections-grid--live,
.collections-grid--coming {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .collections-grid--live,
  .collections-grid--coming { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .collections-grid--live,
  .collections-grid--coming { grid-template-columns: 1fr; }
}

/* ---- Collection card ---- */
.collection-card {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius, 12px);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease, ease), box-shadow 0.5s var(--ease, ease);
  border: 1px solid var(--divider, #E6E0D0);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(26, 26, 26, 0.10); }
.collection-card:hover .collection-card__img img { transform: scale(1.05); }

.collection-card__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone, #F1EBDC);
}
.collection-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  transition: transform 0.8s var(--ease-soft, ease);
  display: block;
}
.collection-card__status {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 11px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.status--live { background: var(--forest); color: var(--cream); }
.status--soon { background: var(--gold); color: var(--cream); }
.status--made { background: rgba(42, 112, 80, 0.92); color: var(--cream); border: 1px solid rgba(255, 255, 255, 0.18); }
.status--coming { background: rgba(176, 139, 87, 0.18); color: var(--ink); border: 1px solid rgba(176, 139, 87, 0.4); font-weight: 500; }
.collection-card--coming .collection-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45, 68, 35, 0) 50%, rgba(45, 68, 35, 0.18) 100%);
  pointer-events: none;
}

.collection-card__body { padding: 24px 26px 28px; }
.collection-card__ja {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  margin-bottom: 6px;
  font-style: italic;
}
.collection-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.collection-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.collection-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--divider, #E6E0D0);
}
.collection-card__count {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.collection-card__cta {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease, ease);
}
.collection-card:hover .collection-card__cta { transform: translateX(4px); }

.collection-card--coming .collection-card__body { padding-bottom: 32px; }

/* ---- How it works ---- */
.how-it-works { display: grid; gap: 32px; margin-top: 30px; }
.how-step {
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.how-step__num {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.how-step__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.how-step__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 640px) {
  .how-step { padding: 22px 22px; }
}

/* ---- Waitlist ---- */
.waitlist { display: grid; grid-template-columns: 1fr; gap: 0; }
.waitlist__body { max-width: 680px; margin: 0 auto; text-align: center; padding: 30px 0; }
.waitlist__form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.waitlist__form input {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.95rem;
}
.waitlist__form input::placeholder { color: rgba(251, 248, 241, 0.6); }
.waitlist__form input:focus { outline: none; border-color: var(--gold); }
.waitlist__ok { display: block; }

/* ---- sr-only utility ---- */
.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;
}

/* ---- Sub-page (single collection) ---- */
.collection-hero {
  position: relative;
  padding: 100px 0 50px;
  overflow: hidden;
  background: var(--cream);
}
.collection-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .collection-hero__inner { grid-template-columns: 1fr; } }
.collection-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 14px 0 18px;
}
.collection-hero__desc {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-2); margin: 0 0 28px;
}
.collection-hero__status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.collection-hero__status--soon { background: var(--gold-deep); }
.collection-hero__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  background: var(--bone, #F1EBDC);
  position: relative;
}
.collection-hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Origin / process / ritual blocks ---- */
.collection-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.collection-block--reverse { grid-template-columns: 1fr 1fr; }
.collection-block--reverse .collection-block__media { order: 2; }
@media (max-width: 900px) {
  .collection-block, .collection-block--reverse { grid-template-columns: 1fr; }
  .collection-block--reverse .collection-block__media { order: 0; }
}
.collection-block__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  background: var(--bone, #F1EBDC);
}
.collection-block__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-block__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  display: block;
}
.collection-block__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.collection-block__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 16px;
}

/* ---- Process steps ---- */
.process-steps { display: grid; gap: 22px; margin-top: 30px; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}
.process-step__num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--cream);
  font-family: var(--serif); font-size: 1.15rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.process-step__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 6px 0 6px;
  color: var(--ink);
}
.process-step__body { font-size: 0.95rem; line-height: 1.65; color: var(--ink-2); margin: 0; }

/* ---- Related collections strip ---- */
.related-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 800px) { .related-strip { grid-template-columns: 1fr; } }
.related-card {
  background: var(--ivory);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s var(--ease, ease);
  border: 1px solid var(--divider, #E6E0D0);
}
.related-card:hover { transform: translateY(-3px); }
.related-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bone, #F1EBDC);
}
.related-card__img img { width: 100%; height: 100%; object-fit: cover; }
.related-card__body { padding: 18px 20px; }
.related-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.related-card__sub {
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin: 0;
}

/* ---- Featured products grid (links back to shop) ---- */
.collection-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.collection-featured__item {
  background: var(--ivory);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s var(--ease, ease);
  border: 1px solid var(--divider, #E6E0D0);
}
.collection-featured__item:hover { transform: translateY(-4px); }
.collection-featured__img { aspect-ratio: 1/1; overflow: hidden; background: var(--bone, #F1EBDC); }
.collection-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.collection-featured__body { padding: 14px 18px 18px; }
.collection-featured__name { font-family: var(--serif); font-size: 1.05rem; margin: 0 0 4px; }
.collection-featured__price { font-size: 0.85rem; color: var(--gold-deep); }

/* ---- Coming-soon narrative block ---- */
.soon-narrative {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-2);
  padding: 0 12px;
}
.soon-narrative em { color: var(--gold-deep); font-style: italic; }

/* ---- Quote block for sub-page ---- */
.collection-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.collection-quote__mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.collection-quote__body {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 16px;
}
.collection-quote__attr {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================================
   v6.6.2 — Hero grid, ritual group, ritual tag refinements
   ========================================================================= */

/* ---- Hero grid: content + media side by side ---- */
.collections-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.collections-hero__content { max-width: 720px; }
.collections-hero__media {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.collections-hero__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  background: var(--bone, #F1EBDC);
  box-shadow: 0 30px 60px -20px rgba(26, 26, 26, 0.18);
}
.collections-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.collections-hero__enso {
  position: absolute;
  right: -30px; bottom: -30px;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}
.collections-hero__caption {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
  justify-content: center;
}
.collections-hero__caption .ja {
  color: var(--gold-deep);
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .collections-hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .collections-hero__media { max-width: 360px; }
  .collections-hero__media { order: 2; }
}

/* ---- Ritual tag on cards ---- */
.collection-card__ritual {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  padding: 5px 11px;
  background: rgba(251, 248, 241, 0.95);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ---- Ritual groups (for coming-soon) ---- */
.ritual-group { margin-top: 60px; }
.ritual-group:first-of-type { margin-top: 30px; }
.ritual-group__head {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider, #E6E0D0);
  position: relative;
}
.ritual-group__num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.ritual-group__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ritual-group__sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}
.ritual-group__ja {
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  font-style: italic;
}
@media (max-width: 640px) {
  .ritual-group__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ritual-group { margin-top: 50px; }
}

/* =========================================================================
   COLLECTION GALLERY MODAL
   ========================================================================= */

.gallery-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: stretch;
  justify-content: stretch;
}
.gallery-modal.is-open {
  display: flex;
  animation: gallery-fade 0.3s var(--ease, ease);
}
@keyframes gallery-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: gallery-fade 0.3s var(--ease, ease);
}

.gallery-modal__panel {
  position: relative;
  margin: auto;
  width: min(1280px, 96vw);
  max-height: 92vh;
  background: var(--cream, #F1ECE2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 60px 120px -20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  animation: gallery-rise 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes gallery-rise {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.gallery-modal__close {
  position: absolute; top: 14px; right: 14px;
  z-index: 10;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251, 248, 241, 0.9);
  border: 0; border-radius: 50%;
  color: var(--ink, #1A1A1A);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease, ease), background 0.3s;
}
.gallery-modal__close:hover {
  background: var(--gold, #B08B57);
  color: var(--cream, #FBF8F1);
  transform: rotate(90deg);
}

.gallery-modal__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  height: 100%;
  min-height: 600px;
  max-height: 92vh;
  overflow: hidden;
}
@media (max-width: 900px) {
  .gallery-modal__layout {
    grid-template-columns: 1fr;
    grid-template-rows: 50% 50%;
  }
  .gallery-modal__panel { max-height: 96vh; }
}

/* ---- Carousel ---- */
.gallery-modal__carousel {
  position: relative;
  background: var(--bone, #EFE7DA);
  overflow: hidden;
  min-height: 400px;
}
.gallery-modal__slides {
  position: relative;
  width: 100%; height: 100%;
}
.gallery-modal__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease, ease);
}
.gallery-modal__slide.is-active { opacity: 1; }
.gallery-modal__slide:not([src]) { display: none; }

.gallery-modal__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251, 248, 241, 0.9);
  border: 0; border-radius: 50%;
  color: var(--ink, #1A1A1A);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease, ease);
}
.gallery-modal__nav:hover {
  background: var(--gold, #B08B57);
  color: var(--cream, #FBF8F1);
}
.gallery-modal__nav--prev { left: 16px; }
.gallery-modal__nav--next { right: 16px; }
.gallery-modal__nav:disabled { opacity: 0.4; cursor: default; }

.gallery-modal__counter {
  position: absolute; top: 16px; left: 16px;
  z-index: 5;
  padding: 5px 12px;
  background: rgba(26, 26, 26, 0.75);
  color: var(--cream, #FBF8F1);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.gallery-modal__dots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  z-index: 5;
  display: flex; justify-content: center; gap: 8px;
  padding: 0 16px;
}
.gallery-modal__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.45);
  border: 0; padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease, ease);
}
.gallery-modal__dot.is-active {
  background: var(--cream, #FBF8F1);
  width: 24px;
  border-radius: 4px;
}

/* ---- Info panel ---- */
.gallery-modal__info {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 40px 32px;
  overflow-y: auto;
  background: var(--cream, #F1ECE2);
}
@media (max-width: 900px) { .gallery-modal__info { padding: 24px 24px 24px; } }

.gallery-modal__head {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 12px;
}
.gallery-modal__ja {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--gold-text, #75582D);
  font-style: italic;
}
.gallery-modal__ritual {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #6B6B6B);
  padding: 3px 8px;
  background: var(--cream-soft, #F5F0E8);
  border-radius: 999px;
}
.gallery-modal__status {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
}
.gallery-modal__status.is-live { background: var(--forest, #2A7050); color: var(--cream, #FBF8F1); }
.gallery-modal__status.is-soon { background: var(--gold, #B08B57); color: var(--cream, #FBF8F1); }

.gallery-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink, #1A1A1A);
  margin: 0 0 12px;
}
.gallery-modal__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2, #2A2A2A);
  margin: 0 0 14px;
}
.gallery-modal__long {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-2, #2A2A2A);
  margin: 0 0 22px;
}

/* ---- Products (live collections) ---- */
.gallery-modal__products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.gallery-product {
  background: var(--ivory, #FAF7F1);
  border: 1px solid var(--line-light, rgba(26, 26, 26, 0.08));
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s;
}
.gallery-product:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.gallery-product__img {
  aspect-ratio: 1/1;
  background: var(--bone, #EFE7DA);
  overflow: hidden;
}
.gallery-product__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-product__body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.gallery-product__name { font-size: 0.86rem; color: var(--ink, #1A1A1A); line-height: 1.3; margin: 0 0 6px; }
.gallery-product__price { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--gold-text, #75582D); font-weight: 500; margin: 0 0 10px; }
.gallery-product__add {
  width: 100%;
  padding: 9px 10px;
  background: var(--forest, #2A7050);
  color: var(--cream, #FBF8F1);
  border: 0; border-radius: 4px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans, 'Inter', sans-serif);
  transition: background 0.3s var(--ease, ease);
}
.gallery-product__add:hover { background: var(--gold-deep, #8B6B3E); }
.gallery-product__add.is-added { background: var(--gold, #B08B57); }
.gallery-product__add:disabled { background: var(--muted, #6B6B6B); cursor: wait; }

.gallery-modal__loading {
  padding: 24px;
  text-align: center;
  color: var(--muted, #6B6B6B);
  font-size: 0.9rem;
}
.gallery-modal__empty {
  padding: 16px 0;
  color: var(--muted, #6B6B6B);
  font-size: 0.92rem;
  font-style: italic;
}

/* ---- Waitlist (coming-soon) ---- */
.gallery-modal__waitlist {
  background: var(--cream-soft, #F5F0E8);
  border-radius: 6px;
  padding: 20px 22px;
  margin: 0 0 24px;
  border-left: 3px solid var(--gold, #B08B57);
}
.gallery-modal__waitlist h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--ink, #1A1A1A);
}
.gallery-modal__waitlist p {
  font-size: 0.86rem;
  color: var(--ink-2, #2A2A2A);
  line-height: 1.5;
  margin: 0 0 14px;
}
.gallery-waitlist-form {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.gallery-waitlist-form input {
  flex: 1; min-width: 180px;
  padding: 10px 14px;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 4px;
  background: var(--ivory, #FAF7F1);
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: var(--ink, #1A1A1A);
}
.gallery-waitlist-form input:focus {
  outline: none;
  border-color: var(--gold, #B08B57);
}
.gallery-waitlist-form button {
  padding: 10px 18px;
  background: var(--forest, #2A7050);
  color: var(--cream, #FBF8F1);
  border: 0; border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans, 'Inter', sans-serif);
}
.gallery-waitlist-form button:hover { background: var(--gold-deep, #8B6B3E); }
.gallery-waitlist-success {
  display: none;
  color: var(--forest, #2A7050);
  font-size: 0.88rem;
  font-weight: 500;
}
.gallery-waitlist-success.is-shown { display: block; }

/* ---- Actions ---- */
.gallery-modal__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-light, rgba(26, 26, 26, 0.08));
}
.gallery-modal__cta-primary {
  flex: 1 1 200px;
  padding: 14px 24px;
  background: var(--forest, #2A7050);
  color: var(--cream, #FBF8F1);
  border: 0; border-radius: 4px;
  text-decoration: none;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s var(--ease, ease);
}
.gallery-modal__cta-primary:hover { background: var(--gold-deep, #8B6B3E); }
.gallery-modal__cta-secondary {
  flex: 1 1 200px;
  padding: 14px 24px;
  background: transparent;
  color: var(--ink, #1A1A1A);
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease, ease);
}
.gallery-modal__cta-secondary:hover {
  background: var(--ink, #1A1A1A);
  color: var(--cream, #FBF8F1);
  border-color: var(--ink, #1A1A1A);
}

/* ---- Body scroll lock when modal is open ---- */
body.gallery-open {
  overflow: hidden;
}

/* ---- Mobile tweaks ---- */
@media (max-width: 640px) {
  .gallery-modal__panel {
    width: 100vw; max-height: 100vh; height: 100vh;
    border-radius: 0;
  }
  .gallery-modal__layout {
    grid-template-columns: 1fr;
    grid-template-rows: 45% 55%;
  }
  .gallery-modal__info { padding: 20px; }
  .gallery-modal__title { font-size: 1.6rem; }
  .gallery-modal__close { width: 36px; height: 36px; }
  .gallery-modal__nav { width: 36px; height: 36px; }
  .gallery-modal__products { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ---- Recently viewed indicator ---- */
.collection-card.is-recently-viewed {
  position: relative;
}
.collection-card.is-recently-viewed::after {
  content: '●';
  position: absolute; top: 10px; right: 10px;
  z-index: 3;
  color: var(--gold, #B08B57);
  font-size: 0.7rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* =========================================================================
   AMAZON-STYLE CART DRAWER + WISHLIST
   ========================================================================= */

/* ---- Drawer shell ---- */
.cart-drawer-wrap {
  position: fixed; inset: 0;
  z-index: 250;
  pointer-events: none;
}
.cart-drawer-wrap.is-open { pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.55);
  opacity: 0;
  transition: opacity 0.4s var(--ease, ease);
  cursor: pointer;
}
.cart-drawer-wrap.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--cream, #F1ECE2);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}
.cart-drawer.is-open { transform: translateX(0); }
@media (max-width: 500px) { .cart-drawer { width: 100vw; } }

/* ---- Header ---- */
.cart-drawer__head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line, rgba(26, 26, 26, 0.12));
  background: var(--cream, #F1ECE2);
}
.cart-drawer__head-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.cart-drawer__head-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  flex: 1;
}
.cart-drawer__count {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted, #6B6B6B);
}
.cart-drawer__close {
  width: 36px; height: 36px;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.12));
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease, ease);
  color: var(--ink, #1A1A1A);
  flex: 0 0 auto;
}
.cart-drawer__close:hover {
  background: var(--ink, #1A1A1A);
  color: var(--cream, #FBF8F1);
  border-color: var(--ink);
  transform: rotate(90deg);
}

/* ---- Free shipping progress ---- */
.cart-drawer__free-ship { margin-top: 4px; }
.cart-drawer__free-ship[hidden] { display: none; }
.cart-drawer__free-ship-bar {
  height: 4px; background: var(--bone, #EFE7DA);
  border-radius: 2px; overflow: hidden;
  margin-bottom: 6px;
}
.cart-drawer__free-ship-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold, #B08B57), var(--gold-deep, #8B6B3E));
  width: 0;
  transition: width 0.4s var(--ease, ease);
  border-radius: 2px;
}
.cart-drawer__free-ship-msg {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--muted, #6B6B6B);
  margin: 0;
  font-weight: 500;
}

/* ---- Body ---- */
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px 20px;
}
.cart-drawer__lines { display: flex; flex-direction: column; }
.cart-drawer__empty {
  text-align: center;
  padding: 80px 20px 40px;
  color: var(--muted, #6B6B6B);
}
.cart-drawer__empty-icon {
  font-size: 3rem;
  color: var(--gold, #B08B57);
  margin-bottom: 14px;
  opacity: 0.4;
}
.cart-drawer__empty p { margin: 0 0 4px; }
.cart-drawer__empty-sub { font-size: 0.85rem; opacity: 0.8; margin-bottom: 24px; }

/* ---- Cart line ---- */
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light, rgba(26, 26, 26, 0.08));
  align-items: flex-start;
  position: relative;
  animation: cart-line-in 0.3s var(--ease, ease);
}
@keyframes cart-line-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-line.is-removing {
  animation: cart-line-out 0.3s var(--ease, ease) forwards;
}
@keyframes cart-line-out {
  to { opacity: 0; transform: translateX(20px); max-height: 0; padding: 0; }
}
.cart-line__img {
  width: 80px; height: 80px;
  background: var(--bone, #EFE7DA);
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-line__heart {
  position: absolute; top: 4px; right: 4px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: rgba(251, 248, 241, 0.92);
  border: 0; border-radius: 50%;
  color: var(--muted, #6B6B6B);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease, ease);
}
.cart-line__heart:hover { color: #B0413E; transform: scale(1.1); }
.cart-line__heart.is-wishlisted { color: #B0413E; }
.cart-line__heart.is-wishlisted svg { fill: #B0413E; }
.cart-line__heart.is-pulsing svg { animation: heart-pulse 0.5s ease; }
@keyframes heart-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.cart-line__info { min-width: 0; }
.cart-line__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--ink, #1A1A1A);
  text-decoration: none;
  display: block;
}
.cart-line__name:hover { color: var(--gold-deep, #8B6B3E); }
.cart-line__ja {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-text, #75582D);
  font-style: italic;
  margin-bottom: 4px;
}
.cart-line__price {
  font-size: 0.86rem;
  color: var(--ink-2, #2A2A2A);
  margin: 0 0 10px;
}
.cart-line__price .cart-line__each {
  font-size: 0.74rem;
  color: var(--muted, #6B6B6B);
  margin-left: 4px;
}
.cart-line__actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cart-line__save, .cart-line__remove {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none; border: 0;
  color: var(--muted, #6B6B6B);
  cursor: pointer;
  padding: 0;
  font-family: var(--sans, 'Inter', sans-serif);
  transition: color 0.2s;
}
.cart-line__save:hover { color: #B0413E; }
.cart-line__remove:hover { color: var(--ink, #1A1A1A); text-decoration: underline; }
.cart-line__total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink, #1A1A1A);
  align-self: flex-start;
  padding-top: 4px;
  text-align: right;
  min-width: 60px;
}

/* ---- Quantity stepper ---- */
.qty-stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.12));
  border-radius: 4px;
  background: var(--ivory, #FAF7F1);
  overflow: hidden;
  height: 32px;
}
.qty-stepper__btn {
  width: 30px; height: 30px;
  background: none; border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink, #1A1A1A);
  font-size: 1rem;
  font-family: var(--sans, 'Inter', sans-serif);
  transition: background 0.2s;
}
.qty-stepper__btn:hover {
  background: var(--forest, #2A7050);
  color: var(--cream, #FBF8F1);
}
.qty-stepper__input {
  width: 36px; height: 30px;
  border: 0; border-left: 1px solid var(--line, rgba(26, 26, 26, 0.12));
  border-right: 1px solid var(--line, rgba(26, 26, 26, 0.12));
  text-align: center;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.86rem;
  font-weight: 500;
  background: transparent;
  color: var(--ink, #1A1A1A);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---- Footer (subtotal + CTAs) ---- */
.cart-drawer__foot {
  padding: 20px 28px 24px;
  border-top: 1px solid var(--line, rgba(26, 26, 26, 0.12));
  background: var(--ivory, #FAF7F1);
}
.cart-drawer__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.cart-drawer__row strong {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink, #1A1A1A);
  font-variant-numeric: tabular-nums;
}
.cart-drawer__note {
  font-size: 0.78rem;
  color: var(--muted, #6B6B6B);
  margin: 0 0 16px;
  text-align: center;
}
.cart-drawer__cta {
  display: grid; gap: 8px;
  margin-bottom: 8px;
}
.cart-drawer__btn {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease, ease);
}
.cart-drawer__btn--primary {
  background: var(--forest, #2A7050);
  color: var(--cream, #FBF8F1);
}
.cart-drawer__btn--primary:hover { background: var(--gold-deep, #8B6B3E); }
.cart-drawer__btn--secondary {
  background: var(--ink, #1A1A1A);
  color: var(--cream, #FBF8F1);
}
.cart-drawer__btn--secondary:hover { background: var(--gold, #B08B57); }
.cart-drawer__continue {
  width: 100%;
  background: none; border: 0;
  font-size: 0.78rem;
  color: var(--muted, #6B6B6B);
  cursor: pointer;
  padding: 6px;
  font-family: var(--sans, 'Inter', sans-serif);
  letter-spacing: 0.04em;
  text-decoration: underline;
  margin-top: 4px;
}
.cart-drawer__continue:hover { color: var(--ink); }

/* ---- Extras: pairs + recently viewed ---- */
.cart-drawer__extras {
  padding-top: 18px;
  border-top: 1px solid var(--line-light, rgba(26, 26, 26, 0.08));
  margin-top: 12px;
}
.cart-extra { margin-bottom: 22px; }
.cart-extra__title {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #6B6B6B);
  margin: 0 0 12px;
  font-weight: 500;
}
.cart-extra__ja { color: var(--gold-text, #75582D); font-style: italic; }
.cart-extra__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.cart-extra__item {
  display: block; text-decoration: none; color: inherit;
  transition: transform 0.3s;
}
.cart-extra__item:hover { transform: translateY(-2px); }
.cart-extra__img {
  aspect-ratio: 1/1;
  background: var(--bone, #EFE7DA);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 4px;
}
.cart-extra__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-extra__name {
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--ink, #1A1A1A);
  text-align: center;
}
.cart-extra__strip {
  display: flex; gap: 10px; overflow-x: auto;
  padding-bottom: 4px;
}
.cart-extra__chip {
  display: flex; flex-direction: column; align-items: center;
  flex: 0 0 80px;
  text-decoration: none; color: inherit;
  transition: transform 0.3s;
}
.cart-extra__chip:hover { transform: translateY(-2px); }
.cart-extra__chip-img {
  width: 70px; height: 70px;
  background: var(--bone, #EFE7DA);
  border-radius: 50%; overflow: hidden;
  margin-bottom: 6px;
}
.cart-extra__chip-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-extra__chip span {
  font-size: 0.7rem;
  text-align: center;
  color: var(--ink, #1A1A1A);
}

/* ---- Heart icon on product cards (gallery + shop) ---- */
.gallery-product__heart,
.shop-card__heart {
  position: absolute; top: 10px; right: 10px;
  z-index: 5;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(251, 248, 241, 0.95);
  border: 0; border-radius: 50%;
  color: var(--muted, #6B6B6B);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease, ease);
}
.gallery-product__heart:hover,
.shop-card__heart:hover { color: #B0413E; transform: scale(1.1); }
.gallery-product__heart.is-wishlisted,
.shop-card__heart.is-wishlisted { color: #B0413E; }
.gallery-product__heart.is-wishlisted svg,
.shop-card__heart.is-wishlisted svg { fill: #B0413E; }
.gallery-product__heart.is-pulsing svg,
.shop-card__heart.is-pulsing svg { animation: heart-pulse 0.5s ease; }

/* ---- Wishlist heart in nav ---- */
.nav__wishlist {
  position: relative;
  width: 40px; height: 40px;
  min-width: 40px; min-height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--ink, #1A1A1A);
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s;
  flex: 0 0 auto;
}
.nav__wishlist:hover { background: rgba(0, 0, 0, 0.05); }
.nav__wishlist-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #B0413E;
  color: var(--cream, #FBF8F1);
  font-size: 0.7rem; font-weight: 600;
  border-radius: 9px;
  display: none;
  place-items: center;
  font-family: var(--sans, 'Inter', sans-serif);
}

/* ---- Cart icon pulse on add ---- */
.is-pulsing {
  animation: cart-pulse 0.7s var(--ease, ease);
}
@keyframes cart-pulse {
  0% { transform: scale(1); }
  20% { transform: scale(1.25); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ---- Toast (lightweight) ---- */
.eoh-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  padding: 12px 24px;
  background: var(--ink, #1A1A1A);
  color: var(--cream, #FBF8F1);
  font-size: 0.88rem;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s var(--ease, ease);
  font-family: var(--sans, 'Inter', sans-serif);
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.eoh-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Body scroll lock for drawer ---- */
body.cart-drawer-open {
  overflow: hidden;
}

/* ---- Cart button in shop-card refined ---- */
.shop-card__add.is-armed {
  background: var(--forest, #2A7050);
  color: var(--cream, #FBF8F1);
}

/* v6-sr-only — screen reader only, hidden visually */
.v6-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip-to-content link — visible only on keyboard focus */
.v6-skip-link {
  position: absolute;
  top: -200px;
  left: 16px;
  z-index: 99999;
  padding: 12px 20px;
  background: #2A7050;
  color: #F8F4E9;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: top 0.15s ease;
}
.v6-skip-link:focus,
.v6-skip-link:focus-visible {
  top: 16px;
  outline: 2px solid #B08B57;
  outline-offset: 2px;
}

/* Consumer Care block — used in privacy/refund/shipping/terms */
.consumer-care {
  background: rgba(176, 139, 87, 0.08);
  border: 1px solid rgba(176, 139, 87, 0.2);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0;
}
.consumer-care h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.consumer-care p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.6;
}
.consumer-care p:last-child {
  margin-bottom: 0;
}

/* WISMO block — used in order-tracking */
.wismo-block {
  margin-top: 48px;
  background: rgba(176, 139, 87, 0.08);
  border: 1px solid rgba(176, 139, 87, 0.25);
  border-radius: 6px;
  padding: 20px 24px;
}
.wismo-block summary {
  cursor: pointer;
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  padding: 4px 0;
}
.wismo-block ol {
  margin: 10px 0;
  padding-left: 22px;
}
.wismo-block ol li {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Global site-error toast (connection / fetch failures) */
.site-error-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  padding: 14px 16px;
  background: #F8F4E9;
  border: 1px solid rgba(176, 139, 87, 0.35);
  border-left: 3px solid #B08B57;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1A1A1A;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}
.site-error-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.site-error-toast__ja {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #B08B57;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 139, 87, 0.1);
  border-radius: 50%;
}
.site-error-toast__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.site-error-toast__title {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1.4;
}
.site-error-toast__sub {
  font-size: 12px;
  color: #6B6B6B;
  line-height: 1.4;
}
.site-error-toast__close {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  color: #8A8A8A;
  font-size: 20px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  align-self: flex-start;
}
.site-error-toast__close:hover { color: #1A1A1A; }

@media (max-width: 640px) {
  .site-error-toast {
    bottom: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

/* Founder hero subtitle (the "Herbalist · Ritual practitioner" line) */
.founder-hero__subtitle {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 6px 0 26px;
}

/* Founder hero paragraph spacing (extra top margin for second/third paragraphs) */
.founder-hero__text--continued { margin-top: 18px; }

/* Founder hero script line (italic flourish) */
.founder-hero__script {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* Founder hero meta (the divider + chips row) */
.founder-hero__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
}

/* Founder hero "Our Story" header with enso */
.founder-hero__story-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Standard section H2 (matches collections.html usage) */
.section__h2-tight {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.section__h2-tight--more { margin-bottom: 24px; }
.section__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 640px;
}

/* Collections waitlist block — light text on dark */
.collections-waitlist__ja { color: var(--cream); opacity: 0.65; }
.collections-waitlist__h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 6px 0 14px;
}
.collections-waitlist__p {
  color: var(--cream);
  opacity: 0.85;
  max-width: 520px;
  margin: 0 0 22px;
  line-height: 1.6;
}
.collections-waitlist__ok {
  display: none;
  color: var(--cream);
  font-size: 0.88rem;
  margin-top: 14px;
}

/* Print stylesheet — clean output for legal/policy/receipt pages */
@media print {
  /* Hide interactive elements */
  .nav,
  .footer,
  .mobile-menu,
  .v6-skip-link,
  .site-error-toast,
  .noscript-banner,
  .floating-ball,
  [data-cart-toggle],
  [data-search-toggle],
  [data-wishlist-toggle],
  .nav__burger {
    display: none !important;
  }

  /* Reset colors for ink savings */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
    line-height: 1.5;
  }

  /* Use serif body for readability */
  .container,
  main,
  .section,
  .consumer-care,
  .wismo-block {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 12pt !important;
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  /* Headings */
  h1, h2, h3, h4 {
    color: #000 !important;
    page-break-after: avoid;
  }

  h1 { font-size: 18pt; margin-top: 0; }
  h2 { font-size: 14pt; }
  h3 { font-size: 12pt; }

  /* Show full URLs after links */
  a[href^="http"]:after,
  a[href^="/"]:after,
  a[href^="mailto:"]:after,
  a[href^="tel:"]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
    word-break: break-all;
  }

  /* Avoid page breaks inside cards */
  .consumer-care,
  .wismo-block,
  .returns-card,
  .returns-page,
  .form-row,
  article,
  section {
    page-break-inside: avoid;
  }

  /* Links: keep readable color */
  a { color: #000 !important; text-decoration: underline; }

  /* Show contact info in footer area */
  .footer__about,
  .footer__gstin {
    color: #000 !important;
  }

  /* Page breaks */
  h1 { page-break-before: auto; page-break-after: avoid; }
  h2, h3 { page-break-after: avoid; }

  @page {
    margin: 0.6in 0.5in;
  }
}

/* EOH Standing — "by the numbers" section */
.eoh-standing {
  background: var(--cream, #F8F4E9);
  border-top: 1px solid rgba(42, 112, 80, 0.08);
  border-bottom: 1px solid rgba(42, 112, 80, 0.08);
}
.eoh-standing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 112, 80, 0.1);
  border: 1px solid rgba(42, 112, 80, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.eoh-standing__stat {
  background: #fff;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  transition: background 0.2s var(--ease, ease);
}
.eoh-standing__stat:hover {
  background: rgba(176, 139, 87, 0.04);
}
.eoh-standing__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--forest, #2A7050);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.eoh-standing__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink, #1A1A1A);
  margin-bottom: 6px;
  font-weight: 500;
}
.eoh-standing__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem;
  color: var(--gold-deep, #8B6B3E);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}
.eoh-standing__note {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted, #6B6B6B);
  margin: 0;
}
.eoh-standing__closing {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted, #6B6B6B);
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .eoh-standing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .eoh-standing__grid { grid-template-columns: 1fr; }
  .eoh-standing__stat { padding: 28px 20px 22px; }
}

/* About the maker — product page sidebar */
.about-maker {
  background: linear-gradient(180deg, rgba(176, 139, 87, 0.04) 0%, rgba(42, 112, 80, 0.02) 100%);
  border-top: 1px solid rgba(42, 112, 80, 0.08);
  border-bottom: 1px solid rgba(42, 112, 80, 0.08);
  margin: 60px 0 0;
  padding: 48px 24px;
}
.about-maker__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.about-maker__head {
  margin-bottom: 28px;
}
.about-maker__head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
  color: var(--ink, #1A1A1A);
}
.about-maker__body {
  max-width: 720px;
  margin: 0 auto 36px;
}
.about-maker__lede {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-2, #2D2D2D);
  margin: 0 0 14px;
}
.about-maker__lede strong {
  color: var(--ink, #1A1A1A);
  font-weight: 600;
}
.about-maker__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 112, 80, 0.1);
  border: 1px solid rgba(42, 112, 80, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 32px 0;
}
.about-maker__stat {
  background: #fff;
  padding: 22px 12px 18px;
  text-align: center;
}
.about-maker__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--forest, #2A7050);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-maker__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #6B6B6B);
  font-weight: 500;
}
.about-maker__more {
  margin-top: 8px;
}
.about-maker__more a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gold-deep, #8B6B3E);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.about-maker__more a:hover {
  color: var(--ink, #1A1A1A);
}

@media (max-width: 720px) {
  .about-maker__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-maker { padding: 36px 20px; }
  .about-maker__stats { grid-template-columns: 1fr 1fr; }
}

/* "From the studio" callout — used on curation, discover, ritual pages */
.from-studio {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2, #2D2D2D);
  max-width: 640px;
  margin: 14px auto 8px;
  padding: 0 4px;
}
.from-studio a {
  color: var(--gold-deep, #8B6B3E);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.92rem;
}
.from-studio a:hover {
  color: var(--ink, #1A1A1A);
}

/* Shop page hero sub */
.shop-hero__sub {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-2, #2D2D2D);
  max-width: 640px;
  margin: 20px 0 0;
  opacity: 0.92;
}

/* Founder hero signature block */
.founder-hero__signature {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(42, 112, 80, 0.15);
}
.founder-hero__signature-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink, #1A1A1A);
  margin: 0 0 4px;
  letter-spacing: 0.005em;
}
.founder-hero__signature-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #6B6B6B);
  margin: 0;
  font-weight: 500;
}

/* Founder hero refrain — set-apart thesis line, larger + italic + centered */
.founder-hero__refrain {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  color: var(--ink, #1A1A1A);
  text-align: center;
  max-width: 560px;
  margin: 40px auto;
  padding: 16px 0;
  border-top: 1px solid rgba(42, 112, 80, 0.12);
  border-bottom: 1px solid rgba(42, 112, 80, 0.12);
  letter-spacing: 0.005em;
}
.founder-hero__refrain + .founder-hero__text,
.founder-hero__refrain + .founder-hero__refrain {
  margin-top: 32px;
}

/* Punchline refrain — the main thesis line, most emphasized */
.founder-hero__refrain--punchline {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 500;
  color: var(--ink, #1A1A1A);
  margin: 56px auto 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(176, 139, 87, 0.35);
  border-bottom: 1px solid rgba(176, 139, 87, 0.35);
  background: linear-gradient(180deg, rgba(176, 139, 87, 0.04) 0%, rgba(176, 139, 87, 0.07) 50%, rgba(176, 139, 87, 0.04) 100%);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Pull quote — the emotional anchor of the founder letter */
.founder-hero__quote {
  margin: 40px 0 36px;
  padding: 32px 36px 26px;
  text-align: center;
  background: rgba(176,139,87,0.05);
  border-top: 1px solid rgba(176,139,87,0.28);
  border-bottom: 1px solid rgba(176,139,87,0.28);
  position: relative;
  border-radius: 2px;
}
.founder-hero__quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold-deep, #8B6B3E);
  opacity: 0.55;
}
.founder-hero__quote-text {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.18rem, 2.1vw, 1.42rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink, #1A1A1A);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}
.founder-hero__quote-attr {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 0.92rem;
  font-style: normal;
  color: var(--muted, #6A6A6A);
  letter-spacing: 0.06em;
  display: block;
}

.story-timeline__lede { margin: 18px 0 36px; }

/* ============== Floating Admin button (bottom-right) ============== */
#eoh-admin-fab {
  /* v12.8: just the gold kanji circle, no pill, no text label */
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold, #B08B57);
  color: var(--cream, #F8F4E9);
  border-radius: 50%;
  text-decoration: none;
  font-family: var(--serif-jp, 'Noto Serif JP', serif);
  box-shadow: 0 4px 12px rgba(176, 139, 87, 0.4);
  transition: transform 0.25s var(--ease, ease), background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
#eoh-admin-fab:hover {
  background: var(--forest, #2A7050);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(42, 112, 80, 0.45);
}
#eoh-admin-fab .eoh-admin-fab__hanko {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  font-size: 1.05rem;
  line-height: 40px;
  text-align: center;
  transform: rotate(-3deg);
}
#eoh-admin-fab .eoh-admin-fab__hanko::after {
  content: '管';
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
#eoh-admin-fab.eoh-admin-fab--is-admin {
  background: var(--forest, #2A7050);
}
#eoh-admin-fab.eoh-admin-fab--is-admin:hover {
  background: var(--ink, #1A1A1A);
}
@media (max-width: 600px) {
  #eoh-admin-fab { right: 14px; bottom: 14px; width: 44px; height: 44px; }
  #eoh-admin-fab .eoh-admin-fab__hanko { font-size: 1.15rem; line-height: 44px; }
}
@media print {
  #eoh-admin-fab { display: none !important; }
}

/* ============================================
   i18n + Currency Picker
   ============================================ */
.locale-picker {
  position: relative;
  display: inline-block;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.locale-picker__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid rgba(42, 112, 80, 0.25);
  border-radius: 4px;
  color: var(--ink, #2A3329);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.locale-picker__btn:hover {
  background: rgba(42, 112, 80, 0.08);
  border-color: var(--forest, #2A7050);
}
.locale-picker__current {
  color: var(--forest, #2A7050);
  font-weight: 600;
}
.locale-picker__sep {
  color: rgba(42, 112, 80, 0.4);
}
.locale-picker__lang {
  color: var(--ink, #2A3329);
}
.locale-picker__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(42, 112, 80, 0.2);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 8px;
  min-width: 260px;
  z-index: 1000;
}
.locale-picker__section + .locale-picker__section {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(42, 112, 80, 0.1);
}
.locale-picker__section-title {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42, 51, 41, 0.55);
  padding: 4px 8px;
  margin-bottom: 4px;
}
.locale-picker__option {
  display: block;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink, #2A3329);
  border-radius: 4px;
  transition: background 0.15s;
}
.locale-picker__option:hover {
  background: rgba(42, 112, 80, 0.08);
}
.locale-picker__option.is-active {
  background: rgba(42, 112, 80, 0.12);
  color: var(--forest, #2A7050);
  font-weight: 500;
}
.locale-picker__option.is-active::before {
  content: '✓ ';
  color: var(--forest, #2A7050);
}
