/* ======================================================
   Jenni-Anne's Jewels — handmade with love (Australia)
   White background. Plum text. Lilac + aqua accents.
   Warm-casual hobbyist-mum-with-a-sewing-machine voice.
   ====================================================== */

/* === RESET ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

/* === ROOT VARIABLES ==================================== */
:root {
  --bg: #ffffff;              /* card / overlay surface */
  --paper: #faf6ee;           /* warm cream — body background */
  --paper-2: #f3ecdf;         /* deeper cream for sections + cards */
  --ink: #2a1a3a;             /* deep plum text */
  --ink-soft: #6e5a7a;        /* muted plum-grey */
  --ink-mute: #9b8aa6;
  --line: #ece6f2;            /* very pale lilac border */
  --line-stitch: #d8cfe2;     /* dashed-stitch divider */
  --line-strong: #2a1a3a;
  --accent: #bfb1d8;          /* dustier iris — brand DNA, less Easter-pastel */
  --accent-deep: #8e7ab0;     /* deeper lilac for hover/CTAs */
  --accent-soft: #b8e3d6;     /* eucalyptus — replaces pool-tile aqua */
  --accent-glow: #ece6f2;     /* lilac wash for nav backdrop */
  --shadow-sm: 0 1px 2px rgba(42,26,58,.05);
  --shadow-md: 0 4px 14px rgba(142,122,176,.10);
  --shadow-lg: 0 14px 36px -8px rgba(142,122,176,.22);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1280px;
  --nav-h: 72px;
  --space-section: clamp(96px, 12vw, 192px);
  --measure: 62ch;
  --grad-paper: linear-gradient(180deg, #fbf6ee 0%, #f3ecdf 100%);
}

/* === BASE TYPE ========================================= */
html, body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* `overflow-x: clip` does not create a scroll container — keeps hash anchors working */
  overflow-x: clip;
}
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 400; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2rem); font-weight: 400; }
h3 { font-size: 1.05rem; font-weight: 500; }
h4 { font-size: .85rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
p { color: var(--ink-soft); }

a { transition: opacity .15s var(--ease); }
a:hover { opacity: .65; }

.eyebrow {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

/* === LAYOUT HELPERS ==================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 60px 24px; }
section > .container { padding: 0; }

/* === NAV =============================================== */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(248,250,255,.94));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.18s ease;
}
.brand:hover .brand-mark {
  transform: translateY(-1px);
}
.brand-mark img,
.brand-mark svg {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Fraunces', 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; letter-spacing: .04em; color: var(--ink); }
.brand-name .jewels,
.brand-name em { font-family: 'Great Vibes', 'Dancing Script', cursive; font-style: normal; font-weight: 400; font-size: 1.35em; line-height: 0.7; color: var(--accent-deep); margin-left: 2px; letter-spacing: 0; }
.brand-sub { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-mute); margin-top: 3px; }

.nav-links { display: flex; justify-content: center; gap: 28px; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { opacity: 1; border-bottom-color: var(--accent-deep); color: var(--accent-deep); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--accent-deep); color: var(--accent-deep); }

.nav-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  position: relative;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background .15s var(--ease);
}
.icon-btn:hover { background: rgba(202, 192, 223, .25); color: var(--accent-deep); opacity: 1; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--accent-deep); color: #fff;
  font-size: .58rem; font-weight: 700;
  border-radius: 999px;
  display: grid; place-items: center;
}
.admin-link {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-left: 6px;
  transition: all .15s var(--ease);
}
.admin-link:hover { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); opacity: 1; }
.nav-mobile-btn { display: none; }

/* === HERO ============================================== */
.hero {
  padding: 60px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(162, 244, 229, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(202, 192, 223, 0.20), transparent 60%),
    #fff;
  position: relative;
  overflow: hidden;
}
/* Soft watercolor floral wash — a calm lilac/aqua radial bloom that hints
   at handmade fabric prints. Replaces the old gold emblem watermark.
   Mask-faded so it blends out into the white. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('logos/logo-watermark.png?v=20260424-8');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 720px auto;
  opacity: 0.18;
  filter: saturate(0.6) hue-rotate(-30deg);
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at center, #000 30%, transparent 85%);
  mask-image:         radial-gradient(ellipse 60% 70% at center, #000 30%, transparent 85%);
}
/* Optional decorative floral SVG flourish — a faint scribble that adds
   a little watercolor texture without dominating. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'><circle cx='30' cy='40' r='14' fill='%23cac0df' opacity='0.18'/><circle cx='168' cy='28' r='10' fill='%23a2f4e5' opacity='0.22'/><circle cx='180' cy='160' r='18' fill='%23cac0df' opacity='0.14'/><circle cx='22' cy='170' r='12' fill='%23a2f4e5' opacity='0.18'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero-bg, .hero-grain, .hero-light, .hero-particles, .hero-hero-fish, .hero-mark, .hero-divider, .hero-fish, .hero-cta-row, .hero-tags, .hero-pills { display: none; }
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
@media (max-width: 600px) {
  .hero::before { background-size: 460px auto; opacity: 0.26; }
}
.hero-eyebrow { display: block; margin-bottom: 12px; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero-title em { font-style: normal; font-weight: 500; }
.hero-title .reveal-word { display: inline; opacity: 1; transform: none; }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.4;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* === FEATURE STRIP ===================================== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--container);
  margin: 0 auto;
}
.feature {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.feature svg { color: var(--ink-soft); margin-bottom: 8px; }
.feature h4 { color: var(--ink); text-transform: none; letter-spacing: 0; font-size: .9rem; font-weight: 500; }
.feature p { font-size: .82rem; color: var(--ink-mute); }

/* === SECTION HEADS ===================================== */
.section-head, .gallery-head, .stories-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.section-head .eyebrow,
.gallery-head .eyebrow,
.stories-head .eyebrow { display: block; margin-bottom: 8px; }
.section-head h2 { margin-bottom: 8px; }
.section-head p, .stories-head p { font-size: .98rem; }

/* === CATEGORY SHOWCASE ================================= */
.shop { padding: 60px 24px; }
.cat-showcase {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);    /* Mampara-style 3 across */
  gap: 24px;
}
.cat-show-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;                       /* big square — Mampara feel */
  background: #f6f6f6;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.cat-show-card:hover,
.cat-show-card:focus-visible {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -12px rgba(0,0,0,0.20),
              0 6px  14px -4px  rgba(0,0,0,0.10);
}
.cat-show-bg { display: none; }
.cat-show-cutouts {
  position: absolute;
  inset: 0;
  /* Reserve space for the meta block at the bottom so the montage
     sits in the upper ~70% of the card */
  bottom: 132px;
}
.cat-show-pic {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .45s var(--ease);
  filter: drop-shadow(0 8px 18px rgba(42,26,58,0.16)) saturate(0.92) brightness(1.04) contrast(0.97) sepia(0.04);
  /* feather the edges so the photo blends into the cream paper instead
     of sitting as a hard rectangle thumbnail */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 62%, transparent 100%);
          mask-image: radial-gradient(ellipse at center, #000 62%, transparent 100%);
}
/* Layered montage — back-most fish biggest, two smaller overlapping it */
.cat-show-pic-1 {                              /* back, big, centered */
  width: 80%; height: 80%;
  top: 8%; left: 10%;
  z-index: 1;
}
.cat-show-pic-2 {                              /* upper-right, smaller */
  width: 55%; height: 55%;
  top: -2%; right: -4%;
  z-index: 2;
}
.cat-show-pic-3 {                              /* lower-left, smaller */
  width: 50%; height: 50%;
  bottom: -4%; left: -2%;
  z-index: 3;
}
.cat-show-card:hover .cat-show-pic-1 { transform: scale(1.02); transition: transform .6s var(--ease); }
.cat-show-pic-2, .cat-show-pic-3 { transition: none; }

.cat-show-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .82rem;
  color: var(--ink-mute);
}
.cat-show-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.96) 38%);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 4;
}
.cat-show-num { font-size: .62rem; letter-spacing: .3em; color: var(--ink-mute); }
.cat-show-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 4px 0 2px;
  color: var(--ink);
}
.cat-show-line { font-size: .85rem; color: var(--ink-soft); margin: 0; }
.cat-show-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.cat-show-count { font-size: .72rem; color: var(--ink-mute); }
.cat-show-cta { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.cat-show-cta .arrow { transition: transform .2s var(--ease); display: inline-block; margin-left: 4px; }
.cat-show-card:hover .cat-show-cta .arrow { transform: translateX(4px); }

@media (max-width: 980px) {
  .cat-showcase { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-show-title { font-size: 1.3rem; }
  .cat-show-meta { padding: 14px 16px 16px; }
  .cat-show-cutouts { bottom: 110px; }
}
@media (max-width: 560px) {
  .cat-showcase { grid-template-columns: 1fr; }
}

/* === ABOUT TEASER (homepage) — Mampara-clean layout ============= */
.about {
  padding: 100px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.about-grid,
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy .eyebrow {
  color: var(--ink-soft);
  margin-bottom: 18px;
  display: block;
}
.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--ink);
}
.about-copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 460px;
}

/* Numbered process list */
.about-bullets,
.about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.about-bullets li,
.about-points li {
  font-size: .95rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0;
  position: static;
}
.about-bullets li::before,
.about-points li::before { content: none; }
.about-bullets li span {
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--ink-mute);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  min-width: 24px;
}

/* CTA row */
.about-cta,
.about-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visual — single clean product photo, no grey box */
.about-visual {
  background: transparent;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* about-card-1 is the only visual — strip the timber frame, just float the cutout */
.about-card-1 { display: block; width: 100%; }
.about-card-1 .ac-frame,
.about-card-1 .ac-pine { background: transparent; box-shadow: none; border: none; padding: 0; }
.about-card-1 .ac-cutout {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.about-photo,
.about-visual img { width: 100%; height: auto; object-fit: contain; }

@media (max-width: 880px) {
  .about { padding: 60px 20px; }
  .about-grid, .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-copy p { max-width: none; }
  .about-visual { aspect-ratio: auto; }
}

/* === BUTTONS =========================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--accent-deep);
  cursor: pointer;
  transition: all .2s var(--ease);
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; opacity: 1; box-shadow: 0 6px 18px -6px rgba(142, 122, 176, 0.55); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--accent); }
.btn-ghost:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); opacity: 1; }
.btn-ghost-invert { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-invert:hover { background: #fff; color: var(--ink); opacity: 1; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: .8rem; }

/* === PRODUCT GRID ====================================== */
.product-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.product-card {
  position: relative;
  background: transparent;
  cursor: pointer;
  transition: opacity .2s var(--ease);
  display: flex; flex-direction: column;
}
.product-card.is-in { animation: fadeUp .4s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.product-card:hover .product-img {
  box-shadow: 0 14px 30px -18px rgba(42,26,58,.18);
  transition: box-shadow .35s var(--ease);
}
.product-img {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f6f6f6;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.product-stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: #f6f6f6;
}
/* Category-themed soft gradient backgrounds for product cards.
   Jenni-Anne's catalog: clothing, hats, bags, blankets, teatowels, cosys, seasonal. */
/* Unified cream paper ground for all categories — the discipline that reads as expensive */
.stage-clothing,
.stage-hats,
.stage-bags,
.stage-blankets,
.stage-teatowels,
.stage-cosys,
.stage-seasonal { background: var(--grad-paper); }

/* Legacy aliases — kept so older HTML/JS using the original
   Crystal-Brook fish-category class names still renders.
   Map each old class to the closest new palette so nothing breaks. */
.stage-saltwater  { background: linear-gradient(135deg, #d6f7ef 0%, #c8eef0 100%); }  /* legacy → teatowels */
.stage-freshwater { background: linear-gradient(135deg, #e6f0d9 0%, #d8ecdc 100%); }  /* legacy → bags */
.stage-trophy     { background: linear-gradient(135deg, #fdf3e0 0%, #f6ead2 100%); }  /* legacy → blankets */
.stage-tropical   { background: linear-gradient(135deg, #fff6cf 0%, #d6f5ec 100%); }  /* legacy → hats */
.stage-bass       { background: linear-gradient(135deg, #fde7f0 0%, #efe2f3 100%); }  /* legacy → clothing */
.stage-game       { background: linear-gradient(135deg, #ffe2d3 0%, #ffd2cb 100%); }  /* legacy → cosys */
.stage-pelagic    { background: linear-gradient(135deg, #ece2f5 0%, #d8e9ff 100%); }  /* legacy → seasonal */
.product-stage img,
.product-cutout {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform .35s var(--ease);
}
.product-card:hover .product-cutout { transform: scale(1.035); transition: transform .7s cubic-bezier(.4,0,.2,1); }
.product-placeholder {
  text-align: center;
  padding: 16px;
  color: var(--ink-mute);
}
.product-placeholder .ph-mark { font-size: .9rem; font-weight: 500; color: var(--ink-soft); display: block; }
.product-placeholder .ph-sub { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.product-overlay {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-view-btn {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.quick-view-btn:hover { background: var(--accent-deep); color: #fff; opacity: 1; }
.product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: var(--accent-deep); color: #fff;
  font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--r-sm);
}
.product-heart {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 4;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.product-heart:hover { color: var(--ink); }
.product-heart.is-wishlisted { color: var(--ink); }
.product-body {
  padding: 12px 4px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.product-cat { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.product-name { font-size: .9rem; font-weight: 500; color: var(--ink); margin: 0; }
.product-meta { font-size: .76rem; color: var(--ink-mute); }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.product-price { font-size: .92rem; font-weight: 500; color: var(--ink); }
.add-btn {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
}
.add-btn:hover { opacity: .65; }
.is-highlight { animation: pulse 1.5s var(--ease); }
@keyframes pulse { 0%, 100% { box-shadow: none; } 50% { box-shadow: 0 0 0 4px rgba(0,0,0,.1); } }

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }

/* === STORIES / TESTIMONIALS ============================ */
.stories { padding: 80px 24px; background: #fbf8fd; border-top: 1px solid var(--line); }
.stories-stats {
  max-width: 760px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat strong { display: block; font-size: 1.6rem; font-weight: 400; color: var(--ink); }
.stat span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.tm-row {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tm { text-align: center; padding: 0 12px; }
.tm blockquote { font-size: .98rem; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.6; }
.tm em { font-style: normal; color: var(--ink); font-weight: 500; }
.tm figcaption { font-size: .72rem; color: var(--ink-mute); letter-spacing: .04em; }
.gallery {
  max-width: var(--container);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.g-tile {
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.g-stage { position: absolute; inset: 0; display: grid; place-items: center; }
.g-stage img { width: 80%; height: 80%; object-fit: contain; transition: transform .3s var(--ease); }
.g-tile:hover .g-stage img { transform: scale(1.06); }
.g-overlay { display: none; }
.gallery-cta { text-align: center; margin-top: 32px; }
@media (max-width: 720px) {
  .stories-stats { grid-template-columns: repeat(2, 1fr); }
  .tm-row { grid-template-columns: 1fr; gap: 24px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

/* === CONTACT =========================================== */
.contact { padding: 80px 24px; }
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-copy h2 { margin-bottom: 14px; }
.contact-list { margin: 24px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-list strong { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.contact-list span, .contact-list a { font-size: .92rem; color: var(--ink); }
.socials { display: flex; gap: 8px; }
.social {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}
.social:hover { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); opacity: 1; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form span { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--ink); }

/* Workshop map */
.contact-map { max-width: var(--container); margin: 48px auto 0; }
.contact-map-frame {
  position: relative;
  aspect-ratio: 16 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2); }
.contact-map-pin, .contact-map-pin-stem, .contact-map-pin-card { display: none; }
.contact-map-actions { display: flex; justify-content: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } .contact-map-frame { aspect-ratio: 4 / 3; } }

/* === FOOTER ============================================ */
.site-footer { background: #fbf8fd; border-top: 1px solid var(--line); padding: 48px 24px 24px; }
.foot-top { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 3fr; gap: 40px; }
.foot-brand .brand-name { display: block; font-size: 1.05rem; font-weight: 500; }
.foot-brand .brand-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 6px;
}
.foot-brand p { margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-cols h5 { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); font-weight: 500; margin-bottom: 12px; }
.foot-cols a { display: block; font-size: .82rem; color: var(--ink-soft); padding: 4px 0; }
.foot-bot {
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .72rem;
  color: var(--ink-mute);
}
@media (max-width: 720px) { .foot-top { grid-template-columns: 1fr; } .foot-cols { grid-template-columns: repeat(2, 1fr); } }

/* === CART DRAWER ======================================= */
.cart-drawer, .wishlist-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  border-left: 1px solid var(--line);
  z-index: 90;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.06);
}
.cart-drawer.is-open, .wishlist-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.05rem; font-weight: 500; margin: 0; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 48px 16px; color: var(--ink-mute); font-size: .92rem; }
.cart-empty-mark { width: 56px; height: 56px; margin: 0 auto 16px; opacity: .4; }
.cart-empty-mark svg { width: 100%; height: 100%; stroke: var(--ink-mute); }
.cart-empty p { color: var(--ink-soft); }
.cart-empty a { color: var(--ink); border-bottom: 1px solid var(--ink); }

.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.cart-thumb, .wish-thumb {
  width: 64px; height: 64px;
  background: #f6f6f6;
  border-radius: var(--r-sm);
  overflow: hidden;
  display: grid; place-items: center;
}
.cart-thumb img, .wish-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-thumb-mark, .wish-thumb-mark { font-size: .58rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .1em; padding: 0 4px; }
.cart-meta, .wish-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-name { font-size: .9rem; font-weight: 500; color: var(--ink); }
.cart-item-sub, .cart-item-meta { font-size: .72rem; color: var(--ink-mute); }
.cart-qty-row, .wish-actions { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.cart-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.cart-qty-btn { width: 24px; height: 24px; display: grid; place-items: center; color: var(--ink); }
.cart-qty-btn:hover { background: rgba(0,0,0,.04); }
.cart-qty-val { min-width: 24px; text-align: center; font-size: .82rem; font-weight: 500; }
.cart-remove, .wish-add, .cart-item-remove {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 4px;
}
.cart-remove:hover, .cart-item-remove:hover { color: var(--ink); opacity: 1; }
.wish-add { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.cart-item-price { font-size: .9rem; font-weight: 500; color: var(--ink); }

.cart-foot { padding: 18px 24px 22px; border-top: 1px solid var(--line); background: #fafafa; }
.cart-ship-progress { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px dashed var(--line); }
.cart-ship-progress p { margin: 0 0 6px; font-size: .82rem; color: var(--ink-soft); }
.cart-ship-progress strong { color: var(--ink); font-weight: 500; }
.cart-ship-tick { display: inline-grid; place-items: center; width: 14px; height: 14px; background: var(--accent-deep); color: #fff; border-radius: 50%; font-size: .55rem; margin-right: 4px; }
.cart-ship-bar { height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; }
.cart-ship-fill { height: 100%; background: var(--accent-deep); border-radius: 999px; transition: width .35s var(--ease); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: .92rem; }
.cart-total strong { font-weight: 500; }
.cart-foot small { display: block; text-align: center; margin-top: 8px; font-size: .68rem; color: var(--ink-mute); }

.scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

/* Wishlist drawer specifics */
.wish-item { grid-template-columns: 64px 1fr auto; }
.wish-meta a.cart-item-name { color: var(--ink); }

/* === SEARCH OVERLAY ==================================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 12vh 24px 24px;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.search-overlay.is-open { opacity: 1; }
.search-card {
  width: min(640px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-input-wrap { display: flex; align-items: center; padding: 4px 12px; border-bottom: 1px solid var(--line); }
.search-input-wrap::before {
  content: ""; width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239b8aa6' stroke-width='1.6'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>") center/contain no-repeat;
  margin-right: 12px;
}
.search-input { flex: 1; padding: 16px 0; border: 0; background: transparent; font-size: 1.05rem; color: var(--ink); outline: none; }
.search-input::placeholder { color: var(--ink-mute); }
.search-close { width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink-mute); border-radius: 50%; }
.search-close:hover { background: rgba(0,0,0,.04); color: var(--ink); }
.search-results { max-height: 60vh; overflow-y: auto; padding: 8px; }
.search-hint, .search-empty { padding: 36px 16px; text-align: center; font-size: .92rem; color: var(--ink-mute); }
.search-chip { background: rgba(0,0,0,.04); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: .76rem; color: var(--ink); margin: 0 2px; cursor: pointer; }
.search-chip:hover { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }
.search-empty em { color: var(--ink); font-style: normal; }
.search-result {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: var(--r-sm);
  color: var(--ink);
}
.search-result:hover { background: rgba(0,0,0,.04); opacity: 1; }
.search-result-thumb { width: 56px; height: 56px; background: #f6f6f6; border-radius: var(--r-sm); display: grid; place-items: center; overflow: hidden; }
.search-result-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.search-result-mark { font-size: .55rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .1em; padding: 0 4px; text-align: center; }
.search-result-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.search-result-cat { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.search-result strong { font-size: .9rem; font-weight: 500; color: var(--ink); }
.search-result-sub { font-size: .76rem; color: var(--ink-mute); }
.search-result-go { color: var(--ink-mute); transition: transform .15s var(--ease); }
.search-result:hover .search-result-go { color: var(--ink); transform: translateX(2px); }

/* === CHECKOUT MODAL ==================================== */
.checkout-modal {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 5vh 24px 24px;
  display: flex; align-items: flex-start; justify-content: center;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.checkout-modal.is-open { opacity: 1; }
.co-card {
  width: min(540px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  position: relative;
}
.co-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink-mute); border-radius: 50%; }
.co-close:hover { background: rgba(0,0,0,.04); color: var(--ink); }
.co-progress { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.co-dot { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.co-dot b {
  display: grid; place-items: center; width: 24px; height: 24px;
  border-radius: 50%; background: #f0f0f0; color: var(--ink-mute);
  font-size: .72rem; font-weight: 600;
}
.co-dot small { font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.co-dot.is-current b { background: var(--accent-deep); color: #fff; }
.co-dot.is-done b { background: var(--accent-deep); color: #fff; }
.co-dot.is-current small { color: var(--ink); }
.co-prog-line { width: 36px; height: 1px; background: var(--line); margin-bottom: 12px; }
.co-step { display: none; }
.co-step.is-current { display: block; animation: fade .25s; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.co-step h2 { font-size: 1.3rem; font-weight: 500; margin-bottom: 4px; }
.co-step-lede { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.co-step-lede a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.co-list { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 6px 0; margin-bottom: 12px; max-height: 180px; overflow-y: auto; }
.co-line { display: flex; justify-content: space-between; padding: 8px 0; gap: 12px; }
.co-line + .co-line { border-top: 1px solid var(--line); }
.co-line-meta { display: flex; flex-direction: column; gap: 2px; }
.co-line-meta strong { font-size: .9rem; font-weight: 500; }
.co-line-meta span { font-size: .68rem; color: var(--ink-mute); }
.co-line-price { font-size: .88rem; font-weight: 500; color: var(--ink); }
.co-totals { margin-bottom: 12px; }
.co-totals-mini { margin: 12px 0 16px; }
.co-total-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: .85rem; color: var(--ink-soft); }
.co-total-row strong { color: var(--ink); font-weight: 500; }
.co-grand { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; font-size: .98rem; }
.co-grand strong { font-size: 1.2rem; }
.co-fineprint { text-align: center; font-size: .72rem; color: var(--ink-mute); margin: 0 0 14px; }
.co-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.co-form label { display: flex; flex-direction: column; gap: 4px; }
.co-form label > span { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.co-form input, .co-form select {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .92rem;
  color: var(--ink);
}
.co-form input:focus, .co-form select:focus { outline: none; border-color: var(--ink); }
.co-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-card-row .co-card-input { position: relative; }
.co-card-input input { padding-right: 50px; font-family: 'Courier New', monospace; letter-spacing: 1.5px; }
.co-card-brand { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 32px; height: 20px; pointer-events: none; }
.co-secure { display: flex; align-items: center; gap: 6px; padding: 8px 10px; background: #fafafa; border-radius: var(--r-sm); font-size: .68rem; color: var(--ink-mute); margin-bottom: 14px; border: 1px solid var(--line); }
.co-actions { display: flex; gap: 10px; align-items: center; }
.co-actions .btn-block { width: 100%; }
.co-actions .btn-ghost { flex: 0 0 auto; }
.co-actions .btn-primary { flex: 1; }
.co-success { text-align: center; }
.co-success-mark { width: 60px; height: 60px; margin: 0 auto 16px; }
.co-success-mark svg { width: 100%; height: 100%; }
.co-success-lede { color: var(--ink-soft); margin: 0 auto 18px; max-width: 36ch; }
.co-success-card { background: #fafafa; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 18px; margin-bottom: 14px; text-align: left; }
.co-success-card div { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; gap: 12px; }
.co-success-card div + div { border-top: 1px solid var(--line); }
.co-success-card strong { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.co-success-card span { font-size: .92rem; color: var(--ink); font-family: 'Courier New', monospace; }

@media (max-width: 600px) {
  .checkout-modal { padding: 0; align-items: stretch; }
  .co-card { border-radius: 0; min-height: 100vh; padding: 48px 22px 24px; }
  .co-row-2 { grid-template-columns: 1fr; }
  .co-actions { flex-direction: column; }
  .co-actions .btn-ghost, .co-actions .btn-primary { width: 100%; }
}

/* === MOBILE NAV DRAWER ================================= */
.nav-drawer-backdrop {
  position: fixed; inset: 0; z-index: 89;
  background: rgba(0,0,0,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
.nav-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px; max-width: 88vw;
  background: #fff;
  border-left: 1px solid var(--line);
  z-index: 90;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.nav-drawer-head .brand-text { display: flex; flex-direction: column; }
.nav-drawer-head .brand-name { font-size: 1rem; font-weight: 500; }
.nav-drawer-head .brand-sub { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-mute); margin-top: 3px; }
.nav-drawer-links { display: flex; flex-direction: column; padding: 12px 0; flex: 1; }
.nav-drawer-links a { display: flex; align-items: center; gap: 12px; padding: 14px 22px; font-size: .98rem; color: var(--ink); }
.nav-drawer-links a:hover { background: #fafafa; opacity: 1; }
.nav-drawer-links a svg { color: var(--ink-mute); }
.nav-drawer-foot { padding: 16px 22px 20px; border-top: 1px solid var(--line); background: #fafafa; }
.nav-drawer-admin { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); }
.nav-drawer-admin:hover { background: var(--accent-deep); color: #fff; opacity: 1; }
.nav-drawer-tagline { margin: 12px 0 0; font-size: .72rem; color: var(--ink-mute); }

@media (max-width: 760px) {
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 0 16px; }
  .nav-links { display: none; }
  .admin-link { display: none; }
  .nav-mobile-btn { display: grid; }
  .feature-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* === SHOP PAGE ========================================= */
.page-shop { background: #fff; }
.shop-hero { padding: 60px 24px 40px; text-align: center; border-bottom: 1px solid var(--line); }
.shop-hero-grain { display: none; }
.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.shop-hero h1 em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.shop-hero-lede { font-size: 1rem; color: var(--ink-soft); max-width: 540px; margin: 0 auto 24px; }
.shop-hero-stats { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--line); margin-top: 24px; }
.shop-hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.shop-hero-stats strong { font-size: .98rem; font-weight: 500; color: var(--ink); }
.shop-hero-stats span { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }

.shop-cats { max-width: var(--container); margin: 0 auto; padding: 60px 24px 24px; }
.shop-grid-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px 80px; scroll-margin-top: 80px; }
.shop-tabs-bar {
  position: sticky; top: var(--nav-h);
  z-index: 40;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  margin: 24px -24px 0;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}
.shop-tabs-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cat-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.cat-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.cat-tab:hover { background: rgba(0,0,0,.04); }
.cat-tab.is-active { background: var(--accent-deep); color: #fff; }
.cat-tab-count { font-size: .58rem; opacity: .7; }
.cat-tab.is-active .cat-tab-count { opacity: 1; }

.shop-toolbar { display: inline-flex; align-items: center; gap: 12px; }
.shop-filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
}
.shop-filter-btn:hover, .shop-filter-btn.is-open { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }
.shop-filter-chev { transition: transform .25s var(--ease); }
.shop-filter-btn.is-open .shop-filter-chev { transform: rotate(180deg); }
.shop-filter-count {
  display: inline-grid; place-items: center;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--ink); color: #fff; font-size: .55rem; border-radius: 999px;
}
.shop-filter-btn.is-open .shop-filter-count { background: #fff; color: var(--ink); }

.shop-sort { display: inline-flex; align-items: center; gap: 6px; }
.shop-sort label { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.shop-sort select {
  padding: 6px 28px 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239b8aa6' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>")
    no-repeat right 8px center / 12px;
  font-size: .76rem;
  color: var(--ink);
  -webkit-appearance: none; appearance: none;
}

.shop-filter-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); margin: 0 -24px; }
.shop-filter-panel.is-open { grid-template-rows: 1fr; }
.shop-filter-panel-inner { min-height: 0; overflow: hidden; }
.shop-filter-panel.is-open .shop-filter-panel-inner { padding: 20px 24px 16px; background: #fafafa; border-bottom: 1px solid var(--line); }
.shop-filter-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 28px; max-width: var(--container); margin: 0 auto; }
.shop-filter-group h4 { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.shop-filter-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.shop-filter-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  color: var(--ink);
  cursor: pointer;
}
.shop-filter-pill small { font-size: .62rem; color: var(--ink-mute); }
.shop-filter-pill:hover { background: rgba(0,0,0,.04); }
.shop-filter-pill.is-active { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }
.shop-filter-pill.is-active small { color: rgba(255,255,255,.7); }
.shop-filter-group-aux { display: flex; flex-direction: column; gap: 12px; }
.shop-filter-switch { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: .82rem; color: var(--ink); }
.shop-filter-switch input { position: absolute; opacity: 0; pointer-events: none; }
.shop-filter-switch-track { position: relative; width: 32px; height: 18px; background: var(--line); border-radius: 999px; transition: background .2s var(--ease); }
.shop-filter-switch-track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease); }
.shop-filter-switch input:checked + .shop-filter-switch-track { background: var(--ink); }
.shop-filter-switch input:checked + .shop-filter-switch-track::after { transform: translateX(14px); }
.shop-filter-actions { display: flex; justify-content: space-between; align-items: center; max-width: var(--container); margin: 14px auto 0; padding-top: 12px; border-top: 1px solid var(--line); }
.shop-filter-clear { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.shop-filter-clear:hover { color: var(--ink); text-decoration: underline; }
.shop-filter-result { font-size: .85rem; color: var(--ink); }

.shop-grid-shell { padding-top: 32px; }

@media (max-width: 820px) {
  .shop-filter-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === PRODUCT DETAIL PAGE =============================== */
.page-pdp { background: #fff; }
.pdp-hero { max-width: var(--container); margin: 0 auto; padding: 32px 24px 60px; }
.pdp-crumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 24px; }
.pdp-crumbs a { color: var(--ink-mute); }
.pdp-crumbs a:hover { color: var(--ink); }
.pdp-crumbs span[aria-hidden] { opacity: .5; }
.pdp-crumb-name { color: var(--ink); }
.pdp-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.pdp-stage-wrap { position: sticky; top: 90px; }
.pdp-product-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f6f6f6;
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid; place-items: center;
}
.pdp-product-stage img { width: 90%; height: 90%; object-fit: contain; }
.pdp-info { display: flex; flex-direction: column; gap: 0; }
.pdp-info-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pdp-eyebrow { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.pdp-badge { display: inline-block; padding: 3px 8px; background: var(--accent-deep); color: #fff; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; border-radius: var(--r-sm); }
.pdp-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 400; margin: 4px 0 14px; }
.pdp-desc { font-size: 1rem; color: var(--ink-soft); margin: 0 0 24px; line-height: 1.6; }
.pdp-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 0 24px; }
.pdp-spec li { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; }
.pdp-spec li:nth-child(odd) { padding-right: 12px; border-right: 1px solid var(--line); }
.pdp-spec li:nth-child(even) { padding-left: 12px; }
.pdp-spec li:nth-child(n+3) { border-top: 1px solid var(--line); }
.pdp-spec strong { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.pdp-spec span { font-size: .92rem; color: var(--ink); }
.pdp-cta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pdp-price { font-size: 1.4rem; font-weight: 500; flex: 1; }
.pdp-heart { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink-mute); }
.pdp-heart:hover, .pdp-heart.is-wishlisted { color: var(--ink); border-color: var(--ink); }
.pdp-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 20px; }
.pdp-pills li { font-size: .68rem; letter-spacing: .04em; padding: 4px 10px; background: #fafafa; border: 1px solid var(--line); color: var(--ink-soft); border-radius: 999px; }
.pdp-shipping { padding: 12px 16px; background: #fafafa; border-radius: var(--r-md); font-size: .82rem; border: 1px solid var(--line); }
.pdp-shipping strong { font-weight: 500; color: var(--ink); display: block; margin-bottom: 2px; }
.pdp-shipping span { color: var(--ink-soft); }
.pdp-shipping a { color: var(--ink); border-bottom: 1px solid var(--ink); }

.pdp-related { max-width: var(--container); margin: 0 auto; padding: 60px 24px; border-top: 1px solid var(--line); }
.pdp-related-head { text-align: center; margin-bottom: 32px; }
.pdp-related-head h3 { font-size: 1.3rem; font-weight: 400; margin-top: 4px; }
.pdp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.pdp-404 { max-width: 600px; margin: 0 auto; text-align: center; padding: 80px 24px; }
.pdp-404 h1 { font-size: 2rem; font-weight: 400; margin: 12px 0 14px; }
.pdp-404-lede { color: var(--ink-soft); margin-bottom: 24px; }
.pdp-404-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-stage-wrap { position: static; }
  .pdp-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-spec { grid-template-columns: 1fr; }
  .pdp-spec li:nth-child(odd) { padding-right: 0; border-right: 0; }
  .pdp-spec li:nth-child(even) { padding-left: 0; }
  .pdp-spec li + li { border-top: 1px solid var(--line) !important; }
}

/* === ABOUT PAGE ======================================== */
.about-page-hero { padding: 60px 24px; max-width: var(--container); margin: 0 auto; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero-copy h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; margin: 12px 0 16px; }
.about-hero-copy p { font-size: 1.02rem; line-height: 1.6; }
.about-portrait {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, #fbf8fd 0%, #f6effa 100%);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  padding: 8%;
}
.about-portrait::after, .about-portrait::before, .about-portrait-frame, .about-signed { display: none; }
.about-portrait > .portrait-placeholder { display: none; }
.about-portrait img { width: 100%; height: 100%; object-fit: contain; background: transparent; }
.about-portrait-img { width: 100%; height: 100%; object-fit: contain; }
.about-portrait-cap { font-size: .82rem; color: var(--ink-mute); margin-top: 12px; text-align: center; }

.about-story, .about-place, .about-promise, .about-workshop, .about-final { padding: 60px 24px; max-width: var(--container); margin: 0 auto; }
.about-story-inner, .about-place-grid, .about-promise-inner, .about-final-inner { max-width: 760px; margin: 0 auto; }
.about-story h2, .about-place h2, .about-promise h2, .about-final h2 { margin-bottom: 16px; }
.about-story p, .about-place p, .about-promise p { margin-bottom: 14px; line-height: 1.6; }
.about-pull { font-size: 1.2rem; font-style: italic; color: var(--ink); padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 24px 0; }
.about-place-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-place-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.about-place-stats div { padding: 12px 0; border-top: 1px solid var(--line); }
.about-place-stats strong { display: block; font-size: 1.1rem; font-weight: 500; }
.about-place-stats span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; display: block; }
.about-place-map { background: #f6f6f6; aspect-ratio: 1 / 1; border-radius: var(--r-md); overflow: hidden; display: grid; place-items: center; }
.about-place-map svg { width: 100%; height: 100%; }
.about-promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.about-promise-item { padding: 20px 0; border-top: 1px solid var(--line); }
.about-promise-item h3 { font-size: 1rem; margin-bottom: 6px; }
.about-promise-item p { font-size: .9rem; color: var(--ink-soft); }
.about-workshop-head { text-align: center; max-width: 600px; margin: 0 auto 32px; }
.about-workshop-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px; max-width: var(--container); margin: 0 auto; }
.about-shot { background: #f6f6f6; border-radius: var(--r-sm); overflow: hidden; position: relative; cursor: pointer; }
.about-shot:hover { opacity: .9; }
.about-shot.hero { grid-row: span 2; }
.about-shot-art { width: 100%; height: 100%; object-fit: cover; }
.about-shot-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: linear-gradient(180deg, transparent, rgba(0,0,0,.6)); }
.about-workshop-cta { text-align: center; margin-top: 32px; }
.about-final { text-align: center; padding: 80px 24px; }
.about-final h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 300; }
.about-final-inner p { font-size: 1.05rem; margin: 16px 0 24px; }
.about-final::before, .about-final::after { display: none; }

@media (max-width: 880px) {
  .about-hero-grid, .about-place-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-promise-grid { grid-template-columns: 1fr; }
  .about-workshop-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
  .about-shot.hero { grid-column: span 2; }
}

/* === ORDER TRACKING PAGE =============================== */
.page-order { background: #fff; }
.order-hero { max-width: var(--container); margin: 0 auto; padding: 32px 24px; }
.order-hero-inner { padding-top: 16px; }
.order-loading { text-align: center; padding: 60px 16px; color: var(--ink-mute); }
.order-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 28px; background: #fafafa; border: 1px solid var(--line); border-radius: var(--r-md); }
.order-hero-meta h1 { font-family: 'Courier New', monospace; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; margin: 6px 0; letter-spacing: .04em; }
.order-hero-sub { font-size: .92rem; color: var(--ink-soft); margin: 0 0 12px; }
.order-status-pill { display: inline-flex; padding: 4px 12px; background: var(--accent-deep); color: #fff; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; border-radius: 999px; }
.order-status-pill.status-delivered { background: #4a8a6a; }
.order-hero-mark { display: none; }

.order-body { max-width: var(--container); margin: 0 auto; padding: 0 24px 60px; }
.order-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: start; }
.order-section-title { font-size: 1rem; font-weight: 500; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.order-timeline-card, .order-items-card, .order-customer-card, .order-help-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
}
.order-timeline-card { position: sticky; top: 90px; }
.order-timeline { display: flex; flex-direction: column; }
.order-timeline li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding: 12px 0; position: relative; }
.order-timeline li:not(:last-child)::after { content: ""; position: absolute; top: 28px; bottom: -8px; left: 11px; width: 2px; background: var(--line); }
.order-timeline li.is-done:not(:last-child)::after { background: var(--accent-deep); }
.order-tl-dot { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 2px solid var(--line); color: #fff; }
.order-timeline li.is-done .order-tl-dot { background: var(--accent-deep); border-color: var(--accent-deep); }
.order-timeline li.is-current .order-tl-dot { background: var(--accent-deep); border-color: var(--accent-deep); }
.order-pulse { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: orderPulse 1.4s ease-in-out infinite; }
@keyframes orderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }
.order-timeline li > div { display: flex; flex-direction: column; gap: 2px; }
.order-timeline li strong { font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.order-timeline li.is-done strong, .order-timeline li.is-current strong { color: var(--ink); }
.order-timeline li span { font-size: .76rem; color: var(--ink-mute); }
.order-eta { margin: 16px 0 0; padding: 10px 14px; background: #fafafa; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .88rem; text-align: center; color: var(--ink); }

.order-side { display: flex; flex-direction: column; gap: 20px; }
.order-items { display: flex; flex-direction: column; }
.order-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 12px 0; align-items: center; }
.order-item + .order-item { border-top: 1px solid var(--line); }
.order-item-thumb { width: 64px; height: 64px; background: #f6f6f6; border-radius: var(--r-sm); overflow: hidden; display: grid; place-items: center; }
.order-item-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.order-item-mark { font-size: .55rem; color: var(--ink-mute); text-transform: uppercase; padding: 0 4px; text-align: center; }
.order-item-meta { display: flex; flex-direction: column; gap: 2px; }
.order-item-meta a { font-size: .92rem; font-weight: 500; color: var(--ink); }
.order-item-meta span { font-size: .72rem; color: var(--ink-mute); }
.order-item-qty { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.order-item-price { font-size: .92rem; font-weight: 500; color: var(--ink); }
.order-totals { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 12px; }
.order-total-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: .88rem; color: var(--ink-soft); }
.order-total-row strong { color: var(--ink); font-weight: 500; }
.order-grand { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; font-size: .98rem; }
.order-grand strong { font-size: 1.15rem; }
.order-customer-card .order-ship-block { font-size: .92rem; line-height: 1.55; color: var(--ink); margin: 0 0 8px; }
.order-customer-card a { color: var(--ink); border-bottom: 1px solid var(--line); }
.order-payment-line { font-size: .76rem; color: var(--ink-mute); margin: 0; }
.order-help-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.order-help-card a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.order-404 { text-align: center; padding: 60px 16px; }
.order-404 h1 { font-size: 1.8rem; font-weight: 400; margin: 12px 0; }
.order-404-lede { color: var(--ink-soft); margin: 0 auto 24px; max-width: 50ch; }
.order-404-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-timeline-card { position: static; }
  .order-hero-grid { grid-template-columns: 1fr; }
}

/* === POLICIES PAGE ===================================== */
.page-policies { background: #fff; }
.pol-hero { max-width: 760px; margin: 0 auto; padding: 60px 24px 32px; text-align: center; }
.pol-hero h1 { font-weight: 300; margin: 12px 0 14px; }
.pol-hero-lede { font-size: 1.05rem; color: var(--ink-soft); margin: 0 auto 24px; }
.pol-jump { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pol-jump a { padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; color: var(--ink); }
.pol-jump a:hover { background: var(--accent-deep); color: #fff; opacity: 1; }
.pol-section { padding: 60px 24px; scroll-margin-top: 80px; max-width: var(--container); margin: 0 auto; }
.pol-section-alt { background: #fafafa; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pol-section-inner { max-width: 920px; margin: 0 auto; }
.pol-section-head { text-align: center; margin-bottom: 32px; }
.pol-num { font-size: 2rem; font-weight: 300; color: var(--ink-mute); display: block; line-height: 1; margin-bottom: 8px; font-family: 'Courier New', monospace; }
.pol-section-head h2 { font-weight: 300; margin: 4px 0 0; }
.pol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pol-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; }
.pol-card-feature { grid-column: span 2; background: linear-gradient(135deg, var(--accent-deep), var(--ink)); color: #fff; }
.pol-card-icon { width: 36px; height: 36px; display: grid; place-items: center; color: var(--ink); margin-bottom: 10px; }
.pol-card-feature .pol-card-icon { color: #fff; }
.pol-card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 8px; }
.pol-card-feature h3 { color: #fff; }
.pol-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.pol-card-feature p { color: rgba(255,255,255,.75); }
.pol-card a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.pol-card-feature a { color: #fff; border-bottom-color: #fff; }
.pol-callout { margin-top: 20px; padding: 14px 18px; background: #fafafa; border: 1px solid var(--line); border-radius: var(--r-md); font-size: .92rem; }
.pol-returns-list { display: flex; flex-direction: column; gap: 14px; }
.pol-return { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.pol-return-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; }
.pol-return-good { background: #4a8a6a; }
.pol-return-meh { background: var(--accent-deep); }
.pol-return-warn { background: #c97a8a; }
.pol-return h3 { font-size: 1rem; font-weight: 500; margin-bottom: 4px; }
.pol-return p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.pol-return p strong { color: var(--ink); font-weight: 500; }
.pol-guarantee-lede { font-size: 1.02rem; color: var(--ink-soft); text-align: center; max-width: 60ch; margin: 0 auto 24px; }
.pol-guarantee-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pol-guarantee-list li { padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); border-left: 3px solid var(--accent-deep); display: flex; flex-direction: column; gap: 4px; }
.pol-guarantee-list strong { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); }
.pol-guarantee-list span { font-size: .92rem; color: var(--ink-soft); }
.pol-cta { margin-top: 28px; padding: 24px; text-align: center; background: linear-gradient(135deg, var(--accent-deep), var(--ink)); color: #fff; border-radius: var(--r-md); }
.pol-cta h3 { color: #fff; font-size: 1.2rem; }
.pol-cta p { color: rgba(255,255,255,.75); margin: 8px 0 16px; }
.pol-cta a { color: #fff; border-bottom: 1px solid #fff; }
@media (max-width: 720px) {
  .pol-grid, .pol-guarantee-list { grid-template-columns: 1fr; }
  .pol-card-feature { grid-column: auto; }
}

/* === 404 PAGE ========================================== */
.page-404 { background: #fff; }
.not-found { max-width: 600px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.not-found-grain, .not-found-frame { display: none; }
.not-found h1 { font-weight: 300; font-size: clamp(2rem, 4vw, 2.8rem); margin: 12px 0 16px; }
.not-found-lede { color: var(--ink-soft); font-size: 1.02rem; margin: 0 auto 24px; max-width: 50ch; }
.not-found-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.not-found-cats { padding-top: 24px; border-top: 1px solid var(--line); }
.not-found-cats-title { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.not-found-cats-list { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.not-found-cats-list a { padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; color: var(--ink); }
.not-found-cats-list a:hover { background: var(--accent-deep); color: #fff; opacity: 1; }

/* === LIGHTBOX / QUICK VIEW ============================= */
.lightbox {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox-close { position: absolute; top: 20px; right: 20px; }
.lightbox-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
}
.lb-stage { aspect-ratio: 1 / 1; background: #f6f6f6; border-radius: var(--r-sm); display: grid; place-items: center; }
.lb-stage img { width: 80%; height: 80%; object-fit: contain; }
.lb-info { display: flex; flex-direction: column; }
.lb-eyebrow { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.lb-info h3 { font-size: 1.4rem; font-weight: 400; margin: 6px 0 10px; }
.lb-meta { font-size: .82rem; color: var(--ink-mute); margin-bottom: 12px; }
.lb-desc { font-size: .92rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.lb-cta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.lb-price { font-size: 1.3rem; font-weight: 500; }
.lb-pills { display: flex; flex-direction: column; gap: 4px; }
.lb-pills li { font-size: .78rem; color: var(--ink-soft); padding-left: 14px; position: relative; }
.lb-pills li::before { content: "—"; position: absolute; left: 0; color: var(--ink-mute); }
@media (max-width: 720px) {
  .lightbox-body { grid-template-columns: 1fr; padding: 20px; }
}

/* === FOLLOW ALONG / FB FEED ============================ */
.follow-along {
  position: relative;
  padding: 96px 24px 100px;
  background:
    radial-gradient(ellipse 70% 80% at 20% 10%, rgba(202,192,223,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 90%, rgba(162,244,229,.22) 0%, transparent 60%),
    linear-gradient(180deg, #fbf8fd 0%, #f6effa 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.follow-head {
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.follow-head .eyebrow { display: block; margin-bottom: 14px; }
.follow-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.2;
}
.follow-head h2 em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5em;
  color: var(--accent-deep);
  letter-spacing: 0;
  vertical-align: -.18em;
  margin-left: 2px;
}
.follow-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 28px;
}
.follow-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.follow-feed {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.follow-feed-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    0 18px 48px -16px rgba(142, 122, 176, 0.28),
    0 4px 12px -4px rgba(42, 26, 58, 0.08);
  padding: 10px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
}
.follow-feed-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 50%, var(--accent) 100%);
  border-radius: 14px 14px 0 0;
}
.follow-feed-frame iframe {
  display: block;
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .follow-along { padding: 64px 20px 72px; }
  .follow-head { margin-bottom: 32px; }
  .follow-feed-frame { padding: 6px; }
}

/* === PWA INSTALL PROMPT ================================ */
.pwa-install {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 70;
  background: var(--ink); color: #fff;
  padding: 14px 16px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 480px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}
.pwa-install.is-shown { opacity: 1; transform: translateY(0); }
.pwa-install-mark { width: 40px; height: 40px; background: #fff; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; }
.pwa-install-copy { flex: 1; }
.pwa-install-copy strong { display: block; font-size: .9rem; font-weight: 500; }
.pwa-install-copy span { font-size: .76rem; color: rgba(255,255,255,.7); }
.pwa-install-actions { display: flex; gap: 6px; align-items: center; }
.pwa-install-actions .btn-primary { background: #fff; color: var(--ink); border-color: #fff; padding: 8px 14px; font-size: .68rem; }
.pwa-install-dismiss { width: 28px; height: 28px; display: grid; place-items: center; color: rgba(255,255,255,.6); }

/* === TOAST ============================================= */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: .85rem;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* === MISC RESETS ======================================= */
.reveal, .reveal-delay-1, .reveal-delay-2 { opacity: 1 !important; transform: none !important; }

/* === PDP UX UPGRADES ============================== */

/* --- Size picker --- */
.pdp-size-pick { align-items: center; }
.pdp-size-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-right: 4px;
}
.size-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.size-pill:hover { border-color: var(--accent-deep); }
.size-pill.is-selected,
.size-pill[aria-checked="true"] {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}
#pdpAdd[disabled],
#pdpAdd[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- Made-to-order badge --- */
.pdp-mto-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(202, 192, 223, .18);
  color: var(--accent-deep);
  padding: 5px 11px;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.4;
}
.pdp-mto-badge::before {
  content: '\25CF';
  margin-right: 6px;
  font-size: .55em;
  line-height: 1;
}
.pdp-cta-row .pdp-mto-badge {
  flex: 0 0 auto;
}
/* Card variant — sits between meta and product-foot */
.product-body .card-mto {
  align-self: flex-start;
  margin: 4px 0 8px;
  font-size: .62rem;
  padding: 4px 9px;
}

/* --- Accordions --- */
.pdp-accordions {
  margin: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.pdp-accordions details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  position: relative;
  padding-left: 4px;
  transition: padding-left .2s var(--ease);
}
.pdp-accordions details[open] {
  padding-left: 12px;
  border-left: 2px solid var(--accent-deep);
}
.pdp-accordions summary {
  cursor: pointer;
  list-style: none;
  font-size: .92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  user-select: none;
}
.pdp-accordions summary::-webkit-details-marker { display: none; }
.pdp-accordions summary::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ink-mute);
  border-bottom: 1.5px solid var(--ink-mute);
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
  margin-left: 12px;
  flex-shrink: 0;
}
.pdp-accordions details[open] > summary::after {
  transform: rotate(-135deg);
}
.pdp-accordions p {
  margin: 10px 0 2px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.55;
}

/* --- Sticky mobile add-to-cart bar --- */
.pdp-mobile-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  transform: translateY(110%);
  transition: transform .25s var(--ease);
  box-shadow: 0 -4px 14px rgba(0,0,0,.06);
}
.pdp-mobile-atc.is-shown { transform: translateY(0); }
.pdp-mobile-atc-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.pdp-mobile-atc-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f1ec;
  flex-shrink: 0;
}
.pdp-mobile-atc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-mobile-atc-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.pdp-mobile-atc-name {
  font-size: .82rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.pdp-mobile-atc-price {
  font-size: .74rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.pdp-mobile-atc-inner .btn {
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: .82rem;
}
@media (min-width: 721px) {
  .pdp-mobile-atc { display: none !important; }
}

/* --- Cart drawer free-shipping strip --- */
.cart-body > .cart-ship-progress {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: rgba(202, 192, 223, .22);
  border-radius: var(--r-md);
  font-size: .82rem;
  color: var(--ink);
}
.cart-body > .cart-ship-progress p {
  margin: 0 0 8px;
  font-size: .82rem;
  color: var(--ink);
}
.cart-body > .cart-ship-progress.is-met p {
  color: var(--accent-deep);
}
.cart-body > .cart-ship-progress .cart-ship-bar {
  width: 100%;
  height: 4px;
  background: rgba(202, 192, 223, .35);
  border-radius: 999px;
  overflow: hidden;
}
.cart-body > .cart-ship-progress .cart-ship-fill {
  display: block;
  height: 100%;
  background: var(--accent-deep);
  border-radius: 999px;
  transition: width .35s var(--ease);
}
.cart-body > .cart-ship-progress .cart-ship-tick {
  display: inline-block;
  margin-right: 4px;
  color: var(--accent-deep);
  font-weight: 600;
}

/* === DESIGN POLISH (Pass 1/3 — image cohesion, tactile CTA, stitch) === */

/* Unify all product/category imagery — one warm filter pass kills the
   inconsistency of amateur source photography */
.product-cutout,
.product-stage img,
.pdp-product-stage img,
.ac-cutout,
.cat-show-pic,
.product-img img {
  filter: saturate(0.92) brightness(1.04) contrast(0.97) sepia(0.04);
  transition: filter .3s var(--ease), transform .7s cubic-bezier(.4,0,.2,1), opacity .4s var(--ease);
}

/* Cream-paper multiply overlay — pulls every photo onto the same tonal ground */
.product-stage::after,
.cat-show-card::after,
.ac-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fbf3e8;
  mix-blend-mode: multiply;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}
.product-stage,
.ac-frame {
  position: relative;
  overflow: hidden;
}
.product-stage > *, .ac-frame > * { position: relative; z-index: 0; }

/* Tactile primary CTA — Linear-style depress on click, no hover-jump */
.btn-primary {
  transition:
    background .2s var(--ease),
    box-shadow .25s var(--ease),
    transform .12s var(--ease);
}
.btn-primary:active { transform: translateY(1px); }

/* Stagger the reveal — eyebrow first, headline, body, CTA */
.section-head .eyebrow,
.about-copy .eyebrow,
.follow-head .eyebrow { --reveal-delay: 0ms; }
.section-head h2,
.about-copy h2,
.follow-head h2 { --reveal-delay: 80ms; }
.section-head p,
.about-copy p,
.follow-head p { --reveal-delay: 160ms; }
.about-cta,
.follow-ctas { --reveal-delay: 240ms; }

/* Quiet running-stitch divider utility */
.stitch-divider,
hr.stitch {
  border: 0;
  border-top: 1px dashed var(--line-stitch);
  margin: 56px auto;
  max-width: 240px;
  height: 0;
}

/* Reduced-motion — scoped properly, doesn't leak globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
