/* Google Fonts are loaded via <link> tags in each HTML <head> for parallel fetch — not @import */

:root {
  color-scheme: only light;

  /* ── Colour palette ────────────────────────────────────────────────────── */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --trust-strip-fill: #F5F3F0;   /* shared fill: hero trust strip, Journal + Customer Stories cards */
  --text: #2e1f18;
  --muted: #7a6253;
  --accent: #6d2b21;
  --accent-dark: #4f1c19;
  --accent-soft: #ac7c64;
  --border: rgba(45, 31, 22, 0.12);
  --pdp-cta-accent: #6d2b21;
  --pdp-heading-color: #2e1f18;
  --shadow: 0 20px 45px rgba(19, 10, 7, 0.08);

  /* ── Typography ────────────────────────────────────────────────────────── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-card: 'Inter', system-ui, -apple-system, sans-serif;
  --font-card-title: 'Inter', Georgia, serif;
  --font-card-title-size: 1.00rem;
  --heading-weight: 700;
  --heading-line-height: 1.1;

  /* ── Kicker  (eyebrow / subtitle above a heading) ──────────────────────── */
  --kicker-font:    var(--font-ui);
  --kicker-size:    0.65rem;
  --kicker-weight:  700;
  --kicker-spacing: 0.22em;
  --kicker-color:   var(--accent-soft);

  /* ── Section rhythm ────────────────────────────────────────────────────── */
  --section-padding:    1.0rem;        /* standard bottom / vertical gap     */
  --page-gutter:        clamp(1rem, 5vw, 3rem);  /* horizontal page margin  */
  --section-heading-mb: 0.6rem;        /* space below a section heading      */

  /* ── Layout anchors ────────────────────────────────────────────────────── */
  --header-height:     4.4rem;   /* desktop sticky header — drives gallery offset */
  --mobile-nav-height: 62px;     /* fixed bottom bar on mobile                    */

  /* ── Footer palette ────────────────────────────────────────────────────── */
  --footer-bg:     #120806;
  --footer-fg:     #f2e5dc;
  --footer-muted:  rgba(242, 229, 220, 0.65);
  --footer-border: rgba(255, 255, 255, 0.10);
  --footer-gold:   #c9a96e;

  font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

em, i {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
  color-scheme: light;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

/* ── Global type scale — set once, used everywhere.
   Display tier (h1–h3): Cormorant Garamond. UI tier (u1–u8): DM Sans.
   Component rules must NOT redeclare font-family / font-size / font-weight.
   Only override colour or letter-spacing when a specific context requires it. */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0;
}

/* Mobile base sizes */
h1 { font-size: 2.4rem;  font-weight: 700; letter-spacing: -0.02em; line-height: 1.0; }
h2 { font-size: 1.5rem;  font-weight: 500; letter-spacing:  0.01em; line-height: 1.1; }
h3 { font-size: 0.95rem; font-weight: 500; letter-spacing:  0em;    line-height: 1.2; }
h4, h5, h6 { font-weight: 500; line-height: 1.2; }

/* Desktop — fluid display type */
@media (min-width: 769px) {
  h1 { font-size: clamp(3rem,   5.56vw, 6.5rem); }
  h2 { font-size: clamp(1.8rem, 2.9vw,  3.2rem); }
  h3 { font-size: clamp(1rem,   1.3vw,  1.4rem); }
}

/* Large desktop — display type grows further */
@media (min-width: 1440px) {
  h1 { font-size: clamp(5rem,   5.56vw, 7.5rem); }
  h2 { font-size: clamp(2.6rem, 2.9vw,  3.6rem); }
}

blockquote, .wv-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ── UI type scale — wv-u1 through wv-u8 ──────────────────────────────────── */

/* u1 — Navigation labels */
.wv-u1 { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.24em; }

/* u2 — Kicker / eyebrow (sits above a section heading) */
.wv-u2 { font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent-soft); }

/* u3 — Body text (also set on body element below) */
.wv-u3 { font-family: var(--font-ui); font-size: 1rem; font-weight: 400; line-height: 1.7; }

/* u4 — Caption / section subtitle */
.wv-u4 { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 400; line-height: 1.6; color: var(--muted); }

/* Customer Comment — user-generated review/caption text */
.wv-customer-comment { font-family: var(--font-card); font-size: 0.85rem; font-weight: 400; line-height: 1.55; color: var(--text); }

/* u5 — Meta / fine print (breadcrumbs, timestamps, GST notes) */
.wv-u5 { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 400; line-height: 1.5; color: var(--muted); letter-spacing: 0.02em; }

/* u6 — Badge (material tags, NEW / BESTSELLER chips) */
.wv-u6 { font-family: var(--font-ui); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }

/* u7 — Price */
.wv-price     { font-family: var(--font-ui); font-size: 0.88rem; font-weight: 600; color: var(--accent); letter-spacing: 0.01em; }
.wv-price--lg { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 700; }

/* u8 — CTA / button text */
.wv-cta     { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
.wv-cta--lg { font-size: 0.78rem; }

/* u9 — Product-card overlay title (image-overlay heading on grid cards:
   Collections, Heritage Designs, Gift by Occasion). Weight/case/color match
   the standard heading treatment; only white color is component-specific,
   needed for legibility over a photo. Size stays per-component since card
   widths differ. */
.wv-card-title { font-family: var(--font-display); font-weight: 500; text-transform: none; color: #fff; }

/* u10 — Product-card "explore" link (gold CTA under an overlay title) */
.wv-card-explore { display: inline-block; font-family: var(--font-ui); font-weight: 700; text-transform: uppercase; color: var(--footer-gold); text-decoration: none; transition: color 180ms ease; }
.wv-card-explore:hover { color: #fff; }

/* UI chrome — keep sans-serif for legibility at small sizes */
.site-nav,
.site-nav a,
.mobile-topbar,
.drawer-nav a,
.hero-label,
.icon-button,
.button,
.fav-material,
.fav-view-all,
.fav-add {
  font-family: var(--font-ui);
}

/* ─────────────────────────────────────────────────────────────────────────────
   DESKTOP HEADER
   Hidden on mobile. Shown sticky on desktop. Direct body child = naturally
   full viewport width, no escape-hatch math needed.
───────────────────────────────────────────────────────────────────────────── */

.site-header {
  display: none;
}

@media (min-width: 769px) {
  .site-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 5vw, 5.2rem);
  position: relative;
}

.site-nav {
  flex: 0 0 auto;
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 700;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-dark);
  transition: width 200ms ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.site-nav a:hover::after {
  width: 100%;
}

.brand-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

/* Scoped to .header-grid (not just .brand-logo) so this reliably beats
   WooCommerce's ".woocommerce img{height:auto;max-width:100%}" reset,
   which only applies on WooCommerce-templated pages (product/shop/cart) —
   without it, the logo rendered at its full native pixel size there. */
.header-grid .brand-logo {
  height: 3.8rem;
  width: auto;
  object-fit: contain;
  max-width: clamp(140px, 22vw, 280px);
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

/* ── Nav trigger (SHOP button styled as nav link) ───────────────────────── */
.nav-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  position: relative;
  transition: color 200ms ease;
}

.nav-trigger::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-dark);
  transition: width 200ms ease;
}

.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--accent-dark);
}

.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  width: 100%;
}




/* ── Nav badge (cart / wishlist count) ─────────────────────────────────── */
.nav-btn-badge {
  position: relative;
}

.nav-badge {
  position: absolute;
  top: 0.05rem;
  right: 0.05rem;
  min-width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.52rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 0.15rem;
  pointer-events: none;
}

/* ── Mega menu ──────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  .site-header {
    z-index: 100;
  }
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: fit-content;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 12px 40px rgba(46, 31, 24, 0.13);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s 200ms;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s 0s;
}

.mega-inner {
  width: min(1200px, calc(100vw - 4rem));
}

.mega-inner--journal {
  display: block;
  width: min(1180px, calc(100vw - 4rem));
}

/* ── Content grid: 4 browse cols + right panel ──────────────────────────── */
.mega-content-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  border-bottom: 1px solid var(--border);
}

/* Browse panel */
.mega-browse {
  padding: 1rem 0 0.75rem 0;
}

.mega-browse-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
}

/* Editorial image column (first browse column) */
.mega-col--img {
  position: relative;
  padding: 0;
  align-self: stretch;
  overflow: hidden;
  border-right: none;
  /* escape the .mega-browse top/bottom padding so the image spans full height */
  margin-top: -1rem;
  margin-bottom: -0.75rem;
}

.mega-col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mega-col-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 35%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 0.75rem;
  text-align: center;
}

.mega-col-img-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  margin: 0 0 0.45rem;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.75);
}

.mega-col-img-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  transition: background 140ms ease;
}

.mega-col {
  padding: 0 1.5rem 0 0;
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mega-col:not(:first-child) {
  padding-left: 1.5rem;
}

.mega-col:last-child {
  border-right: none;
  padding-right: 0;
}

/* Image column — double-class selector beats .mega-col single-class regardless of position */
.mega-col.mega-col--img {
  padding: 0;
  border-right: none;
}

.mega-col-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.mega-col-head svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--accent-soft);
}

.mega-col-head span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.45;
}

/* Decorative rule below column header */
.mega-col-rule {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent-soft);
  margin: 0 0 0.45rem;
  opacity: 0.6;
}

.mega-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-col-item {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.15rem 0;
  letter-spacing: 0.01em;
  transition: color 140ms ease;
}

.mega-col-item:hover {
  color: var(--accent);
}

/* Occasion icons (Lucide) */
.mega-item-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--accent-soft);
}

/* All browse thumbnails — pure square, no radius */
.mega-item-thumb {
  width: 30px;
  height: 30px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

/* "View all" link at bottom of column */
.mega-col-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 140ms ease;
}

.mega-col-viewall:hover {
  color: var(--accent-dark);
}

.mega-badge {
  font-family: var(--font-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
}

/* ── Right panel ─────────────────────────────────────────────────────────── */
.mega-right-panel {
  border-left: 1px solid var(--border);
  background: #faf7f4;
  padding: 1rem 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-right-section {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mega-right-section--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mega-right-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}

.mega-right-head svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--accent-soft);
}

.mega-right-head span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

/* Collections list */
.mega-collection-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-collection-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: color 140ms ease;
}

.mega-collection-list li:last-child .mega-collection-item {
  border-bottom: none;
}

.mega-collection-item:hover { color: var(--accent); }
.mega-collection-item:hover .mega-collection-sub { color: var(--accent-soft); }

.mega-collection-thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

.mega-collection-text {
  flex: 1;
  min-width: 0;
}

.mega-collection-title {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.mega-collection-sub {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.18rem;
  line-height: 1.3;
  transition: color 140ms ease;
}

.mega-chevron {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: auto;
}

/* Budget grid */
.mega-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.mega-budget-btn {
  display: block;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.45rem 0.25rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.mega-budget-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Colour swatches */
.mega-colour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.6rem;
  margin-bottom: 0.65rem;
}

.mega-colour-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  cursor: pointer;
}

.mega-colour-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  display: block;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.mega-colour-swatch:hover .mega-colour-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.mega-colour-label {
  font-family: var(--font-ui);
  font-size: 0.5rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

/* ── Budget + Colour split row (full-width, below dividing line) ─────────── */
.mega-split-row {
  display: flex;
  align-items: flex-start;
  padding: 0.65rem 2rem 0.7rem;
}
.mega-split-budget {
  flex: 0 0 340px;
  border-right: 1px solid var(--border);
  padding-right: 2rem;
  margin-right: 2rem;
}
.mega-split-budget .mega-budget-grid {
  width: 100%;
}
.mega-split-colour {
  flex: 1;
}
.mega-split-colour .mega-right-head {
  margin-bottom: 0.45rem;
}
.mega-split-colour-body {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mega-split-colour-body .mega-colour-grid {
  flex: 0 0 auto;
  margin-bottom: 0;
}

/* ── Editorial footer banner ─────────────────────────────────────────────── */
.mega-footer-banner {
  background: #753c2b;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-footer-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 2rem;
}

.mega-footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.28;
}

.mega-footer-sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 52ch;
  line-height: 1.55;
}

/* ── Journal mega menu (redesign) ───────────────────────────────────────── */

/* Top two-column layout: journal intro (left) + featured editorial (right) */
.mjn-top {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
}

/* ── Journal intro (left panel) ────────────────────────────────────────── */
.mjn-intro {
  padding: 1.75rem clamp(1.25rem, 2.5vw, 2rem);
  background: #faf7f4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mjn-kicker {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 0.3rem;
}

.mjn-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin: 0.2rem 0 0;
}

.mjn-intro-ornament {
  color: var(--accent-soft);
  font-size: 0.9rem;
  margin: 0.6rem 0;
}

.mjn-intro-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 30ch;
  margin: 0;
}

/* ── Featured editorial (right panel) ──────────────────────────────────── */
.mjn-hero {
  position: relative;
  overflow: hidden;
}

.mjn-hero-overlay .mjn-kicker {
  color: var(--footer-gold);
}

.mjn-hero-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.18;
  max-width: 20ch;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.mjn-hero-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  margin: 0.5rem 0 0;
  line-height: 1.6;
  max-width: 34ch;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.mjn-readtime {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  margin: 0.6rem 0 0.85rem;
}

.mjn-readtime svg {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

.mjn-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  width: fit-content;
  transition: background 140ms ease, border-color 140ms ease;
}

.mjn-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.mjn-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.mjn-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mjn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.1) 75%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.75rem;
}

.mjn-hero-overlay .mega-col-rule {
  background: rgba(255,255,255,0.35);
  opacity: 1;
  margin-bottom: 0.55rem;
}

/* ── Category tiles (image cards row) ────────────────────────────────────── */
.mjn-cat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  padding: 1.25rem clamp(1.25rem, 2.5vw, 2rem) 0;
}

.mjn-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  text-decoration: none;
  aspect-ratio: 3 / 2.3;
  overflow: hidden;
  border-radius: 4px;
  padding: 1rem 0.85rem;
}

.mjn-cat-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mjn-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.mjn-cat-card:hover .mjn-cat-media img {
  transform: scale(1.06);
}

.mjn-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 2, 0.82) 0%, rgba(10, 5, 2, 0.4) 55%, rgba(10, 5, 2, 0.12) 100%);
  z-index: 1;
}

.mjn-cat-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.35rem;
}

.mjn-cat-desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0 0 0.55rem;
  max-width: 20ch;
}

.mjn-cat-link {
  position: relative;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: color 140ms ease;
}

.mjn-cat-card:hover .mjn-cat-link {
  color: var(--footer-gold);
}

/* ── Explore all stories (closing CTA) ───────────────────────────────────── */
.mjn-explore-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.1rem clamp(1.25rem, 2.5vw, 2rem) 1.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.mjn-explore-all svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  color: var(--accent-soft);
}

.mjn-explore-all:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.mjn-explore-all:hover svg {
  color: rgba(255,255,255,0.8);
}

/* ── GIFTING MEGA MENU ──────────────────────────────────────────────────────── */

.mega-inner--gifting {
  display: block;
  width: min(1100px, calc(100vw - 4rem));
}

.mgft-main {
  display: grid;
  grid-template-columns: 210px 1fr 240px 240px;
  min-height: 300px;
  border-bottom: 1px solid var(--border);
}

/* Left brand + features */
.mgft-left {
  padding: 1.25rem 1.25rem 1.25rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mgft-kicker {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
}

.mgft-heading {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  margin: 0;
}

.mgft-sub {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.mgft-features {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mgft-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  color: var(--text);
  line-height: 1.35;
}

.mgft-feature-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 0.1rem;
}

/* Center image */
.mgft-img-wrap {
  overflow: hidden;
}

.mgft-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Occasion / Relation columns */
.mgft-col {
  padding: 1.5rem 1.25rem;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.mgft-col-head {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.mgft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mgft-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: color 150ms ease;
}

.mgft-list-item:hover {
  color: var(--accent);
}

.mgft-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-soft);
  transition: color 150ms ease;
}

.mgft-item-icon svg {
  width: 1rem;
  height: 1rem;
}

.mgft-list-item:hover .mgft-item-icon {
  color: var(--accent);
}

.mgft-item-icon--circle {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #faf7f4;
}

.mgft-item-text {
  flex: 1;
}

.mgft-item-title {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  display: block;
  line-height: 1.15;
}

.mgft-item-sub {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  color: var(--muted);
  display: block;
  line-height: 1.25;
}

.mgft-chevron {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  stroke: var(--muted);
  opacity: 0.55;
}

.mgft-view-all {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.mgft-view-all:hover {
  color: var(--text);
}

/* ── Bottom service bar ──────────────────────────────────────────────────── */
.mgft-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
  background: #753c2b;
}

.mgft-footer-kicker {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.mgft-services {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
}

.mgft-service {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mgft-service-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.75);
}

.mgft-service-title {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.mgft-service-sub {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.mgft-whatsapp {
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 210px;
  text-decoration: none;
}

.mgft-wa-icons {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.1rem;
}

.mgft-wa-icons svg {
  width: 1rem;
  height: 1rem;
  stroke: rgba(255,255,255,0.6);
}

.mgft-wa-heading {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.mgft-wa-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
}

.mgft-wa-link:hover {
  color: #fff;
}

/* ── ABOUT US MEGA MENU ─────────────────────────────────────────────────────── */

.mega-inner--about {
  display: block;
  width: min(988px, calc(100vw - 4rem));
}

/* Two-column layout inside the about panel */
.mau-grid {
  display: grid;
  grid-template-columns: clamp(18rem, 32.5vw, 30rem) 1fr;
}

/* Quote strip — block child of .mega-inner--about, full-width naturally */
.mau-quote-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 2rem;
  background: #753c2b;
}

.mau-quote-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.55);
  line-height: 1;
  flex-shrink: 0;
}

.mau-quote-mark--open { align-self: flex-start; margin-top: -0.2rem; }
.mau-quote-mark--close { align-self: flex-end; margin-bottom: -0.2rem; }

.mau-quote-body {
  text-align: center;
}

.mau-quote-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}

.mau-quote-ornament {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* Left: image hero */
.mau-hero {
  position: relative;
  overflow: hidden;
}

.mau-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mau-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,4,2,0.9) 0%, rgba(12,4,2,0.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
}

.mau-hero-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.3rem;
  white-space: nowrap;
}

.mau-hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: normal;
  color: var(--footer-gold);
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
}

.mau-hero-rule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.55rem 0;
}

.mau-hero-rule-line {
  flex: 0 0 1.8rem;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.mau-hero-rule-gem {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.45);
}

.mau-hero-body {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.mau-hero-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 200ms ease;
}

.mau-hero-cta:hover {
  background: #4f1716;
}

/* Right panel */
.mau-right {
  display: flex;
  flex-direction: column;
  background: #faf7f4;
}

.mau-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mau-col {
  padding: 0.65rem 1.1rem;
  display: flex;
  flex-direction: column;
}

.mau-col--right {
  border-left: 1px solid var(--border);
}

.mau-col-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.mau-col-icon-wrap {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.mau-col-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.mau-col-title {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0.1rem 0 0;
}

.mau-col-accent-line {
  display: none;
}

.mau-col-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 0.45rem;
}

.mau-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mau-list-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.28rem 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.35;
}

.mau-item-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: var(--accent-soft);
}

.mau-cta-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.mau-cta-link:hover {
  color: var(--text);
}

/* Talk to Us bar — 2-row vertical stack, centered */
.mau-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
}

.mau-contact-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mau-contact-head-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.mau-contact-head-icon svg {
  width: 1rem;
  height: 1rem;
}

.mau-contact-title {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
}

.mau-contact-sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0.05rem 0 0;
}

.mau-contact-actions {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.mau-contact-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.3rem 1rem;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text);
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease;
}

.mau-contact-action:not(:first-child) {
  border-left: none;
}

.mau-contact-action:hover {
  background: #faf7f4;
  color: var(--accent);
}

.mau-action-icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--accent-soft);
}

.mau-contact-action:hover .mau-action-icon {
  stroke: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ICON BUTTONS (shared between mobile-topbar and desktop header)
───────────────────────────────────────────────────────────────────────────── */

.icon-button {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #000;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.icon-button:hover {
  opacity: 0.6;
}

.icon-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.mobile-topbar .icon-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-topbar .mobile-menu-button {
  margin-left: -0.5rem;
}

.mobile-topbar .mobile-menu-button svg {
  width: 2.25rem;
  height: 2.25rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE TOPBAR
   Shown only on mobile (hidden ≥769px). Lives inside .hero-stage so its height
   is naturally accounted for in the 100dvh flex calculation.
   Simple justify-content: space-between — no flex-basis math required.
───────────────────────────────────────────────────────────────────────────── */

.mobile-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.98rem 1.6rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}

.mobile-topbar .mobile-logo-img {
  height: 2.53rem;
  width: auto;
  max-width: clamp(120px, 42vw, 200px);
  object-fit: contain;
  max-width: 140px;
}

@media (min-width: 769px) {
  .mobile-topbar {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE DRAWER  (all rules scoped to mobile — drawer is display:none on desktop)
───────────────────────────────────────────────────────────────────────────── */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 7, 0.62);
}

/* ── Main panel (flex column so footer sticks to bottom) ── */
.drawer-panel {
  width: min(84vw, 320px);
  max-width: 320px;
  height: 100%;
  background: #fff;
  padding: 0;
  box-shadow: 18px 0 60px rgba(0,0,0,0.18);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header row: × left · logo centre */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem 0.8rem;
  flex-shrink: 0;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text);
  padding: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.drawer-close svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2;
}

.drawer-header .drawer-logo {
  height: 2.2rem;
  width: auto;
  max-width: 180px;
}

.drawer-header-spacer {
  width: 1.6rem;
}

/* Main nav */
.drawer-nav {
  flex-shrink: 0;
  padding: 0.2rem 1.4rem 0;
}

.drawer-nav-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.drawer-nav-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 1.1rem;
}

.drawer-nav-icon svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 1.6;
}

.drawer-nav-label {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  text-transform: uppercase;
  user-select: none;
}

.drawer-nav-arrow {
  color: var(--muted);
  font-size: 1.2rem;
  flex-shrink: 0;
  user-select: none;
  line-height: 1;
}

/* Utility links */
.drawer-utility {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem 0;
}

.drawer-utility a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.drawer-utility a:last-child {
  border-bottom: none;
}

.drawer-utility svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 1.6;
}

/* Footer strip — pushed to bottom via margin-top:auto */
.drawer-footer-strip {
  margin-top: auto;
  background: #753c2b;
  padding: 1.6rem 1.5rem 1.8rem;
  text-align: center;
  flex-shrink: 0;
}

.drawer-footer-strip p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.drawer-footer-ornament {
  display: block;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

/* ── Sub-panels base ────────────────────────────────────── */
.drawer-sub-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 240ms ease;
  overflow: hidden;          /* body scrolls, not the panel */
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.drawer-sub-panel.open {
  transform: translateX(0);
}

/* Sub-panel header — always visible at top */
.dsp-header {
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.dsp-back,
.dsp-cart {
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

.dsp-back svg,
.dsp-cart svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2;
}

.dsp-title {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text);
  text-transform: uppercase;
}

/* Hero image block */
.dsp-hero {
  position: relative;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}

.dsp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dsp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,8,6,0.80) 0%, rgba(18,8,6,0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.3rem;
}

.dsp-hero-heading {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 0.3rem;
}

.dsp-hero-sub {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  margin: 0 0 0.75rem;
}

.dsp-hero-cta {
  display: inline-block;
  background: #fff;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1rem;
  align-self: flex-start;
}

/* Scrollable body — only this area scrolls */
.dsp-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Section label */
.dsp-section-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-soft);
  text-transform: uppercase;
  padding: 0.9rem 1.3rem 0.35rem;
  margin: 0;
}

/* Icon + title + sub + arrow rows */
.dsp-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.3rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.dsp-row-icon {
  width: 1.7rem;
  height: 1.7rem;
  background: rgba(109,43,33,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.dsp-row-icon svg {
  width: 0.72rem;
  height: 0.72rem;
  stroke-width: 1.8;
}

.dsp-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.dsp-row-title {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.dsp-row-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--muted);
}

.dsp-row-arrow {
  color: var(--muted);
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
  transition: transform 220ms ease;
}

/* Expandable accordion row */
.dsp-row--expandable {
  cursor: pointer;
  user-select: none;
}

.dsp-row--expandable[aria-expanded="true"] .dsp-row-arrow {
  transform: rotate(90deg);
}

/* Accordion body — collapsed by default */
.dsp-acc-body {
  display: none;
  background: #faf7f4;
  border-bottom: 1px solid var(--border);
}

.dsp-acc-body.open {
  display: block;
}

/* Individual accordion items */
.dsp-acc-item {
  display: block;
  padding: 0.6rem 1.3rem 0.6rem 3.8rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.dsp-acc-item:last-of-type {
  border-bottom: none;
}

.dsp-acc-item:active {
  background: rgba(109, 43, 33, 0.06);
}

/* Collection items with title + subtitle */
.dsp-acc-item--with-sub {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.dsp-acc-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.dsp-acc-item-sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* "View all X →" link at bottom of accordion body */
.dsp-acc-viewall {
  display: block;
  padding: 0.55rem 1.3rem 0.6rem 3.8rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.dsp-acc-viewall:active {
  opacity: 0.7;
}

/* Flat indent — accordion bodies where there's no row icon to align under */
.dsp-acc-body--flat .dsp-acc-item,
.dsp-acc-body--flat .dsp-acc-viewall {
  padding-left: 1.5rem;
}

.dsp-acc-viewall--flat {
  padding-left: 1.5rem;
}

/* Section-header accordion toggle (used in GIFTING) */
.dsp-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.3rem;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid var(--border);
}

.dsp-section-toggle-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.dsp-section-toggle[aria-expanded="true"] .dsp-row-arrow {
  transform: rotate(90deg);
}

/* About-block accordion toggle (used in ABOUT sub-panel) */
.dsp-about-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.3rem;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid var(--border);
}

.dsp-about-toggle .dsp-about-icon {
  margin: 0;
}

.dsp-about-toggle .dsp-about-title {
  flex: 1;
  margin: 0;
}

.dsp-about-toggle[aria-expanded="true"] .dsp-row-arrow {
  transform: rotate(90deg);
}

/* About accordion body content */
.dsp-about-body-desc {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  padding: 0.7rem 1.3rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.dsp-about-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dsp-about-points li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.5rem 1.3rem 0.5rem 2.4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.dsp-about-points li::before {
  content: "◆";
  color: var(--accent-soft);
  font-size: 0.38rem;
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Budget tiles — 4 column single row */
.dsp-budget-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  padding: 0.4rem 1.3rem 0.9rem;
}

.dsp-budget-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0.15rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  line-height: 1.35;
}

/* Colour swatches */
.dsp-colour-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.4rem 1.3rem 1rem;
}

.dsp-colour-swatch {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Gifting service bar */
.dsp-service-bar {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.dsp-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  text-align: center;
}

.dsp-service-item svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
  stroke-width: 1.5;
}

.dsp-service-item span {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  max-width: 4.5rem;
}

/* WhatsApp CTA */
.dsp-whatsapp-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #753c2b;
  padding: 1rem 1.3rem;
  text-decoration: none;
  flex-shrink: 0;
}

.dsp-whatsapp-bar svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 1.5;
  color: #fff;
  flex-shrink: 0;
}

.dsp-whatsapp-bar span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.dsp-whatsapp-bar strong {
  font-weight: 700;
  color: #fff;
}

/* Journal featured article */
.dsp-featured {
  position: relative;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}

.dsp-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dsp-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,8,6,0.88) 0%, rgba(18,8,6,0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.3rem;
}

.dsp-featured-kicker {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.dsp-featured-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.35rem;
}

.dsp-featured-sub {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.dsp-featured-read {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.dsp-featured-read svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2;
}

/* Explore All Stories button */
.dsp-explore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.9rem 1.3rem 0.4rem;
  padding: 0.7rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--text);
}

.dsp-explore-btn svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2;
}

/* About info blocks */
.dsp-about-block {
  display: flex;
  gap: 0.85rem;
  padding: 0.9rem 1.3rem;
  border-bottom: 1px solid var(--border);
}

.dsp-about-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(109,43,33,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.dsp-about-icon svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 1.7;
}

.dsp-about-title {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.dsp-about-text {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Contact icons row */
.dsp-contact-row {
  display: flex;
  justify-content: space-around;
  padding: 1.1rem 0.5rem;
}

.dsp-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--text);
}

.dsp-contact-item svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke-width: 1.5;
  color: var(--accent);
}

.dsp-contact-item span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  max-width: 4rem;
  line-height: 1.3;
}

/* Sub-panel footer strip — always visible at bottom */
.dsp-footer {
  background: #753c2b;
  padding: 1.5rem 1.5rem 1.8rem;
  text-align: center;
  flex-shrink: 0;
}

.dsp-footer p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  line-height: 1.55;
  margin: 0;
}

.dsp-footer .dsp-footer-sub {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

.dsp-footer-ornament {
  display: block;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO STAGE
   Direct body child — no padded ancestor, naturally full viewport width.
   No width:100vw or margin-left calc needed anywhere inside it.

   Mobile:  flex-column, min 100dvh tall.
            mobile-topbar is flex-shrink:0 (sticky at top).
            hero-banner is flex:1 1 auto (fills all remaining height).
   Desktop: block, auto height — hero-banner uses aspect-ratio instead.
───────────────────────────────────────────────────────────────────────────── */

.hero-stage {
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────────────────────────────────────────── */

.hero-banner {
  position: relative;
  min-block-size: calc(100dvh - 4rem - var(--mobile-nav-height));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  background: radial-gradient(circle at top left, rgba(50,18,15,0.88) 0%, rgba(23,9,7,0.95) 40%, rgba(17,7,6,0.98) 100%);
  padding-block-start: max(1.5rem, env(safe-area-inset-top));
  padding-block-end: max(1.5rem, env(safe-area-inset-bottom));
  padding-inline: max(1.5rem, env(safe-area-inset-left)) max(1.5rem, env(safe-area-inset-right));
  gap: 1rem;
}

.hero-banner-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-background picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42));
  z-index: 1;
}

/* ── Hero Slider ─────────────────────────────────────────────────────────── */
.hero-slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #120806;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 1.52s 0.68s ease-in;
}

.hero-slide.active .hero-banner-photo {
  animation-name: hero-zoom;
  animation-duration: 11.7s;
  animation-delay: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  will-change: transform;
}

.hero-slide.leaving .hero-banner-photo {
  animation-name: hero-zoom;
  animation-duration: 11.7s;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  will-change: transform;
}

.hero-slide.leaving {
  opacity: 0;
  z-index: 3;
  transition: opacity 0.85s ease-out;
}


.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  gap: 0.5rem;
}

.hero-label {
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  margin: 0;
}

.hero-copy {
  position: relative;
  width: 100%;
  color: #fff;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  margin-block-start: clamp(0.6rem, 2vh, 1rem);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.74);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  line-height: 1.5;
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.2rem);
  margin-block-start: clamp(1rem, 3vh, 1.6rem);
}

@media (min-width: 769px) {
  .hero-banner {
    flex: none;
    min-block-size: calc(100vh - var(--header-height));
    aspect-ratio: auto;
    padding-block-start: 0;
    padding-block-end: clamp(2.5rem, 5vh, 4rem);
    padding-inline-start: clamp(1.25rem, 4vw, 4rem);
    padding-inline-end: clamp(2rem, 8vw, 8rem);
  }

  /* hero slider dots — move above bottom nav offset not needed on desktop */
  .hero-slider-dots {
    bottom: 2rem;
  }

  /* hero-banner-background: responsive image handled via <picture> in HTML */

  .hero-banner-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.38));
  }

  .hero-container {
    max-inline-size: clamp(680px, 47vw, 950px);
  }

  .hero-label {
    display: none;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  .hero-copy h1 {
    font-size: clamp(4.22rem, 5.02vw, 6.18rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    margin-block-start: 1.4rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.78);
    font-size: 0.8rem;
  }

  .hero-actions {
    margin-block-start: 1.8rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-inline-size: 44px;
  min-block-size: 44px;
  padding-block: clamp(0.7rem, 2vh, 1rem);
  padding-inline: clamp(1.4rem, 4vw, 2rem);
  border-radius: clamp(0.2rem, 1vw, 0.35rem);
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.button:active {
  transform: scale(0.98);
}

.button:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 clamp(8px, 2vh, 14px) clamp(16px, 4vh, 28px) rgba(0, 0, 0, 0.25);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
}

@media (min-width: 769px) {
  .button {
    min-inline-size: 166px;
    padding-block: 0.92rem;
    padding-inline: 2rem;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
  }

  .button-primary {
    background: #581b1a;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .button-primary:hover {
    transform: translateY(-1px);
    background: #6d1f1e;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TRUST STRIP (hero-features)
   Direct body child — naturally full viewport width. No escape-hatch needed.
───────────────────────────────────────────────────────────────────────────── */

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(0.6rem, 1.5vw, 1rem);
  padding-block: clamp(0.75rem, 1.8vh, 1.1rem);
  padding-inline: clamp(1rem, 3vw, 8rem);
  background: var(--trust-strip-fill);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 0.75rem);
}

.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: rgba(45, 31, 22, 0.07);
  color: var(--accent-soft);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.hero-feature p {
  margin: 0.2rem 0 0;
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE SHELL — wraps main content sections + footer with horizontal gutters
───────────────────────────────────────────────────────────────────────────── */

.page-shell {
  padding: 0 var(--page-gutter) 1.5rem;
  background: #ffffff;
}

main {
  background: #ffffff;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────────────────────────────────────────── */

.section {
  padding-block: var(--section-padding);
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--section-heading-mb);
}

.section-kicker {
  font-family: var(--kicker-font);
  font-size: var(--kicker-size);
  font-weight: var(--kicker-weight);
  letter-spacing: var(--kicker-spacing);
  text-transform: uppercase;
  color: var(--kicker-color);
  margin: 0 0 0.75rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  line-height: 1.05;
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CENTERED SECTION HEADING  — used for sections with a centered "— TITLE —" style
───────────────────────────────────────────────────────────────────────────── */

.section-heading-center {
  text-align: center;
  margin: 0 auto 0.375rem;
}

.section-heading-center h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  line-height: 1.2;
  color: var(--accent);
}

.section-heading-center h2::before,
.section-heading-center h2::after {
  content: '';
  display: block;
  flex: 0 0 2rem;
  height: 1px;
  background: var(--accent-soft);
}

.heading-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--accent-soft);
  font-size: 0.72rem;
  line-height: 1;
  margin: 0 0 0.55rem;
}

.heading-ornament::before,
.heading-ornament::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent-soft);
}

.section-heading-center > p {
  font-family: var(--font-ui);
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 auto;
  line-height: 1.65;
  letter-spacing: 0.01em;
  max-width: 48ch;
}

.section-heading-center .wv-u2 {
  display: block;
  margin-bottom: 0.6rem;
}

/* ── Plain heading modifier — no flanking ornament lines, h3-scale size ── */
.section-heading-center--plain h2 {
  font-size: 0.95rem;
  gap: 0;
}

.section-heading-center--plain h2::before,
.section-heading-center--plain h2::after {
  content: none;
  display: none;
}

@media (min-width: 769px) {
  .section-heading-center--plain h2 {
    font-size: clamp(1rem, 1.3vw, 1.4rem);
  }
}

/* ── "Worth Remembering" heading — bumped up to the site's standard section-heading scale ── */
.gifting-occasions-wrap .section-heading-center--plain h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

/* ── Shared carousel dot patterns — canonical rules ───────────────────── */

/* All dot containers: visible on mobile, centred row below carousel */
.fav-dots, .design-dots, .loom-dots, .sig-dots,
.moment-dots, .lifestyle-dots, .jnl-collection-dots, .jnl-continue-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

/* All individual dots */
.fav-dot, .design-dot, .loom-dot, .moment-dot,
.sig-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, width 200ms ease, border-radius 200ms ease;
}

/* Active dot */
.fav-dot.active, .design-dot.active, .loom-dot.active, .moment-dot.active,
.sig-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* Desktop: arrows take over — hide all dots */
@media (min-width: 769px) {
  .fav-dots, .design-dots, .loom-dots, .sig-dots,
  .moment-dots, .lifestyle-dots, .jnl-collection-dots, .jnl-continue-dots {
    display: none;
  }
}

/* ── Shared Portrait Card Image Pattern (Pattern A — 3/4 ratio) ──────── */
/* Covers product cards across all pages: new arrivals, PLP, wishlist,
   cart recommendations, search results. Individual rules keep transitions. */
.fav-image,
.plp-card-img,
.cart-rec-img,
.wv-srch-result-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Shared Tall Portrait Card Image Pattern (Pattern A2 — 4/5 ratio) */
.sig-img,
.explore-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Carousel stage — wrapper enabling overlay arrows ─────────────────── */
.carousel-stage {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  color: var(--text);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.carousel-arrow-prev { left: 0.3rem; }
.carousel-arrow-next { right: 0.3rem; }

.carousel-arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.carousel-arrow svg {
  width: 1rem;
  height: 1rem;
}

.moments {
  background: #fff;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOMENT ROW — horizontal scroll carousel, portrait cards
───────────────────────────────────────────────────────────────────────────── */

.moment-row {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.moment-row::-webkit-scrollbar {
  display: none;
}

.moment-card {
  position: relative;
  flex: 0 0 68vw;
  aspect-ratio: 2.79 / 4.2;
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  background: #1a0c08;
  display: block;
  text-decoration: none;
  color: inherit;
}

.moment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.08) 42%,
    rgba(0,0,0,0.08) 58%,
    rgba(0,0,0,0.68) 100%
  );
  z-index: 1;
}

.moment-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 500ms ease;
}

.moment-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moment-card:hover .moment-image {
  transform: scale(1.04);
}

.moment-card-content {
  position: absolute;
  inset: 0;
  padding: 2.2rem 1.1rem 1rem;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.moment-card-top {
  display: flex;
  flex-direction: column;
}

.moment-card-content h3 {
  margin: 0;
  font-size: clamp(1.08rem, 4.5vw, 1.62rem);
  line-height: 1.1;
}

.moment-divider {
  width: 1.75rem;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 0.5rem 0;
}

.moment-card-content p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.4;
  max-width: 50%;
}

.moment-cta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* Stage wrapper — positions overlay arrows */
.moment-stage {
  position: relative;
}

/* Arrows — hidden on mobile */
.moment-arrow-prev,
.moment-arrow-next {
  display: none;
}

@media (min-width: 769px) {
  .carousel-arrow {
    display: flex;
  }

  .carousel-stage {
    padding: 0 3.2rem;
  }

  .section-heading-center h2 {
    letter-spacing: 0.03em;
    gap: 2rem;
  }

  .section-heading-center h2::before,
  .section-heading-center h2::after {
    flex: 0 0 4.5rem;
  }

  .moment-row {
    gap: 3px;
  }

  .moment-card {
    flex: 0 0 clamp(194px, 20.97vw, 258px);
    aspect-ratio: 1.86 / 1.575;
    border-radius: 0;
  }

  /* moment-image: responsive image handled via <picture> in HTML */

  .moment-card-content {
    padding: 2.5rem 1.5rem 1.25rem;
  }

  .moment-card-content h3 {
    font-size: clamp(1.17rem, 1.44vw, 1.71rem);
  }

  .moment-card-content p {
    font-size: 0.76rem;
  }

  .moment-cta {
    font-size: 0.72rem;
  }

  /* Overlay arrows — same pattern as .carousel-arrow on New Arrivals */
  .moment-arrow-prev,
  .moment-arrow-next {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(45,31,22,0.18);
    background: rgba(255,255,255,0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
  }

  .moment-arrow-prev { left: 0.3rem; }
  .moment-arrow-next { right: 0.3rem; }

  .moment-arrow-prev:hover,
  .moment-arrow-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .moment-arrow-prev svg,
  .moment-arrow-next svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .moment-stage {
    padding: 0 3.2rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   WEAVIRA FAVORITES — horizontal scroll carousel
───────────────────────────────────────────────────────────────────────────── */

/* Collapse top padding — previous section bottom-padding is enough separation */

/* Heading area: h2 centered, nav row below it */
.fav-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.fav-heading h2 {
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.4rem;
}

.fav-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.fav-subhead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Arrow nav — inline in nav row */
.fav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.fav-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.fav-arrow svg {
  width: 1rem;
  height: 1rem;
}

/* Scrollable track */
.fav-track {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.fav-track::-webkit-scrollbar {
  display: none;
}

/* Individual card */
.fav-card {
  flex: 0 0 44vw;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.fav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Image container */
.fav-image-wrap {
  position: relative;
  overflow: hidden;
}

.fav-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}

.fav-card:hover .fav-image {
  transform: scale(1.04);
}

/* Wishlist button */
.fav-wish {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 180ms ease;
}

.fav-wish:hover {
  background: rgba(0, 0, 0, 0.6);
}

.fav-wish svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

/* Card text area */
.fav-copy {
  padding: 0.6rem 0.75rem 0.7rem;
}

.fav-copy h3 {
  font-family: var(--font-card-title);
  font-size: var(--font-card-title-size);
  font-weight: 400;
  line-height: 1.2;
}

/* Material tag — overlay on bottom-left of image */
.fav-material {
  position: absolute;
  bottom: 0.45rem;
  left: 0.45rem;
  z-index: 1;
  font-family: var(--font-card);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 248, 238, 0.92);
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  border: none;
  backdrop-filter: blur(2px);
}

.fav-desc {
  font-family: var(--font-card);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0.2rem 0 0;
}

.fav-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.3rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fav-price {
  font-family: var(--font-card);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.fav-add {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--footer-gold);
  color: #fff;
  border: 1px solid var(--footer-gold);
  border-radius: 0;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-card);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
  line-height: 1.4;
}

.fav-add:hover {
  background: #b8934f;
  border-color: #b8934f;
}

a.fav-add--link { text-decoration: none; display: inline-block; text-align: center; }

/* .fav-dots — layout and visibility handled by shared carousel dot rule */

.fav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, width 200ms ease, border-radius 200ms ease;
}

.fav-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* VIEW ALL SAREES button */
.fav-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.fav-view-all {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2.8rem;
  border: 1px solid var(--accent);
  border-radius: 0.25rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  transition: background 200ms ease;
}

.fav-view-all:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ── New Arrivals section — scoped overrides (all breakpoints) ───────────── */

.section.fresh-loom:not(.sig-weaves) .fav-desc {
  font-style: normal;
  color: var(--footer-gold);
}

.section.fresh-loom:not(.sig-weaves) .loom-img {
  aspect-ratio: 1 / 1.3485;
}

.section.fresh-loom:not(.sig-weaves) .fav-subtitle {
  display: block;
  font-family: var(--font-card);
  font-size: 0.72rem;
  font-style: normal;
  color: #9e7a40;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Dots — match Language of Weaves style (standard rgba(0,0,0,0.18) from design-dot) */

/* "Explore All New Arrivals" — plain text link, no button */
.section.fresh-loom:not(.sig-weaves) .fav-cta-wrap {
  margin-top: 0.35rem;
}

.section.fresh-loom:not(.sig-weaves) .fav-view-all {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  text-transform: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 0;
}

.section.fresh-loom:not(.sig-weaves) .fav-view-all:hover {
  background: transparent;
  border-color: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

/* "Explore All Sarees" — Top Picks plain text link */
.sig-weaves .fav-cta-wrap {
  margin-top: 0.35rem;
}

.sig-weaves .fav-view-all {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  text-transform: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 0;
}

.sig-weaves .fav-view-all:hover {
  background: transparent;
  border-color: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

/* "View All Sarees" — Best Sellers plain text link */
.favorites .fav-cta-wrap {
  margin-top: 0.35rem;
}

.favorites .fav-view-all {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  text-transform: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 0;
}

.favorites .fav-view-all:hover {
  background: transparent;
  border-color: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

/* "Shop All Moments" — same plain text link design as Explore All New Arrivals */
.section.moments .fav-cta-wrap {
  margin-top: 0.35rem;
}

.section.moments .fav-view-all {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  text-transform: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 0;
}

.section.moments .fav-view-all:hover {
  background: transparent;
  border-color: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Collections — heading shifted to the left of the card row on desktop */
@media (min-width: 769px) {
  .section.moments {
    display: grid;
    grid-template-columns: minmax(260px, 21%) 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 2.5rem;
    align-items: start;
    padding-bottom: 0.35rem;
  }

  .section.moments::before {
    content: '';
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: stretch;
    background: var(--trust-strip-fill);
  }

  .section.moments .section-heading-center {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    margin: 0;
    background: var(--trust-strip-fill);
    padding: 1.5rem 1.5rem 1rem;
  }

  .section.moments .section-heading-center h2 {
    justify-content: flex-start;
  }

  .section.moments .section-heading-center h2::before,
  .section.moments .section-heading-center h2::after {
    display: none;
  }

  .section.moments .section-heading-center > p {
    margin: 0.5rem 0 0;
    max-width: none;
  }

  .section.moments .moment-stage {
    grid-column: 2;
    grid-row: 1 / -1;
    min-width: 0;
  }

  .section.moments .fav-cta-wrap {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    margin-top: 0;
    background: var(--trust-strip-fill);
    padding: 0 1.5rem 1.5rem;
  }
}

.section.fresh-loom:not(.sig-weaves) .fav-action {
  border-top: none;
  padding-top: 0.4rem;
  margin-top: 0.4rem;
}

.heading-ornament--btm {
  margin: 0.4rem 0 0;
}

.loom-view-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #5c3d1e;
  text-decoration: none;
  transition: color 180ms ease;
}

.loom-view-link:hover {
  color: var(--accent);
}

/* 6th placeholder gradient (used only in favorites) */
.product-j { background: linear-gradient(180deg, #b27a5d 0%, #3e1610 100%); }

@media (min-width: 769px) {

  .fav-heading h2 {
    letter-spacing: 0.03em;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }

  .fav-track {
    gap: 3px;
  }

  .loom-track {
    gap: 0.5rem;
  }

  .fav-card {
    flex: 0 0 clamp(230px, 21vw, 285px);
  }

  .loom-card {
    flex: 0 0 clamp(228px, 20.8vw, 282px);
  }

  .fav-copy h3 {
    font-size: var(--font-card-title-size);
  }

  /* loom-track is flex on desktop — same card sizing as fav-track via .fav-card */
  .loom-track {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .loom-track::-webkit-scrollbar {
    display: none;
  }
}

/* ── New Arrivals — desktop: horizontal scroll carousel (like Shop by Moment) */
@media (min-width: 769px) {
  .section.fresh-loom:not(.sig-weaves) .loom-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 3px;
  }

  .section.fresh-loom:not(.sig-weaves) .loom-track::-webkit-scrollbar {
    display: none;
  }

  /* Card: square image + 20% smaller than previous carousel size */
  .section.fresh-loom:not(.sig-weaves) .loom-card {
    flex: 0 0 clamp(194px, 19.4vw, 262px);
    scroll-snap-align: start;
    border: none;
    box-shadow: none;
    background: #F5F3F0;
  }

  .section.fresh-loom:not(.sig-weaves) .loom-img {
    aspect-ratio: 3.45 / 3.162;
  }

  .section.fresh-loom:not(.sig-weaves) .loom-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
  }

  .section.fresh-loom:not(.sig-weaves) .fav-action {
    padding-top: 0.1rem;
    margin-top: 0.1rem;
  }

  .section.fresh-loom:not(.sig-weaves) .loom-view-link {
    font-size: 0.79rem;
  }

  .section.fresh-loom:not(.sig-weaves) .fav-copy {
    padding: 0.65rem 0.75rem;
  }

  /* New Arrivals — heading shifted to the left of the card row, matching Collections */
  .section.fresh-loom:not(.sig-weaves) {
    display: grid;
    grid-template-columns: minmax(260px, 21%) 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 2.5rem;
    align-items: start;
    padding-top: 0.35rem;
  }

  .section.fresh-loom:not(.sig-weaves)::before {
    content: '';
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: stretch;
    background: var(--trust-strip-fill);
  }

  .section.fresh-loom:not(.sig-weaves) .section-heading-center {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    margin: 0;
    background: var(--trust-strip-fill);
    padding: 1.5rem 1.5rem 1rem;
  }

  .section.fresh-loom:not(.sig-weaves) .section-heading-center h2 {
    justify-content: flex-start;
  }

  .section.fresh-loom:not(.sig-weaves) .section-heading-center h2::before,
  .section.fresh-loom:not(.sig-weaves) .section-heading-center h2::after {
    display: none;
  }

  .section.fresh-loom:not(.sig-weaves) .section-heading-center > p {
    margin: 0.5rem 0 0;
    max-width: none;
  }

  .section.fresh-loom:not(.sig-weaves) .carousel-stage {
    grid-column: 2;
    grid-row: 1 / -1;
    min-width: 0;
  }

  .section.fresh-loom:not(.sig-weaves) .fav-cta-wrap {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    margin-top: 0;
    background: var(--trust-strip-fill);
    padding: 0 1.5rem 1.5rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT CARDS
───────────────────────────────────────────────────────────────────────────── */

.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1rem;
}

.product-card {
  border-radius: 1.8rem;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-image {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.product-a { background: linear-gradient(180deg, #71332d 0%, #2c120f 100%); }
.product-b { background: linear-gradient(180deg, #8d4f39 0%, #2f120e 100%); }
.product-c { background: linear-gradient(180deg, #9f624a 0%, #3c140f 100%); }
.product-d { background: linear-gradient(180deg, #69362f 0%, #270e0b 100%); }
.product-e { background: linear-gradient(180deg, #8d4739 0%, #31110f 100%); }
.product-f { background: linear-gradient(180deg, #915243 0%, #31120e 100%); }
.product-g { background: linear-gradient(180deg, #6f382f 0%, #24110d 100%); }
.product-h { background: linear-gradient(180deg, #7b4a3b 0%, #2c110d 100%); }
.product-i { background: linear-gradient(180deg, #975a46 0%, #31110f 100%); }

.product-copy {
  padding: 1.4rem 1.4rem 1.5rem;
}

.product-copy h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.product-copy span {
  color: var(--accent);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────────────────
   DISCOVER DESIGNS
───────────────────────────────────────────────────────────────────────────── */

.design-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 3px;
  padding-bottom: 0.5rem;
}

.design-track::-webkit-scrollbar {
  display: none;
}

/* .design-dots — layout and visibility handled by shared carousel dot rule */

.design-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, width 200ms ease, border-radius 200ms ease;
}

.design-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

.loom-dot,
.moment-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, width 200ms ease, border-radius 200ms ease;
}

.loom-dot.active,
.moment-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

.design-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 clamp(280px, 26vw, 350px);
  min-height: clamp(150px, 15.4vw, 198px);
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 769px) {
  .designs .design-card {
    flex: 0 0 clamp(392px, 36.4vw, 490px);
    min-height: clamp(210px, 21.6vw, 277px);
  }

  .designs .design-track {
    gap: 1.25rem;
  }
}

.design-info {
  position: static;
  max-width: 100%;
  flex: 1;
  min-width: 0;
  padding: 1.6rem 1.1rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.design-info h3 {
  font-size: clamp(1.17rem, 1.44vw, 1.71rem);
  margin: 0;
  line-height: 1.25;
  color: var(--accent);
}

.design-info p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.design-explore {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  margin-top: 0.3rem;
  color: var(--accent);
}

.design-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0.1rem;
}

.design-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.design-rule {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent-soft);
  margin: -0.15rem 0 0.1rem;
}

.design-img-wrap {
  position: static;
  flex: 0 0 60%;
  order: -1;
}

.design-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.design-card:hover .design-img {
  transform: scale(1.04);
}

.design-overlay {
  display: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FRESH FROM THE LOOM
───────────────────────────────────────────────────────────────────────────── */

.loom-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.loom-track::-webkit-scrollbar {
  display: none;
}

/* .loom-dots, .sig-dots, .moment-dots — visibility now controlled by shared carousel dot rule above */

.loom-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}

/* New Arrivals scoped overrides */
.section.fresh-loom .fav-card {
  background: #F5F3F0;
}

.loom-card .fav-desc {
  display: none;
}

.loom-card .fav-action {
  border-top: none;
  padding-top: 0.3rem;
}

.loom-card .fav-price {
  color: var(--accent);
}

.loom-card .fav-add {
  background: var(--footer-gold);
  border-color: var(--footer-gold);
  color: #fff;
}

.loom-card .fav-add:hover {
  background: #b8934f;
  border-color: #b8934f;
}

.fav-card:hover .loom-img {
  transform: scale(1.04);
}

/* Signature Weaves — 20% bigger cards, tight gap matching Collections */
@media (min-width: 769px) {
  .sig-weaves .loom-card {
    flex: 0 0 clamp(223px, 20.4vw, 277px);
  }

  .sig-weaves .loom-img {
    aspect-ratio: 3 / 5.72;
  }

  .sig-weaves .loom-track {
    gap: 3px;
  }

  .sig-weaves .fav-price {
    font-size: 0.82rem;
  }
}

.sig-weaves .fav-action {
  display: none;
}

/* ── Top Picks card redesign ──────────────────────────────────────────── */
.sig-weaves .fav-card {
  background: #F5F3F0;
}

.sig-weaves .loom-img {
  aspect-ratio: 3 / 4.3;
  display: block;
}

/* Price pinned to bottom-right of image */
.sig-weaves .fav-price {
  position: absolute;
  bottom: 0.6rem;
  right: 0.75rem;
  z-index: 3;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.sig-weaves .fav-material {
  display: none;
}

/* Text overlay at bottom of image */
.sig-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 3rem 0.85rem 0.85rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 3, 1, 0.82) 100%);
}

.sig-card-overlay h3 {
  font-family: var(--font-card-title);
  font-size: var(--font-card-title-size);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.sig-card-overlay .fav-desc {
  display: block;
  font-family: var(--font-card);
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  line-height: 1.5;
  padding-right: 4rem;
}

.sig-card-overlay .sig-card-divider {
  color: rgba(255, 255, 255, 0.5);
}

.sig-card-overlay .sig-card-divider::before,
.sig-card-overlay .sig-card-divider::after {
  background: rgba(255, 255, 255, 0.4);
}

/* Top-left card label badge */
.sig-card-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-family: var(--font-card);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 248, 238, 0.92);
  padding: 0.25rem 0.65rem;
  backdrop-filter: blur(2px);
}

/* Decorative divider under h3 */
.sig-card-divider {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.45rem 0 0;
  font-size: 0.5rem;
  color: var(--accent-soft);
  line-height: 1;
}

.sig-card-divider::before,
.sig-card-divider::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--accent-soft);
}

/* Material label in fav-action row */
.sig-material-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* EXPLORE → link */
.sig-explore {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 180ms ease;
}

.sig-explore:hover {
  color: var(--accent-dark);
}

/* Weavira Favorites — match New Arrivals layout, height +20% over square */
.favorites .fav-image {
  aspect-ratio: 5 / 6;
}

.favorites .fav-desc {
  display: none;
}

.favorites .fav-action {
  margin-top: 0;
  border-top: none;
  padding-top: 0.3rem;
}

.favorites .fav-price {
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIFESTYLE — scrollable track, cards 15% smaller than fav-card
───────────────────────────────────────────────────────────────────────────── */

.lifestyle-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.lifestyle-track::-webkit-scrollbar {
  display: none;
}

/* .lifestyle-dots — visibility controlled by shared carousel dot rule */

.lifestyle-story {
  flex: 0 0 clamp(195px, 18vw, 242px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.lifestyle-card {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  flex-shrink: 0;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SIGNATURE SAREES — "The Weavira Edit" 4-up static grid
───────────────────────────────────────────────────────────────────────────── */

.signature {
  background: #ffffff;
}

.sig-heading {
  text-align: center;
  margin-bottom: 1.75rem;
}

.sig-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--kicker-font);
  font-size: var(--kicker-size);
  font-weight: var(--kicker-weight);
  letter-spacing: var(--kicker-spacing);
  text-transform: uppercase;
  color: var(--accent);   /* accent (not accent-soft) — intentional brand emphasis */
  margin: 0 0 0.6rem;
}

.sig-kicker::before,
.sig-kicker::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.sig-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.sig-subhead {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.sig-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sig-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.sig-img-wrap {
  position: relative;
  overflow: hidden;
}

.sig-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}

.sig-card:hover .sig-img {
  transform: scale(1.04);
}

.sig-body {
  padding: 0.85rem 0.9rem 0.95rem;
}

.sig-body h3 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  line-height: 1.2;
}

.sig-ornament {
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  margin: 0.5rem 0;
  opacity: 0.45;
}

.sig-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.sig-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sig-price {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.sig-view {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.sig-view:hover {
  color: var(--accent-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FESTIVE EDIT — full-bleed editorial campaign banner
───────────────────────────────────────────────────────────────────────────── */

.festive-section-title {
  padding-top: var(--section-padding);
  margin-bottom: 1.25rem;
}

.festive-edit {
  position: relative;
  min-height: 109px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0.45rem;
  margin-bottom: var(--section-padding);
  margin-inline: calc(-1 * var(--page-gutter));
}

.festive-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.festive-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.festive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.22) 55%, transparent 75%);
  z-index: 1;
}

.festive-content {
  position: relative;
  z-index: 2;
  padding: 2rem clamp(2rem, 6vw, 5rem);
  max-width: 52%;
  color: #fff;
}

.festive-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.88;
  margin: 0 0 0.6rem;
  color: #fff;
}

.festive-ornament {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.75rem;
}

.festive-ornament::before,
.festive-ornament::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.75;
}

.festive-gem {
  font-size: 0.45rem;
  color: var(--accent);
  line-height: 1;
}

.festive-desc {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 1.4rem;
}

.festive-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.festive-cta:hover {
  background: var(--accent-dark);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Nuakhai banner — desktop-only height boost (~30% taller than content-driven default) */
@media (min-width: 769px) {
  .festive-edit {
    height: clamp(368px, 34.5vw, 552px);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CHECKOUT TRUST STRIP — post-lifestyle reassurance bar
───────────────────────────────────────────────────────────────────────────── */

.checkout-trust {
  background: #f7f3ee;
  padding: 1.4rem 0;
}

.checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.checkout-trust-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkout-trust-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.checkout-trust-icon svg {
  width: 100%;
  height: 100%;
}

.checkout-trust-label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.25rem;
}

.checkout-trust-label::before {
  content: '✦  ';
  font-size: 0.42rem;
  vertical-align: middle;
}

.checkout-trust-text {
  font-size: 0.78rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CLOSING BANNER — full-bleed photo with left-fading scrim + farewell note
───────────────────────────────────────────────────────────────────────────── */

.wv-closing-banner {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  margin-inline: calc(-1 * var(--page-gutter));
  margin-top: calc(-1 * (var(--section-padding) + 1.5rem));
}

@media (max-width: 768px) {
  .wv-closing-banner {
    margin-inline: -1rem;
    min-height: 460px;
    margin-top: calc(-1 * (var(--section-padding) + 2rem));
  }
}

.wv-closing-media {
  position: absolute;
  inset: 0;
  display: block;
}

.wv-closing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-closing-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(to right, rgba(250, 247, 244, 0.97) 0%, rgba(250, 247, 244, 0.93) 42%, rgba(250, 247, 244, 0.45) 62%, rgba(250, 247, 244, 0) 80%);
}

@media (max-width: 768px) {
  .wv-closing-overlay {
    align-items: flex-end;
    padding-bottom: 1.25rem;
    background: linear-gradient(to top, rgba(250, 247, 244, 0.97) 0%, rgba(250, 247, 244, 0.92) 32%, rgba(250, 247, 244, 0.35) 48%, rgba(250, 247, 244, 0) 60%);
  }
}

.wv-closing-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 30rem;
}

.wv-closing-kicker {
  color: var(--accent-soft);
  margin: 0;
}

.wv-closing-rule {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent-soft);
  margin: 0.15rem 0 0.35rem;
}

.wv-closing-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.wv-closing-desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 0.85rem;
}

.wv-closing-signature {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
}

.wv-closing-signature-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--footer-gold);
}

.wv-closing-signature-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.wv-closing-ornament {
  color: var(--footer-gold);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIFESTYLE — customer stories with testimonials
───────────────────────────────────────────────────────────────────────────── */

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lifestyle-story {
  display: flex;
  flex-direction: column;
}

.lifestyle-card {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STORIES THAT FOUND A HOME — Worn & Remembered (featured story + story grid + CTA)
───────────────────────────────────────────────────────────────────────────── */

.wv-stories {
  background: var(--bg);
  margin-inline: calc(-1 * var(--page-gutter));
}

@media (max-width: 768px) {
  .wv-stories {
    margin-inline: -1rem;
  }
}

.wv-stories-head {
  position: relative;
  margin-bottom: 2rem;
  padding-inline: var(--page-gutter);
}

@media (max-width: 768px) {
  .wv-stories-head {
    padding-inline: 1rem;
  }
}

.wv-stories-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: clamp(72px, 20vw, 92px);
  height: clamp(72px, 20vw, 92px);
  margin: 1.25rem auto 0;
  border: 1px dashed var(--accent-soft);
  border-radius: 50%;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.wv-stories-badge-diamond {
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

/* ── Featured story ── */
.wv-story-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--trust-strip-fill);
}

.wv-story-featured-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 2rem);
}

.wv-story-featured-text .section-kicker {
  color: var(--accent);
  margin: 0;
}

.wv-story-featured-text h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.2;
  color: var(--accent);
  margin: 0;
}

.wv-story-quote {
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
  border-left: 2px solid var(--accent-soft);
  padding-left: 1rem;
}

.wv-story-featured-media {
  width: 100%;
  aspect-ratio: 2.71 / 1;
  overflow: hidden;
}

.wv-story-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-story-note {
  background: #fffdf6;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(45, 31, 22, 0.1);
  padding: clamp(1.25rem, 5vw, 1.75rem) clamp(1.25rem, 5vw, 1.5rem);
  margin: 1.5rem clamp(1rem, 4vw, 2rem);
}

.wv-story-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* ── Shared meta row + read link (featured + story cards) ── */
.wv-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.wv-story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
}

.wv-story-meta svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--accent-soft);
}

.wv-story-read {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
  transition: color 180ms ease;
}

.wv-story-read:hover {
  color: var(--accent-dark);
}

/* ── Story grid (3 stories, scroll on mobile) ── */
.wv-story-grid {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.wv-story-grid::-webkit-scrollbar {
  display: none;
}

.wv-story-card {
  flex: 0 0 82vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--trust-strip-fill);
  overflow: hidden;
}

.wv-story-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wv-story-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.wv-story-card:hover .wv-story-card-img {
  transform: scale(1.04);
}

.wv-story-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.wv-story-card-body h4 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: var(--accent);
  margin: 0;
}

.wv-story-card-heart {
  width: 0.8rem;
  height: 0.8rem;
  color: var(--accent-soft);
}

.wv-story-card-quote {
  margin: 0;
}

/* ── Closing CTA strip — "Have a story to tell?" ── */
.wv-story-cta {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.wv-story-cta-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.wv-story-cta-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 10vw, 56px);
  height: clamp(44px, 10vw, 56px);
  border-radius: 50%;
  background: var(--accent);
  color: var(--footer-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.wv-story-cta-heading {
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  color: var(--accent);
  margin: 0;
  text-align: left;
}

.wv-story-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 26rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.wv-story-cta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wv-story-cta-icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.wv-story-cta-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.wv-story-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.wv-story-cta-btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 769px) {
  .wv-stories-badge {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }

  .wv-story-featured {
    flex-direction: row;
    align-items: center;
  }

  .wv-story-featured-text {
    flex: 0 0 34%;
    justify-content: center;
  }

  .wv-story-featured-media {
    flex: 1;
    align-self: center;
    aspect-ratio: 2.89 / 1;
  }

  .wv-story-note {
    flex: 0 0 clamp(200px, 22vw, 260px);
    align-self: center;
    margin: 0 clamp(-2.5rem, -3vw, -2rem) 0 0;
    transform: rotate(-2deg);
    z-index: 1;
  }

  .wv-story-featured-media {
    z-index: 2;
  }

  .wv-story-grid {
    overflow-x: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 3px;
  }

  .wv-story-card {
    flex-direction: row;
  }

  .wv-story-card-media {
    flex: 0 0 45%;
    aspect-ratio: auto;
  }

  .wv-story-card-body {
    flex: 1;
    justify-content: center;
  }

  .wv-story-card-quote-badge {
    display: none;
  }

  .wv-story-cta {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .wv-story-cta-seal {
    width: clamp(48px, 4vw, 60px);
    height: clamp(48px, 4vw, 60px);
    font-size: 1.1rem;
  }

  .wv-story-cta-right {
    align-items: flex-start;
    text-align: left;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 2.5rem;
  }
}

/* ── Customer Stories / Journal / Heritage Designs — mobile-only redesign (desktop unchanged) ── */
@media (max-width: 768px) {
  .wv-stories .fav-view-all,
  .wv-journal .fav-view-all,
  .section.designs .fav-view-all {
    background: transparent;
    border: none;
    color: var(--accent);
    padding: 0;
    text-transform: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border-radius: 0;
  }

  .wv-stories .fav-view-all:hover,
  .wv-journal .fav-view-all:hover,
  .section.designs .fav-view-all:hover {
    background: transparent;
    border-color: transparent;
    color: var(--accent-dark);
    text-decoration: underline;
  }

  /* Featured story — full-bleed photo with bottom-anchored quote overlay */
  .wv-story-featured {
    position: relative;
    aspect-ratio: 4 / 5;
    box-shadow: none;
  }

  .wv-story-featured-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    height: 100%;
  }

  .wv-story-featured-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(to top, rgba(20, 12, 8, 0.88) 0%, rgba(20, 12, 8, 0.6) 40%, rgba(20, 12, 8, 0.1) 70%, rgba(20, 12, 8, 0) 85%);
  }

  .wv-story-featured-text .section-kicker,
  .wv-story-featured-text h3 {
    color: #fff;
  }

  .wv-story-featured-text .wv-story-quote {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    border-left: none;
    padding-left: 0;
    padding-top: 1.75rem;
  }

  .wv-story-featured-text .wv-story-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.75rem;
    left: 0;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--footer-gold);
  }

  .wv-story-featured-text .wv-story-meta span {
    color: rgba(255, 255, 255, 0.8);
  }

  .wv-story-featured-text .wv-story-meta svg {
    color: var(--footer-gold);
  }

  .wv-story-featured-text .wv-story-read {
    color: var(--footer-gold);
  }

  /* Story cards — matches the site's standard mobile carousel gap (Collections, New Arrivals) */
  .wv-story-grid {
    gap: 8px;
    margin-top: 8px;
  }

  .wv-story-card {
    position: relative;
  }

  .wv-story-card-media {
    aspect-ratio: 4 / 3.4;
  }

  .wv-story-card-body {
    position: relative;
    padding-top: 1.75rem;
  }

  .wv-story-card-quote-badge {
    position: absolute;
    top: -1rem;
    left: 1.15rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(45, 31, 22, 0.25);
  }

  /* Closing CTA — single tinted, bordered bar */
  .wv-story-cta {
    align-items: flex-start;
    text-align: left;
    gap: 0.6rem;
    padding: 1.25rem;
    background: #faf7f4;
    border: 1px solid var(--border);
  }

  .wv-story-cta-seal {
    display: none;
  }

  .wv-story-cta-right {
    align-items: flex-start;
    text-align: left;
    border-top: none;
    padding-top: 0;
    width: 100%;
  }
}

/* lifestyle-1/2/3: images now in <img src> in HTML — no CSS background needed */

.lifestyle-cta-card {
  flex: 0 0 clamp(195px, 18vw, 242px);
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.2rem;
  text-align: center;
}

.lifestyle-cta-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.lifestyle-cta-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.65rem 1rem;
  transition: background 200ms ease, color 200ms ease;
  line-height: 1;
}

.lifestyle-cta-link:hover {
  background: var(--accent);
  color: #fff;
}

.lifestyle {
  padding-bottom: 0.75rem;
}

.lifestyle-quote {
  padding: 1rem 0.25rem 0.5rem;
}

.lifestyle-stars {
  color: var(--footer-gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.lifestyle-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 0.45rem;
}

.lifestyle-name {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────────────
   JOURNAL — editorial intro + featured article + compact article list
───────────────────────────────────────────────────────────────────────────── */

.wv-journal-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wv-journal-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.wv-journal-intro h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.25;
  color: var(--accent);
  margin: 0;
}

.wv-journal-intro > p {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 34ch;
  margin: 0.35rem 0 0.4rem;
}

.wv-journal-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wv-journal-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--trust-strip-fill);
}

.wv-journal-featured-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2.6 / 1;
  overflow: hidden;
}

.wv-journal-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.wv-journal-featured:hover .wv-journal-featured-img {
  transform: scale(1.04);
}

.wv-journal-featured-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.wv-journal-featured-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.1rem 0;
}

.wv-journal-category {
  color: var(--accent);
  margin: 0;
}

.wv-journal-item .wv-journal-category {
  letter-spacing: 0.1em;
}

.wv-journal-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.5rem;
}

.wv-journal-readtime {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.wv-journal-readtime::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  margin-right: 0.5rem;
}

.wv-journal-featured-body .wv-story-meta,
.wv-journal-item-body .wv-story-meta {
  display: none;
}

.wv-journal-read {
  margin-top: 0.15rem;
}

.wv-journal-featured-body h3 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}

.wv-journal-featured-body > p {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.wv-journal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wv-journal-item {
  display: flex;
  flex-direction: row;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  background: var(--trust-strip-fill);
}

.wv-journal-item-media {
  flex: 0 0 clamp(90px, 26vw, 120px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.wv-journal-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.wv-journal-item:hover .wv-journal-item-img {
  transform: scale(1.04);
}

.wv-journal-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wv-journal-item h4 {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

.wv-journal-item-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wv-journal-item-arrow {
  display: none;
}

.wv-journal-explore-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  background: #faf7f4;
  text-decoration: none;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wv-journal-explore-bar svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.wv-journal-explore-arrow {
  margin-left: auto;
}

@media (min-width: 769px) {
  .wv-journal-grid {
    display: grid;
    grid-template-columns: 24% 1fr;
    grid-template-areas:
      "intro featured"
      "list list"
      "explore explore";
    row-gap: 1rem;
    column-gap: 2.5rem;
  }

  .wv-journal-explore-bar,
  .wv-journal-grid .fav-cta-wrap {
    grid-area: explore;
  }

  .wv-journal-intro {
    grid-area: intro;
    padding-top: 0.5rem;
  }

  .wv-journal-intro > p {
    display: block;
  }

  .wv-journal-readtime {
    display: none;
  }

  .wv-journal-item .wv-journal-category {
    letter-spacing: var(--kicker-spacing);
  }

  .wv-journal-featured-body .wv-story-meta,
  .wv-journal-item-body .wv-story-meta {
    display: flex;
  }

  .wv-journal-read {
    display: none;
  }

  .wv-journal-content {
    display: contents;
  }

  /* Featured article — full-bleed photo with bottom-anchored text overlay */
  .wv-journal-featured {
    grid-area: featured;
    position: relative;
    height: 100%;
    overflow: hidden;
    background: none;
  }

  .wv-journal-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0) 68%);
    z-index: 1;
  }

  .wv-journal-featured-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    height: 100%;
  }

  .wv-journal-featured-badge {
    display: none;
  }

  .wv-journal-featured-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3vw, 3rem);
  }

  .wv-journal-featured-body .wv-journal-category {
    color: #fff;
  }

  .wv-journal-featured-body h3 {
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    max-width: 26ch;
  }

  .wv-journal-featured-body > p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 44ch;
  }

  .wv-journal-featured-body .wv-story-meta span {
    color: rgba(255, 255, 255, 0.85);
  }

  .wv-journal-featured-body .wv-story-meta svg {
    color: rgba(255, 255, 255, 0.85);
  }

  /* Article list — full-width row of 3 cards below intro + featured */
  .wv-journal-list {
    grid-area: list;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .wv-journal-item {
    flex-direction: column;
    gap: 0.4rem;
    background: var(--trust-strip-fill);
    border-radius: 0;
    overflow: hidden;
  }

  .wv-journal-item-media {
    flex: none;
    width: 100%;
    aspect-ratio: 8 / 3;
  }

  .wv-journal-item-body {
    flex: none;
    padding: 1rem 1.15rem 1.25rem;
  }

  .wv-journal-item-desc {
    display: none;
  }

  .wv-journal-item-arrow {
    display: inline-flex;
    margin-left: auto;
    width: 0.95rem;
    height: 0.95rem;
    color: var(--accent);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   JOURNAL ARTICLE COMPONENTS (wv-jnl-*)
   Reusable blocks for single Journal/blog posts. Each is a standalone
   ACF flexible-content layout — see journal-post.html for markup + ACF
   GROUP comments. Current journal-post.html stacks 10 components (Hero,
   Quick Summary, Rich Text, Full Width Image, Quote with Portrait,
   Process Steps, Statistics Strip, Collection Carousel, FAQ Accordion,
   Related Articles) per mockup-images/Journal Component.png. More of
   the 33-component library remain to be built in future sessions.
───────────────────────────────────────────────────────────────────────────── */

.wv-jnl-article {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-block: 1.5rem;
}

/* ── 01 Hero ── */
.wv-jnl-hero {
  position: relative;
  min-block-size: clamp(300px, 78vw, 420px);
  display: flex;
  align-items: flex-end;
  margin-inline: calc(-1 * var(--page-gutter));
  overflow: hidden;
  background: var(--text);
}

.wv-jnl-hero picture {
  position: absolute;
  inset: 0;
}

.wv-jnl-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-jnl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.72));
}

.wv-jnl-hero-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wv-jnl-hero .wv-journal-featured-badge {
  position: static;
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
}

.wv-jnl-hero-heading {
  font-family: var(--font-display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(2.4rem, 10vw, 4.2rem);
  line-height: 1.05;
  margin: 0;
}

.wv-jnl-hero-subheading {
  font-family: var(--font-ui);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1rem, 3.2vw, 1.4rem);
  line-height: 1.3;
  margin: 0;
  max-width: 24ch;
}

.wv-jnl-hero-desc {
  font-family: var(--font-ui);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  line-height: 1.6;
  margin: 0.2rem 0 0;
  max-width: 34ch;
}

.wv-jnl-hero-meta-dot {
  color: rgba(255,255,255,0.6);
}

.wv-jnl-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.9rem;
}

.wv-jnl-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.wv-jnl-hero-meta-item svg {
  width: 0.8rem;
  height: 0.8rem;
}

/* ── 02 Quick Summary ── */
.wv-jnl-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wv-jnl-summary-list-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--trust-strip-fill);
  border: 1px solid var(--border);
  padding: 1rem;
}

.wv-jnl-summary-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.wv-jnl-summary-list {
  list-style: disc;
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wv-jnl-summary-list li {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.wv-jnl-summary-stats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--trust-strip-fill);
  border: 1px solid var(--border);
  padding: 1rem;
}

.wv-jnl-summary-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
}

.wv-jnl-summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.wv-jnl-summary-stat svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--accent);
}

.wv-jnl-summary-stat strong {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.wv-jnl-summary-stat span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── 03 Rich Text ── */
.wv-jnl-richtext {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--trust-strip-fill);
  padding: 0.75rem 1.5rem;
}

.wv-jnl-richtext-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wv-jnl-richtext-text h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.wv-jnl-richtext p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

.wv-jnl-richtext-media {
  display: none;
}

/* ── 04 Full Width Image ── */
.wv-jnl-image {
  position: relative;
  margin: 0;
}

.wv-jnl-image img {
  width: 100%;
  height: 42.5vh;
  object-fit: cover;
  display: block;
}

/* Placeholder-asset safety: the stand-in photo has unusable (blank) content
   on its left side, only ~1.8/1-worth of width per unit height is usable.
   At a literal full-bleed width + 50vh height, wide/short viewports would
   force a ratio well beyond that (object-fit:cover would then crop
   vertically instead of horizontally and show the blank region, or on very
   wide monitors show it outright) — so this modifier caps the image's own
   width instead of letting it stretch to 100%, keeping the crop within the
   photo's safe zone, and centers it on a neutral fill so the letterboxed
   sides read as intentional rather than broken. Remove this whole rule
   once real photography (a normal photo with no defect) replaces the
   placeholder — the general 100%-width/50vh rule above is already sized
   for that case. */
.wv-jnl-image.wv-jnl-image--placeholder-crop {
  background: var(--trust-strip-fill);
}

.wv-jnl-image.wv-jnl-image--placeholder-crop img {
  width: auto;
  max-width: min(100%, calc(50vh * 1.8));
  margin-inline: auto;
  object-position: right center;
}

.wv-jnl-image-overlay {
  display: none;
}

/* Placeholder is letterboxed (narrower than the figure) on wide/short
   viewports — the overlay + overlaid caption are tuned for a full-bleed
   photo, so for the placeholder they'd wash out the neutral side margins
   and the caption wouldn't sit under the actual photo. Simpler static
   caption below the image instead. Remove with the rest of the modifier
   once real photography replaces the placeholder. */
.wv-jnl-image.wv-jnl-image--placeholder-crop .wv-jnl-image-overlay {
  display: none;
}

.wv-jnl-image.wv-jnl-image--placeholder-crop figcaption {
  position: static;
  color: var(--muted);
  text-align: center;
  padding: 0.6rem var(--page-gutter) 0;
}

.wv-jnl-image figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.5rem;
  background: var(--footer-bg);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

/* ── 05 Quote with Portrait ── */
.wv-jnl-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
  background: var(--trust-strip-fill);
  padding: 0.75rem;
}

.wv-jnl-quote-portrait {
  width: clamp(77px, 18vw, 118px);
  height: clamp(77px, 18vw, 118px);
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.wv-jnl-quote-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-jnl-quote-portrait svg {
  width: 45%;
  height: 45%;
  color: var(--accent-soft);
}

.wv-jnl-quote-mark {
  font-size: 1.8em;
  line-height: 1;
  vertical-align: -0.28em;
  margin-right: 0.15rem;
  color: var(--accent-soft);
}

.wv-jnl-quote-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 3.4vw, 1.4rem);
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 0.3rem;
}

.wv-jnl-quote-cite {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-style: normal;
}

.wv-jnl-quote-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.wv-jnl-quote-role {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── 05b Pull Quote ── */
.wv-jnl-pullquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  background: var(--trust-strip-fill);
  padding: clamp(1rem, 3.5vw, 1.75rem) clamp(2rem, 8vw, 4rem);
}

.wv-jnl-pullquote-text {
  position: relative;
  margin: 0;
  max-width: 32rem;
  padding: 0 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 3.6vw, 1.7rem);
  line-height: 1.35;
  color: var(--text);
}

.wv-jnl-pullquote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2em;
  line-height: 1;
  color: var(--accent);
}

.wv-jnl-pullquote-mark--open {
  top: -0.15em;
  left: 0;
}

.wv-jnl-pullquote-mark--close {
  bottom: -0.45em;
  right: 0;
}

.wv-jnl-pullquote-attribution {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

/* ── 05c Featured Story ── */
.wv-jnl-featured {
  display: flex;
  flex-direction: column;
  background: var(--trust-strip-fill);
  border: 1px solid var(--border);
}

.wv-jnl-featured-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.75rem 1.5rem;
}

.wv-jnl-featured-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.wv-jnl-featured-kicker svg {
  width: 0.85rem;
  height: 0.85rem;
}

.wv-jnl-featured-text h2 {
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  line-height: 1.15;
}

.wv-jnl-featured-text p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.wv-jnl-featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.wv-jnl-featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.wv-jnl-featured-meta svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--accent);
}

.wv-jnl-featured-meta-divider {
  width: 1px;
  height: 0.8rem;
  background: var(--border);
}

.wv-jnl-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.wv-jnl-featured-cta svg {
  width: 0.9rem;
  height: 0.9rem;
}

.wv-jnl-featured-media {
  position: relative;
  min-height: clamp(220px, 55vw, 340px);
}

.wv-jnl-featured-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-jnl-featured-media img[hidden] {
  display: none;
}

.wv-jnl-featured-img--placeholder-crop {
  object-position: right center;
}

.wv-jnl-featured-arrows {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.wv-jnl-featured-arrow {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.wv-jnl-featured-arrow:hover {
  background: var(--accent);
  color: #fff;
}

.wv-jnl-featured-arrow svg {
  width: 1rem;
  height: 1rem;
}

/* ── 06 Process Steps ── */
.wv-jnl-process {
  padding: 2.5rem 1.5rem;
  background: var(--accent);
}

.wv-jnl-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
}

.wv-jnl-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.wv-jnl-process-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
}

.wv-jnl-process-step h3 {
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
}

.wv-jnl-process-step p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

/* ── 07 Statistics Strip ── */
.wv-jnl-stats {
  padding: 2rem 1.5rem;
  background: #faf7f4;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.wv-jnl-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.wv-jnl-stats-item svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent);
}

.wv-jnl-stats-item strong {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.wv-jnl-stats-item span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
}

/* ── 08 Collection Carousel ── */
.wv-jnl-collection .fav-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.wv-jnl-collection .fav-copy h3 {
  font-size: 0.85rem;
}

/* ── 09 FAQ Accordion ── */
.wv-jnl-faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wv-jnl-faq-heading {
  margin-bottom: 0.5rem;
}

.wv-jnl-faq-item {
  border: 1px solid var(--border);
  background: #faf7f4;
}

.wv-jnl-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
}

.wv-jnl-faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
}

.wv-jnl-faq-toggle::before,
.wv-jnl-faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 200ms ease;
}

.wv-jnl-faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.wv-jnl-faq-toggle::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.wv-jnl-faq-question[aria-expanded="true"] .wv-jnl-faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.wv-jnl-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.wv-jnl-faq-item:has(.wv-jnl-faq-question[aria-expanded="true"]) .wv-jnl-faq-answer {
  grid-template-rows: 1fr;
}

.wv-jnl-faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.wv-jnl-faq-item:has(.wv-jnl-faq-question[aria-expanded="true"]) .wv-jnl-faq-answer p {
  padding-bottom: 0.9rem;
}

/* ── 10 Related Articles ── */
.wv-jnl-related {
  margin-inline: calc(-1 * var(--page-gutter));
  padding: 2.5rem var(--page-gutter);
  background: var(--footer-bg);
}

.wv-jnl-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.wv-jnl-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wv-jnl-related-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.wv-jnl-related-img--placeholder-crop {
  object-position: right center;
}

.wv-jnl-related-body {
  padding-top: 0.6rem;
}

.wv-jnl-related-body .section-kicker {
  margin: 0 0 0.35rem;
  color: var(--footer-gold);
}

.wv-jnl-related-body h3 {
  font-family: var(--font-card-title);
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}

.wv-jnl-related-readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
}

.wv-jnl-related-readtime svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ── 05d Continue Reading ── */
.wv-jnl-continue {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--trust-strip-fill);
  padding: 2rem 1.5rem;
}

.wv-jnl-continue-kicker {
  color: var(--accent);
}

.wv-jnl-continue-card {
  position: relative;
  flex: 0 0 72vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.wv-jnl-continue-image-wrap {
  position: relative;
}

.wv-jnl-continue-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.wv-jnl-continue-img--placeholder-crop {
  object-position: right center;
}

.wv-jnl-continue-bookmark {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wv-jnl-continue-bookmark svg {
  width: 0.85rem;
  height: 0.85rem;
}

.wv-jnl-continue-body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wv-jnl-continue-body .section-kicker {
  margin: 0;
  color: var(--accent);
}

.wv-jnl-continue-body h3 {
  font-family: var(--font-card-title);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.wv-jnl-continue-readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.wv-jnl-continue-readtime svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ── 06 Gallery ── */
.wv-jnl-gallery-list {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}

.wv-jnl-gallery-list::-webkit-scrollbar {
  display: none;
}

.wv-jnl-gallery-item {
  flex: 0 0 68vw;
  scroll-snap-align: start;
}

.wv-jnl-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* ── 07 Editorial Banner ── */
.wv-jnl-editorial {
  margin-inline: calc(-1 * var(--page-gutter));
  background: var(--footer-bg);
  padding: 1.5rem var(--page-gutter);
  text-align: center;
}

.wv-jnl-editorial-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 32ch;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  color: #F5EDD8;
}

.wv-jnl-editorial-line {
  display: block;
  flex: 0 0 2rem;
  height: 1px;
  background: var(--footer-gold);
  position: relative;
}

.wv-jnl-editorial-line::before {
  content: '\25C6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  line-height: 1;
  color: var(--footer-gold);
  background: var(--footer-bg);
  padding: 0 0.3rem;
}

/* ── 09 Timeline ── */
.wv-jnl-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wv-jnl-timeline-list::before {
  content: '';
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  left: 0.3rem;
  width: 1px;
  background: var(--border);
}

.wv-jnl-timeline-item {
  position: relative;
}

.wv-jnl-timeline-dot {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
}

.wv-jnl-timeline-year {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.wv-jnl-timeline-desc {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── 11 Motif Spotlight ── */
.wv-jnl-motif {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: var(--trust-strip-fill);
  overflow: hidden;
}

.wv-jnl-motif::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/sambalpuri-design.webp');
  background-size: 13.75rem;
  background-repeat: repeat;
  background-position: right center;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent 70%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent 70%);
  opacity: 0.14;
  pointer-events: none;
}

.wv-jnl-motif-media {
  position: relative;
  z-index: 1;
  flex: 0 0 clamp(56px, 16vw, 72px);
  width: clamp(56px, 16vw, 72px);
  height: clamp(56px, 16vw, 72px);
  border-radius: 4px;
  overflow: hidden;
}

.wv-jnl-motif-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-jnl-motif-body {
  position: relative;
  z-index: 1;
}

.wv-jnl-motif-body h3 {
  margin: 0 0 0.4rem;
  color: var(--accent);
}

.wv-jnl-motif-body p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 42ch;
}

/* ── Process Detail ── */
.wv-jnl-process-detail {
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wv-jnl-process-detail-text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
}

.wv-jnl-process-detail-media {
  margin: 0;
}

.wv-jnl-process-detail-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.wv-jnl-process-detail-media figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--text);
}

/* ── Heritage Spotlight ── */
.wv-jnl-heritage {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #faf7f4;
  padding: 1.5rem;
}

.wv-jnl-heritage-media {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

.wv-jnl-heritage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-jnl-heritage-body h3 {
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.wv-jnl-heritage-body h3::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.wv-jnl-heritage-body p {
  margin: 0 0 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.65;
}

.wv-jnl-heritage-body p:last-child {
  margin-bottom: 0;
}

/* ── Did You Know callout ── */
.wv-jnl-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #faf7f4;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

.wv-jnl-callout-icon {
  flex: 0 0 auto;
  width: clamp(2.4rem, 8vw, 3rem);
  height: clamp(2.4rem, 8vw, 3rem);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-jnl-callout-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.wv-jnl-callout-body {
  flex: 1 1 0;
  border-left: 1px solid var(--border);
  padding-left: 1rem;
}

.wv-jnl-callout-kicker {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.wv-jnl-callout-body p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── References ── */
.wv-jnl-references {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.wv-jnl-references h3 {
  color: var(--accent);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.wv-jnl-references-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wv-jnl-references-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wv-jnl-references-grid li {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
}

.wv-jnl-references-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--accent-soft);
  border-radius: 50%;
}

/* ── Text Block ── */
.wv-jnl-textblock {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wv-jnl-textblock p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
}

/* ── Editorial Sign-off ── */
.wv-jnl-signoff {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--accent);
  padding: clamp(1.25rem, 4vw, 2rem) var(--page-gutter);
  margin-inline: calc(-1 * var(--page-gutter));
  overflow: hidden;
}

.wv-jnl-signoff-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.wv-jnl-signoff-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: clamp(9rem, 24vw, 11.5rem);
  height: clamp(9rem, 24vw, 11.5rem);
  border-radius: 50%;
  border: 1px solid var(--footer-gold);
  padding: 1rem;
}

.wv-jnl-signoff-mark {
  display: block;
  width: clamp(4.2rem, 13vw, 6.5rem);
  aspect-ratio: 451 / 175;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.wv-jnl-signoff-seal .wv-jnl-signoff-mark {
  width: clamp(2.4rem, 6.5vw, 3.4rem);
  margin-bottom: 0.3rem;
}

.wv-jnl-signoff-mark img {
  display: block;
  width: 100%;
  max-width: none;
}

.wv-jnl-signoff-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.06em;
  color: #F5EDD8;
}

.wv-jnl-signoff-seal .wv-jnl-signoff-word {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.wv-jnl-signoff-brand .heading-ornament {
  color: var(--footer-gold);
}

.wv-jnl-signoff-brand .heading-ornament::before,
.wv-jnl-signoff-brand .heading-ornament::after {
  background: var(--footer-gold);
}

.wv-jnl-signoff-sub {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--footer-gold);
}

.wv-jnl-signoff-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 34rem;
  text-align: center;
}

.wv-jnl-signoff-message {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 3.4vw, 1.4rem);
  color: #F5EDD8;
  line-height: 1.4;
}

.wv-jnl-signoff-divider {
  position: relative;
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--footer-gold);
}

.wv-jnl-signoff-divider::before {
  content: '\25C6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  line-height: 1;
  color: var(--footer-gold);
  background: var(--accent);
  padding: 0 0.3rem;
}

.wv-jnl-signoff-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.wv-jnl-signoff-share-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer-gold);
}

.wv-jnl-signoff-share-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wv-jnl-signoff-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--footer-gold);
  color: var(--footer-gold);
  transition: background 180ms ease, color 180ms ease;
}

.wv-jnl-signoff-share-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.wv-jnl-signoff-share-icon:hover {
  background: var(--footer-gold);
  color: var(--accent);
}

@media (min-width: 769px) {
  .wv-jnl-article {
    gap: 2.5rem;
    padding-block: 2.5rem;
  }

  .wv-jnl-richtext {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 3rem;
    padding: 1rem 3rem;
  }

  .wv-jnl-richtext-media {
    display: block;
    width: 100%;
  }

  .wv-jnl-richtext-media img {
    width: 100%;
    aspect-ratio: 8 / 3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }

  .wv-jnl-hero {
    min-block-size: clamp(360px, 24vw, 460px);
    align-items: center;
    justify-content: center;
  }

  .wv-jnl-hero-content {
    padding: 2.5rem clamp(2rem, 6vw, 5rem);
  }

  .wv-jnl-featured {
    flex-direction: row;
    align-items: stretch;
  }

  .wv-jnl-featured-text {
    flex: 0 0 42%;
    justify-content: center;
    padding: 2.5rem clamp(2rem, 4vw, 3rem);
  }

  .wv-jnl-featured-media {
    flex: 1 1 0;
    min-height: 0;
  }

  .wv-jnl-summary {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }

  .wv-jnl-summary-list-col {
    flex: 1 1 0;
    padding: 1.15rem 1.5rem;
  }

  .wv-jnl-summary-stats {
    flex: 1 1 0;
    justify-content: center;
    padding: 1.15rem 1.5rem;
  }

  .wv-jnl-summary-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .wv-jnl-summary-stat:not(:first-child) {
    border-left: 1px solid var(--border);
    padding-left: 1rem;
  }

  .wv-jnl-image figcaption {
    padding: 0.85rem clamp(2rem, 6vw, 5rem);
    font-size: 0.85rem;
  }

  .wv-jnl-quote {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
    padding: 0.75rem 2.5rem;
  }

  .wv-jnl-process-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
  }

  .wv-jnl-process-step {
    position: relative;
  }

  .wv-jnl-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.2rem;
    left: calc(50% + 1.6rem);
    width: calc(100% - 3.2rem);
    height: 1px;
    background: rgba(255,255,255,0.35);
  }

  .wv-jnl-stats {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .wv-jnl-stats-item {
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
  }

  .wv-jnl-stats-item:first-child {
    padding-left: 0;
    border-left: none;
  }

  .wv-jnl-related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .wv-jnl-continue {
    padding: 3rem;
  }

  .wv-jnl-continue-card {
    flex: 0 0 clamp(228px, 20.8vw, 282px);
  }

  .wv-jnl-gallery-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    padding: 0;
  }

  .wv-jnl-gallery-item {
    scroll-snap-align: none;
  }

  .wv-jnl-editorial {
    padding: 2rem var(--page-gutter);
  }

  .wv-jnl-editorial-text {
    max-width: 44ch;
  }

  .wv-jnl-editorial-line {
    flex: 0 0 3rem;
  }

  .wv-jnl-timeline-list {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    gap: 0.5rem;
  }

  .wv-jnl-timeline-list::before {
    top: 0.3rem;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }

  .wv-jnl-timeline-item {
    flex: 1 1 0;
    text-align: center;
    padding-top: 1.4rem;
  }

  .wv-jnl-timeline-dot {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .wv-jnl-motif {
    padding: 1.25rem 3rem;
    gap: 2rem;
  }

  .wv-jnl-motif-media {
    flex-basis: clamp(72px, 6vw, 96px);
    width: clamp(72px, 6vw, 96px);
    height: clamp(72px, 6vw, 96px);
  }

  .wv-jnl-process-detail {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    padding: 1.75rem 2.5rem;
    gap: 2rem;
  }

  .wv-jnl-process-detail-media img {
    aspect-ratio: auto;
    height: clamp(168px, 19vw, 252px);
  }

  .wv-jnl-heritage {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
  }

  .wv-jnl-heritage-media {
    aspect-ratio: 8 / 3;
  }

  .wv-jnl-references-grid {
    flex-direction: row;
    gap: 2rem;
  }

  .wv-jnl-references-grid ul {
    flex: 1 1 0;
  }

  .wv-jnl-signoff {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }

  .wv-jnl-signoff-brand {
    flex-direction: row;
    gap: 2rem;
  }

  .wv-jnl-signoff-brand .heading-ornament {
    display: none;
  }

  .wv-jnl-signoff-brand::after {
    content: '';
    display: block;
    width: 1px;
    height: 6.5rem;
    background: var(--footer-gold);
  }

  .wv-jnl-signoff-body {
    align-items: flex-start;
    text-align: left;
    gap: 1.1rem;
    max-width: 22rem;
  }

  .wv-jnl-signoff-message {
    text-align: left;
  }

  .wv-jnl-signoff-divider {
    margin: 0;
  }

  .wv-jnl-signoff-share {
    align-items: flex-start;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   GIFTING SECTION
───────────────────────────────────────────────────────────────────────────── */

.gifting-section {
  background: #fff;
  padding-block: var(--section-padding);
}

/* ── Hero banner — full-bleed background image with text overlay ── */
.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Hero split — dark text panel + gift-box photo ── */
.gifting-hero {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-inline: calc(-1 * var(--page-gutter));
}

.gifting-hero-picture {
  order: -1;
  display: block;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
}

.gifting-hero-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gifting-hero-text {
  background: var(--footer-bg);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: clamp(1.75rem, 6vw, 2.5rem) clamp(1.25rem, 5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.gifting-hero-text h2 {
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  line-height: 1.3;
  color: #F5EDD8;
  margin: 0;
  overflow-wrap: break-word;
}

.gifting-hero-highlight {
  color: var(--footer-gold);
}

.gifting-hero-sub {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.75);
  margin: 0;
  line-height: 1.7;
  max-width: 46ch;
}

.gifting-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 0.4rem;
  transition: background 180ms ease;
}

.gifting-hero-cta:hover {
  background: var(--accent-dark);
}

@media (min-width: 769px) {
  .gifting-hero {
    flex-direction: row;
    align-items: stretch;
    height: clamp(291px, 29.12vw, 437px);
  }

  .gifting-hero-text {
    order: 0;
    flex: 0 0 42%;
    justify-content: center;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    overflow: hidden;
  }

  .gifting-hero-text h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.15;
  }

  .gifting-hero-picture {
    order: 0;
    flex: 1;
    aspect-ratio: auto;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .gifting-hero {
    margin-inline: -1rem;
  }
}

/* ── Gifting value badges — full-bleed icon+label strip below the hero ── */
.wv-gift-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #faf7f4;
  padding: 1.05rem 1rem;
  gap: 1.5rem 0.5rem;
  margin-inline: calc(-1 * var(--page-gutter));
}

.wv-gift-badge {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0 0.5rem;
}

.wv-gift-badge::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--border);
}

.wv-gift-badge:nth-child(2n)::before {
  display: none;
}

.wv-gift-badge-icon {
  width: 1.12rem;
  height: 1.12rem;
  color: var(--accent);
}

.wv-gift-badge-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.5;
}

@media (min-width: 769px) {
  .wv-gift-badges {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.4rem clamp(1.5rem, 4vw, 3rem);
    gap: 0;
  }

  .wv-gift-badge:nth-child(2n)::before {
    display: block;
  }

  .wv-gift-badge:first-child::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .wv-gift-badges {
    margin-inline: -1rem;
  }
}

/* ── Complementary packaging kicker strip — full-bleed, same fill as the badge strip ── */
.wv-gift-packaging-strip {
  background: #faf7f4;
  padding-block: 0.85rem;
  margin-inline: calc(-1 * var(--page-gutter));
}

.wv-gift-packaging-strip .sig-kicker {
  margin: 0;
}

.wv-gift-packaging-dot {
  color: var(--accent-soft);
}

@media (max-width: 768px) {
  .wv-gift-packaging-strip {
    margin-inline: -1rem;
  }
}

/* ── Occasions ── */
.gifting-occasions-wrap {
  background: var(--bg);
  padding-block: var(--section-padding);
}

.occasions-row {
  display: flex;
  gap: 1rem;
  padding-top: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.occasions-row::-webkit-scrollbar {
  display: none;
}

.occasion-card {
  position: relative;
  flex: 0 0 60vw;
  scroll-snap-align: start;
  overflow: visible;
  display: block;
  text-decoration: none;
  color: inherit;
}

.occasion-card-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  border: 3px solid var(--footer-gold);
  overflow: hidden;
}

.occasion-card-media {
  position: absolute;
  inset: 0;
}

.occasion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.occasion-card:hover .occasion-img {
  transform: scale(1.04);
}

.occasion-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 12, 8, 0.92) 0%, rgba(26, 12, 8, 0.68) 55%, rgba(26, 12, 8, 0) 100%);
  padding: 2.25rem 0.8rem 1.1rem;
  text-align: center;
}

.occasion-name {
  display: block;
  font-size: clamp(0.85rem, 3vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #F5EDD8;
  margin: 0;
}

.occasion-desc {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.68);
  line-height: 1.5;
  margin: 0.35rem 0 0;
}

.wv-occasion-badge {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: #faf7f4;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.35rem 0.9rem;
  box-shadow: 0 4px 10px rgba(26, 12, 8, 0.18);
}

.wv-occasion-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 0.65rem;
  background: var(--accent-soft);
}

@media (min-width: 769px) {
  .occasion-card {
    flex: 1 1 0;
    min-width: 0;
  }

  .occasion-name {
    font-size: clamp(0.82rem, 1vw, 1rem);
  }

  .occasion-caption {
    padding: 1.1rem 1rem 1.25rem;
  }
}

@media (max-width: 768px) {
  /* Matches the site's standard mobile carousel gap (Collections, New Arrivals) */
  .occasions-row {
    gap: 8px;
  }
}

/* ── Personalised gifting features ── */
.gifting-features-wrap {
  background: #faf7f4;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  margin-inline: calc(-1 * var(--page-gutter));
}

@media (min-width: 769px) {
  .gifting-features-wrap {
    padding-inline: var(--page-gutter);
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .gifting-features-wrap {
    margin-inline: -1rem;
  }
}

.gifting-features {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gifting-features::-webkit-scrollbar {
  display: none;
}

.gifting-feature {
  flex: 0 0 68vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
}

.gifting-feature-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gifting-feature-icon {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.gifting-feature-title {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0;
}

.gifting-feature-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.gifting-feature-img {
  width: 100%;
  aspect-ratio: 8 / 3;
  object-fit: cover;
  display: block;
  margin-top: 0.4rem;
}

@media (min-width: 769px) {
  .gifting-features {
    display: flex;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 1.5rem);
    overflow: visible;
  }

  .gifting-feature {
    flex: 1 1 0;
    max-width: 260px;
    padding: 0 1rem;
    position: relative;
  }

  .gifting-feature-title {
    white-space: nowrap;
  }

  .gifting-feature:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    bottom: 0.15rem;
    width: 1px;
    background: var(--border);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CRAFT EDITORIAL BANNER + PARCHMENT STRIP
───────────────────────────────────────────────────────────────────────────── */

/* ── Dark editorial banner — full-width background image + text overlay ── */
/* ─────────────────────────────────────────────────────────────────────────────
   CRAFT VIDEO SECTION — unified video card with overlay text
───────────────────────────────────────────────────────────────────────────── */

.craft-video-section {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.craft-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 5, 3, 0.82) 0%, rgba(10, 5, 3, 0.35) 45%, rgba(10, 5, 3, 0.05) 70%);
  pointer-events: none;
}

.craft-video-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-align: center;
}

.craft-video-text h2 {
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  max-width: 22ch;
  overflow-wrap: break-word;
}

.craft-video-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.craft-video-cta {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--footer-gold);
  margin-top: 0.3rem;
}

.story-video-spacer {
  height: var(--section-padding);
}

.craft-video {
  display: block;
  width: 100%;
  height: clamp(339px, 39.68vw, 523px);
  object-fit: cover;
}

.story-video-mobile-wrap {
  margin-inline: calc(-1 * var(--page-gutter));
}

@media (min-width: 769px) {
  .craft-video-overlay {
    background: linear-gradient(to right, rgba(10, 5, 3, 0.88) 0%, rgba(10, 5, 3, 0.5) 45%, rgba(10, 5, 3, 0.05) 75%);
  }

  .craft-video-text {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 46%;
    padding: 1.5rem clamp(2rem, 4vw, 3.5rem);
  }

  .craft-video-text h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    max-width: 20ch;
  }

  .craft-video-sub {
    font-size: 0.9rem;
  }

  .craft-video-cta {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .story-video-mobile-wrap {
    display: flex;
    flex-direction: column;
    height: 90vh;
    margin-inline: -1rem;
  }

  .story-video-mobile-wrap .craft-video-section {
    flex: 17;
    min-height: 0;
  }

  .story-video-mobile-wrap .story-video-spacer {
    flex: 0;
    min-height: 0;
  }

  .craft-video {
    width: 100%;
    height: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   BRAND LOGO BAND — between the closing banner and the trust ribbon
───────────────────────────────────────────────────────────────────────────── */

.wv-brand-band {
  display: flex;
  justify-content: center;
  background: var(--trust-strip-fill);
  padding: 1rem var(--page-gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wv-brand-band-logo {
  width: clamp(140px, 32vw, 220px);
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  .wv-brand-band {
    padding: 1.5rem var(--page-gutter);
  }

  .wv-brand-band-logo {
    width: clamp(160px, 11vw, 210px);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TRUST RIBBON — Why Weavira value propositions
───────────────────────────────────────────────────────────────────────────── */

.trust-ribbon {
  background: #f7f3ee;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 769px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.trust-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-body h3 {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.trust-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Dark footer variant — before the main footer ── */
.trust-ribbon--footer {
  background: var(--accent);
  padding-block: 1.25rem;
  padding-inline: var(--page-gutter);
  margin-inline: calc(-1 * var(--page-gutter));
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .trust-ribbon--footer {
    padding-inline: 1.5rem;
    margin-inline: -1rem;
  }
}

.trust-ribbon--footer .trust-item {
  align-items: center;
  gap: 0.75rem;
}

.trust-ribbon--footer .trust-icon {
  width: 1.9rem;
  height: 1.9rem;
  color: var(--footer-gold);
}

.trust-ribbon--footer .trust-body h3 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.15rem;
}

.trust-ribbon--footer .trust-body p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 769px) {
  .trust-ribbon--footer .trust-item {
    position: relative;
    padding-left: 1.25rem;
  }

  .trust-ribbon--footer .trust-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────────────── */

/* ── No Discount Banner ───────────────────────────────────────────────── */
.no-discount-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 42 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-discount-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.no-discount-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 2, 0.62);
}

.no-discount-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--page-gutter);
}

.no-discount-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.no-discount-sub {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin: 0 0 0.9rem;
}

.no-discount-ornament {
  font-size: 0.65rem;
  color: var(--footer-gold);
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .no-discount-banner {
    aspect-ratio: 4 / 3;
  }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  border-radius: 0;
  margin-top: 0;
}

.footer-brand-desc {
  font-size: 0.8rem;
  color: var(--footer-muted);
  line-height: 1.65;
  margin: 0 0 1.2rem;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 3rem;
  border-top: 1px solid var(--footer-border);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(242, 229, 220, 0.5);  /* intentionally dimmer than --footer-muted */
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(242, 229, 220, 0.5);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: var(--footer-fg);
}

.footer-legal span {
  color: rgba(242, 229, 220, 0.25);
  font-size: 0.7rem;
}

/* ── Decorative Sambalpuri border strip — very last element in the footer ── */
.wv-footer-design-row {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Footer value-prop columns (Why Weavira / Why Handwoven / Need Help) ── */
.wv-footer-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
}

.wv-footer-value-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wv-footer-value-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.wv-footer-value-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: var(--footer-gold);
  flex-shrink: 0;
}

.wv-footer-value-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.wv-footer-value-head h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--footer-gold);
  margin: 0;
}

.wv-footer-value-col .footer-brand-desc {
  margin-bottom: 1.2rem;
}

.wv-footer-value-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wv-footer-value-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--footer-muted);
}

.wv-footer-value-list svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--footer-gold);
  flex-shrink: 0;
}

.wv-footer-value-col .wv-card-explore {
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

@media (min-width: 769px) and (max-width: 1140px) {
  .wv-footer-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1141px) {
  .wv-footer-values {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 3rem;
  }
}

/* ── Footer "Follow Us" bar ── */
.wv-footer-follow {
  border-top: 1px solid var(--footer-border);
  border-bottom: 1px solid var(--footer-border);
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.wv-footer-follow-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
}

.wv-footer-follow-line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(201, 169, 110, 0.35);
}

.wv-footer-follow-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--footer-gold);
  white-space: nowrap;
}

.wv-footer-follow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.wv-footer-follow-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.wv-footer-follow-item:hover {
  color: var(--footer-fg);
}

.wv-footer-follow-item:hover .wv-footer-follow-icon {
  border-color: var(--footer-gold);
  color: var(--footer-gold);
}

.wv-footer-follow-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: var(--footer-gold);
  flex-shrink: 0;
  transition: border-color 180ms ease, color 180ms ease;
}

.wv-footer-follow-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

@media (min-width: 769px) {
  .wv-footer-follow {
    padding: 1.75rem 3rem;
  }

  .wv-footer-follow-list {
    gap: 0;
  }

  .wv-footer-follow-item {
    padding-inline: 1.75rem;
    position: relative;
  }

  .wv-footer-follow-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--footer-border);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE BOTTOM NAVIGATION — hidden on desktop, fixed on mobile
───────────────────────────────────────────────────────────────────────────── */

.mobile-bottom-nav {
  display: none;
  height: var(--mobile-nav-height);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤1140px)
───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1140px) {
  .footer-bottom {
    padding: 1rem 2rem;
  }

  .checkout-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .sig-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .festive-edit {
    min-height: 98px;
  }

  .festive-content {
    max-width: 65%;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤768px)
   Only mobile-specific overrides live here. Desktop rules above are already
   gated by @media (min-width: 769px) so there is nothing to un-do here.
───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-shell {
    padding: 0 1rem 2rem;
  }

  .sig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .sig-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  /* Checkout trust strip — mobile: 2 columns */
  .checkout-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Festive edit banner — mobile: near-full-screen, matching the craft-video section's scale */
  .festive-edit {
    min-height: 85vh;
    align-items: flex-end;
    margin-inline: -1rem;
  }

  /* festive-bg: responsive image handled via <picture> in HTML */

  .festive-content {
    max-width: 100%;
    padding: 2.5rem 1.5rem 3rem;
  }

  .festive-heading {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  /* Discover Designs — vertical strips on mobile */
  .design-track {
    flex-direction: column;
    overflow-x: unset;
    scroll-snap-type: none;
    gap: 8px;
    padding-bottom: 0;
  }

  .design-dots {
    display: none;
  }

  .design-card {
    flex: none;
    width: 100%;
    min-height: 216px;
  }

  /* Lifestyle — dots shown on mobile */
  .lifestyle-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .lifestyle-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 200ms ease, width 200ms ease, border-radius 200ms ease;
  }

  .lifestyle-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
  }

  /* Lifestyle story — mobile card sizing (~37vw = 15% smaller than 44vw fav-card) */
  .lifestyle-story {
    flex: 0 0 37vw;
  }

  .design-info {
    padding: 1.1rem 0.9rem 1.1rem 1rem;
    gap: 0.5rem;
  }

  .design-info h3 {
    font-size: clamp(1.08rem, 4.5vw, 1.62rem);
  }

  .design-info p {
    font-size: 0.72rem;
  }

  .design-explore {
    font-size: 0.6rem;
  }

  /* Section spacing — tighter on mobile */
  .section {
    padding: 1.25rem 0 1.5rem;
  }

  /* loom / sig / moment dots — shown on mobile */
  .loom-dots,
  .sig-dots,
  .moment-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .sig-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 200ms ease, width 200ms ease, border-radius 200ms ease;
  }

  .sig-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
  }

  /* loom-card inherits fav-card mobile sizing (flex: 0 0 44vw) */
  .loom-card {
    scroll-snap-align: start;
  }

  /* New Arrivals mobile — cards 32% larger than standard 44vw, tight gap */
  .section.fresh-loom:not(.sig-weaves) .loom-card {
    flex: 0 0 58vw;
  }

  .section.fresh-loom:not(.sig-weaves) .loom-track {
    gap: 8px;
  }

  /* Best Sellers mobile — cards 30% larger than standard 44vw */
  .favorites .fav-card {
    flex: 0 0 57vw;
  }

  .favorites .fav-track {
    gap: 8px;
  }

  /* Footer mobile */
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .lifestyle-text {
    font-size: 0.82rem;
  }

  .lifestyle-quote {
    padding: 0.6rem 0.1rem 0.25rem;
  }

  .trust-item p {
    max-width: none;
    font-size: 0.82rem;
  }

  /* Price + Add to Bag — single row, tighter styling to fit 44vw card */
  .fav-copy {
    padding: 0.5rem 0.65rem 0.6rem;
  }

  .fav-price {
    font-size: 0.9rem;
  }

  .fav-add {
    padding: 0.27rem 0.35rem;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
  }

  /* ── Mobile bottom navigation ── */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--mobile-nav-height);
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.06);
    align-items: stretch;
  }

  .mobile-bottom-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text);
    transition: color 180ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-nav-item.active {
    color: var(--accent);
  }

  .mobile-bottom-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-nav-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
  }

  .mobile-bottom-nav-label {
    display: none;
  }

  /* Push page content up so it isn't hidden behind the fixed bar */
  body {
    padding-bottom: var(--mobile-nav-height);
  }

  /* New Arrivals — compact subtitle + price spacing */
  .section.fresh-loom:not(.sig-weaves) .fav-subtitle {
    margin-top: 0.1rem;
  }

  .section.fresh-loom:not(.sig-weaves) .fav-action {
    margin-top: 0.15rem;
    padding-top: 0.15rem;
  }

  /* Top Picks — vertical stack on mobile, cards centred */
  .sig-weaves .loom-track {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 8px;
    align-items: center;
  }

  .sig-weaves .loom-card {
    flex: 0 0 auto;
    width: 92%;
  }

  /* Collections — vertical stack on mobile */
  .section.moments .moment-row {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 8px;
  }

  .section.moments .moment-card {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 3 / 2;
  }

}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE  (formerly product.css — merged into single stylesheet)
   All rules scoped to body.product-page.
   In WP: WooCommerce single-product pages receive body.single-product —
   add this to functions.php:
     add_filter('body_class', fn($c) => in_array('single-product',$c) ? array_merge($c,['product-page']) : $c);
═══════════════════════════════════════════════════════════════════════════ */

/* Override brand palette for the clean neutral PDP tone */
.product-page {
  --text:        #111111;
  --muted:       #555555;
  --accent:      #111111;
  --accent-soft: rgba(0, 0, 0, 0.15);
}

/* ── Announcement Bar (desktop only) ─────────────────────────────────── */
.announcement-bar {
  display: none;
}

@media (min-width: 769px) {
  .announcement-bar {
    display: block;
    background: #1a0f0c;
    color: rgba(255, 255, 255, 0.78);
    padding: 0.5rem 0;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--page-gutter);
  }

  .announcement-messages {
    display: flex;
    gap: 0.9rem;
    align-items: center;
  }

  .ann-sep {
    opacity: 0.35;
  }

  .announcement-actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
  }

  .announcement-actions a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 150ms ease;
  }

  .announcement-actions a:hover {
    color: #fff;
  }
}

/* ── Breadcrumb ───────────────────────────────────────────────────────── */
.w-pdp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 0.6rem;
  font-size: 0.68rem;
  color: var(--muted);
  gap: 1rem;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.breadcrumb-trail a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumb-trail a:hover {
  color: var(--accent);
}

.bc-current {
  color: var(--accent);
}

.bc-sep {
  color: rgba(0, 0, 0, 0.28);
}

.breadcrumb-nav {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}

.bc-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  transition: color 150ms ease;
}

.bc-nav-link:hover {
  color: var(--accent);
}

/* ── PDP Layout — mirrors hero-stage architecture ─────────────────────── */
/* Mobile: display:block — pdp-gallery-stage is naturally full-bleed.      */
/* Desktop: 2-column grid; gallery-stage sticky left, info-shell right.    */
.pdp-layout {
  display: block;
}

.pdp-info-shell {
  padding: 0 1rem 2rem;
}

@media (min-width: 769px) {
  .pdp-layout {
    display: grid;
    grid-template-columns: 61fr 39fr;
    column-gap: 3.5rem;
    align-items: start;
    padding: 0 var(--page-gutter);
  }

  .pdp-gallery-stage {
    position: sticky;
    top: calc(var(--header-height) + 0.6rem);
  }

  .gallery-slide-counter {
    display: none;
  }

  .pdp-info-shell {
    padding: 1rem 0 2rem;
  }
}

/* Laptop viewport: override aspect-ratio so the gallery fills available screen height */
@media (min-width: 769px) and (max-width: 1439px) {
  .gallery-main {
    aspect-ratio: unset;
    height: calc(100dvh - var(--header-height) - 2rem);
  }
}

@media (min-width: 1440px) {
  .pdp-layout {
    grid-template-columns: 71.5fr 28.5fr;
  }
}

@media (min-width: 1440px) {
  .gallery-main {
    aspect-ratio: 22 / 25;
  }

  /* Expand w-pdp-info spacing on large monitors */
  .w-pdp-description {
    margin-bottom: 1.5rem;
  }

  .w-pdp-price-block {
    margin-top: 0.6rem;
    margin-bottom: 1.2rem;
  }

  .w-pdp-specs-row {
    padding: 1.2rem 0;
    margin-bottom: 1.6rem;
  }

  .w-pdp-specs-item {
    gap: 0.65rem;
    padding: 0.6rem 1rem;
  }

  .w-pdp-specs-text {
    gap: 0.4rem;
  }

  .w-pdp-cta-row {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .btn-add-cart,
  .btn-buy-now {
    padding: 1.1rem 1rem;
  }

  .w-pdp-info-trust {
    padding-top: 1.3rem;
  }
}

/* ── Gallery ────────────────────────────────────────────────────────── */
.w-pdp-gallery {
  display: block;
}

.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 85vh;
  overflow: hidden;
  margin-bottom: 0;
  background: #f5f0eb;
}

.gallery-main-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-main-img .gallery-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main-img .gallery-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.gallery-main-img .gallery-main-video[hidden] {
  display: none;
}

.gallery-slide-counter {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

.gallery-wishlist {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
}

.gallery-wishlist svg {
  width: 1.7rem;
  height: 1.7rem;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

/* .gallery-collection-badge and .gallery-material-tag removed from image overlay — now .pdp-collection-badge / .pdp-material-tag in the info shell */

.gallery-expand {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.gallery-expand svg {
  width: 1.4rem;
  height: 1.4rem;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

/* Play/pause toggle — bottom center of gallery */
.gallery-play-toggle {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

.gallery-play-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
}

.gallery-play-toggle .icon-play {
  display: none;
}

.gallery-play-toggle.is-paused .icon-pause {
  display: none;
}

.gallery-play-toggle.is-paused .icon-play {
  display: flex;
}

.gallery-thumbs-row {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  width: 4.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.gallery-thumb-arrow {
  display: none;
}

.gallery-thumbs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: #f5f0eb;
  opacity: 0.72;
  transition: box-shadow 150ms ease, opacity 150ms ease, border-color 150ms ease, filter 150ms ease;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: #ffffff;
  filter: brightness(1.12);
  box-shadow: 0 0 0 2px var(--accent), 0 3px 10px rgba(0, 0, 0, 0.4);
}

.gallery-thumb .gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.5rem;
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  gap: 0.2rem;
}

.gallery-video-overlay svg {
  width: 1.6rem;
  height: 1.6rem;
}

/* ── Gallery lightbox ─────────────────────────────────────────────────── */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-lightbox.open {
  display: flex;
  opacity: 1;
}

.gallery-lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms ease, background 150ms ease;
  z-index: 1;
}

.gallery-lightbox-close:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
}

.gallery-lightbox-close svg {
  width: 1rem;
  height: 1rem;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.7));
  transition: color 150ms ease, transform 150ms ease;
  z-index: 1;
}

.gallery-lightbox-prev { left: 1rem; }
.gallery-lightbox-next { right: 1rem; }

.gallery-lightbox-prev:hover {
  color: #ffffff;
  transform: translateY(-50%) translateX(-4px);
}

.gallery-lightbox-next:hover {
  color: #ffffff;
  transform: translateY(-50%) translateX(4px);
}

.gallery-lightbox-prev svg,
.gallery-lightbox-next svg {
  width: 2.2rem;
  height: 2.2rem;
}

.gallery-lightbox-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.4rem;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.gallery-lightbox-dot.active {
  background: #ffffff;
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    display: none;
  }

  .gallery-lightbox-img {
    max-width: 100vw;
    max-height: 78vh;
  }
}


/* ── Craftsmanship Details ────────────────────────────────────────────── */
.craft-details-heading-outer,
.craft-details {
  display: none;
}

.craft-details-heading-outer {
  padding: 1.5rem 0 0.75rem;
}

.craft-details-kicker {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.craft-details {
  background: #F5F3F0;
  padding: 1.25rem var(--page-gutter);
}

.craft-details-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.craft-details-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.craft-details-image {
  flex: 0 0 26%;
  border-left: 1px solid rgba(45, 31, 22, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  gap: 0.8rem;
}

.craft-tagline-icon {
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.craft-tagline-icon svg {
  width: 3rem;
  height: 3rem;
}

.craft-tagline-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}

.craft-tagline-text {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.craft-attr {
  padding: 0.75rem 1rem 0;
  border-right: 1px solid rgba(45, 31, 22, 0.12);
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.65rem;
}

.craft-attr:first-child {
  padding-left: 0;
}

.craft-attr:last-child {
  border-right: none;
}

.craft-attr-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--accent-soft);
  display: flex;
  align-items: center;
}

.craft-attr-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}

.craft-attr-label {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.craft-attr-value {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-top: 0;
}

.craft-attr-desc {
  grid-column: 1 / -1;
  grid-row: 3;
  font-size: 0.72rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0.9rem 0 0;
  padding-bottom: 0.75rem;
}

/* ── Craft Journey (process steps) ──────────────────────────────────── */
.craft-journey {
  padding-bottom: 0.75rem;
}

.craft-journey-intro {
  text-align: center;
  margin-bottom: 1rem;
}

.craft-journey-heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.craft-journey-sub {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 72ch;
  margin: 0 auto;
}

.craft-journey-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.craft-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 0.25rem;
}

.craft-step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(172, 124, 100, 0.3);
  background: rgba(255, 248, 238, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  flex-shrink: 0;
}

.craft-step-circle svg {
  width: 1.4rem;
  height: 1.4rem;
}

.craft-step-connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-top: 0.9rem;
  color: var(--accent-soft);
}

.craft-step-connector svg {
  stroke: currentColor;
  fill: rgba(255, 248, 238, 0.9);
}

.craft-step-num {
  display: none;
}

.craft-step-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.craft-step-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 768px) {
  .craft-details-heading-outer {
    padding: 1.25rem 0 0.5rem;
  }

  .craft-details {
    padding: 1rem;
  }

  .craft-details-inner {
    flex-direction: column;
  }

  .craft-details-image {
    display: none;
  }

  .craft-details-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .craft-attr {
    padding: 0.75rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(45, 31, 22, 0.12);
  }

  .craft-attr:nth-child(even) { border-right: none; }
  .craft-attr:nth-child(n+3)  { border-bottom: none; }

  .craft-journey-steps {
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }

  .craft-journey-step {
    flex: 0 0 50%;
    max-width: none;
  }

  .craft-step-connector {
    display: none;
  }
}

/* ── The Details ─────────────────────────────────────────────────────── */
.product-design-details {
  padding: 1rem 0;
}

.design-details-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.design-details-kicker {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.design-details-rule {
  display: none;
}

.design-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.design-detail-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}

.design-detail-card .design-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.design-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 35%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.08) 100%);
}

.design-detail-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
}

.design-detail-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
}

.design-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.design-detail-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .design-details-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .design-detail-card {
    aspect-ratio: 16 / 9;
  }
}

/* ── Design Story ────────────────────────────────────────────────────── */
.design-story-header {
  display: none;
  padding: 0.75rem 0 0.5rem;
}

.design-story-kicker {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.design-story-section {
  background: #753c2b;
  padding: 0.6rem var(--page-gutter);
}

.design-story-inner {
  display: flex;
  align-items: stretch;
}

.design-story-attr {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.25rem 1.5rem;
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0;
  justify-content: center;
}

.design-story-attr:last-child {
  border-right: none;
}

.design-story-attr-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  display: flex;
  color: var(--footer-gold);
  width: 1.8rem;
  height: 1.8rem;
}

.design-story-attr-icon svg {
  width: 100%;
  height: 100%;
}

.design-story-attr-label {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--footer-gold);
  line-height: 1;
  padding-bottom: 0.2rem;
}

.design-story-attr-value {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.design-story-attr-text {
  grid-column: 1 / -1;
  grid-row: 3;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0.5rem 0 0;
}

.design-story-attr-cta {
  grid-column: 3;
  grid-row: 2;
  align-self: start;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--footer-gold);
  text-decoration: none;
  white-space: nowrap;
  display: block;
}

.design-story-attr-cta:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .design-story-inner {
    flex-wrap: wrap;
  }

  /* Base: all attrs get bottom border, no right border — 2 per row */
  .design-story-attr {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem 0.75rem;
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
  }

  /* KNOW MORE drops to its own full-width row on mobile */
  .design-story-attr-cta {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: auto;
    margin-top: 0.4rem;
  }

  /* Row 1: Design (left) | Weave (right) */
  .design-story-attr:nth-child(1) { border-right: 1px solid rgba(201, 169, 110, 0.2); }
  .design-story-attr:nth-child(2) { border-right: none; }

  /* Row 2: Cluster (left) | Loom Type (right) — last row, no bottom border */
  .design-story-attr:nth-child(3) { border-right: 1px solid rgba(201, 169, 110, 0.2); border-bottom: none; }
  .design-story-attr:nth-child(4) { border-right: none; border-bottom: none; }
}

/* ── Recently Viewed ─────────────────────────────────────────────────── */
.recently-viewed {
  padding: 1.5rem 0;
}

.recently-viewed-head {
  margin-bottom: 1.25rem;
}

.recently-viewed-title {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pdp-cta-accent);
  margin: 0;
}

.recently-viewed-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.recently-viewed-track::-webkit-scrollbar {
  display: none;
}

.rv-card {
  flex: 0 0 57vw;
  scroll-snap-align: start;
}

.rv-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.rv-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.rv-card-img-wrap .rv-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}

.rv-card:hover .rv-card-img {
  transform: scale(1.04);
}

.rv-card .fav-wish {
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  color: #ffffff;
  padding: 0.25rem;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.rv-card .fav-wish svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.rv-card .fav-wish:hover svg {
  fill: #ffffff;
}

.rv-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.55rem 0.65rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  z-index: 2;
}

.rv-card-name {
  font-family: var(--font-card-title);
  font-size: var(--font-card-title-size);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
}

.rv-card-price {
  font-family: var(--font-card);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

@media (max-width: 768px) {
  .rv-card-img-wrap {
    aspect-ratio: 3 / 2;
  }
}

/* ── Explore Similar Stories ─────────────────────────────────────────── */
.similar-stories {
  padding: 1.5rem 0;
}

.similar-stories-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.similar-stories-title {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pdp-cta-accent);
  margin: 0;
}

.similar-stories-filters {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.similar-filter {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(45, 31, 22, 0.2);
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.similar-filter.active,
.similar-filter:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.similar-stories-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .similar-stories .loom-track {
    gap: 3px;
  }
}

.similar-stories-track::-webkit-scrollbar {
  display: none;
}

.similar-card {
  flex: 0 0 44vw;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #F5F3F0;
}

.similar-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 0.65rem;
}

.similar-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}

.similar-card:hover .similar-card-img {
  transform: scale(1.04);
}

.similar-card-wish {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 0.25rem;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.similar-card-wish svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.similar-card-wish:hover svg {
  fill: #ffffff;
}

.similar-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.6rem 0.65rem 0.75rem;
}

.similar-card-name {
  font-family: var(--font-card-title);
  font-size: var(--font-card-title-size);
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.similar-card-price {
  font-family: var(--font-card);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

@media (max-width: 768px) {
  .similar-stories-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .similar-filter {
    font-size: 0.62rem;
    padding: 0.3rem 0.7rem;
  }
}

@media (min-width: 769px) {
  .similar-card {
    flex: 0 0 clamp(194px, 19.4vw, 262px);
  }

  .rv-card {
    flex: 0 0 clamp(194px, 19.4vw, 262px);
  }
}

/* ── Product Info ─────────────────────────────────────────────────────── */
.product-badge {
  font-family: var(--kicker-font);
  font-size: 0.82rem;
  font-weight: var(--kicker-weight);
  letter-spacing: var(--kicker-spacing);
  text-transform: uppercase;
  color: #B8922E;
  margin: 0 0 0.6rem;
}

.w-pdp-title {
  font-family: var(--font-ui);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  color: #111111;
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.product-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: normal;
  color: #888888;
  margin: 0 0 0.9rem;
}

.product-divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent-soft);
  margin: 0 0 1rem;
  font-size: 0.48rem;
}

.product-divider::before,
.product-divider::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent-soft);
  opacity: 0.5;
}

.w-pdp-description {
  font-size: 0.8rem;
  color: #555555;
  line-height: 1.75;
  margin: 0 0 0.6rem;
}

.w-pdp-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.5rem 0;
  margin-bottom: 0.6rem;
}

.w-pdp-specs-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.w-pdp-specs-item:first-child { padding-left: 0; }
.w-pdp-specs-item:last-child  { border-right: none; padding-right: 0; }

.w-pdp-specs-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #999999;
}

.w-pdp-specs-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.w-pdp-specs-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.w-pdp-specs-label {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdp-cta-accent);
}

.w-pdp-specs-value {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.product-handmade-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  margin-bottom: 1.2rem;
  font-size: 0.72rem;
  color: #555555;
  background: none;
  border: none;
}

.product-handmade-note svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #888888;
}

.product-secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.product-secure-checkout svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: var(--accent);
}

.product-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 1.4rem;
  text-align: center;
}

.product-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.product-feature-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  color: var(--accent);
}

.product-feature-item span {
  font-size: 0.58rem;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Purchase Box */
.w-pdp-purchase {
  padding: 0;
  margin-bottom: 1rem;
}

.ppbox-info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #F5F3F0;
  padding: 0.6rem 1.25rem 0.9rem;
  margin-bottom: 0.88rem;
}

.ppbox-price {
  flex: 2 2 0;
}

.ppbox-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.ppbox-facts {
  flex: 3 3 0;
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
  padding: 0 0.25rem;
}

.ppbox-fact {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ppbox-fact-icon {
  flex-shrink: 0;
  display: flex;
  color: var(--text);
}

.ppbox-fact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ppbox-fact-text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.35;
}

.ppbox-fair {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  max-width: 6rem;
}

.ppbox-fair-icon {
  display: flex;
  color: var(--text);
}

.ppbox-fair-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.ppbox-fair-text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

/* Trust bar */
.ppbox-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  margin-top: 0.75rem;
  padding: 0.4rem 0 0;
}

.ppbox-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ppbox-trust-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.ppbox-trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ppbox-trust-text strong {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.ppbox-trust-text span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
}

.ppbox-trust-divider {
  width: 1px;
  height: 2.4rem;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .ppbox-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 0;
    padding-top: 0.85rem;
  }

  .ppbox-trust-divider {
    display: none;
  }

  .ppbox-trust-item {
    gap: 0.5rem;
  }

  .ppbox-trust-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}

/* Price */
.w-pdp-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pdp-cta-accent);
  margin: 0 0 0.15rem;
  line-height: 1;
}

.w-pdp-price-note {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.product-callout {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #faf7f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
}

.product-callout-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.product-callout-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--accent-soft);
}

.product-callout-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}

.product-callout-text {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* CTA buttons */
.w-pdp-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-add-cart,
.btn-buy-now {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 180ms ease;
}

.btn-add-cart {
  background: var(--pdp-cta-accent);
  border: 1.5px solid var(--pdp-cta-accent);
  color: #ffffff;
}

.btn-add-cart svg {
  width: 1rem;
  height: 1rem;
}

.btn-buy-now {
  background: transparent;
  border: 1.5px solid var(--pdp-cta-accent);
  color: var(--pdp-cta-accent);
}

/* WooCommerce integration: style the real add-to-cart form/button to match .btn-add-cart */
.w-pdp-cta-row form.cart {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.w-pdp-cta-row form.cart .quantity {
  display: flex;
}

.w-pdp-cta-row form.cart .qty {
  width: 3.4rem;
  border: 1.5px solid var(--pdp-cta-accent);
  text-align: center;
  font-family: var(--font-ui);
}

/* .button.alt appended (already part of WC's own class list on this
   element — single_add_to_cart_button button alt) purely to match
   WooCommerce core's own ".woocommerce button.button.alt" rule on
   specificity; without it the two rules tie and whichever stylesheet
   happens to print last wins, which is why this button was showing WC's
   default purple instead of the brand colour set below. */
.w-pdp-cta-row form.cart .single_add_to_cart_button.button.alt {
  flex: 1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 180ms ease;
  background: var(--pdp-cta-accent);
  border: 1.5px solid var(--pdp-cta-accent);
  color: #ffffff;
}

.w-pdp-cta-row form.cart .single_add_to_cart_button.button.alt:hover {
  background: var(--accent-dark, var(--pdp-cta-accent));
  border-color: var(--accent-dark, var(--pdp-cta-accent));
}

.w-pdp-cta-row form.cart .single_add_to_cart_button.button.alt:disabled,
.w-pdp-cta-row form.cart .single_add_to_cart_button.button.alt.disabled {
  background: var(--accent-soft, var(--pdp-cta-accent));
  border-color: var(--accent-soft, var(--pdp-cta-accent));
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}

/* Variable products: WC's variations table + quantity/button wrapper sit
   inside the SAME form.cart the flex rule above targets, which otherwise
   squeezes the whole attribute table into the same row as qty + button.
   Stack the attribute row(s) above, full width, then let qty + button
   have their own row styled the same as a simple product's. */
.w-pdp-cta-row form.cart.variations_form {
  display: block;
}

.w-pdp-cta-row table.variations {
  width: 100%;
  margin: 0 0 1rem;
  border-collapse: collapse;
}

.w-pdp-cta-row table.variations tr {
  display: block;
}

.w-pdp-cta-row table.variations tr + tr {
  margin-top: 0.9rem;
}

.w-pdp-cta-row table.variations th.label,
.w-pdp-cta-row table.variations td.value {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}

.w-pdp-cta-row table.variations th.label {
  margin-bottom: 0.5rem;
}

.w-pdp-cta-row table.variations th.label label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.w-pdp-cta-row .reset_variations {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
}

.w-pdp-cta-row .single_variation_wrap {
  display: block;
  width: 100%;
}

.w-pdp-cta-row .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.product-delivery {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.product-delivery svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
}

/* Product-info trust row */
.w-pdp-info-trust {
  display: flex;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.w-pdp-info-trust-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0 0.6rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.w-pdp-info-trust-cell:first-child { padding-left: 0; }
.w-pdp-info-trust-cell:last-child  { border-right: none; padding-right: 0; }

.w-pdp-info-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  margin-bottom: 0.25rem;
}

.w-pdp-info-trust-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.w-pdp-info-trust-title {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  color: #222222;
  margin: 0;
  letter-spacing: 0.01em;
}

.w-pdp-info-trust-sub {
  font-size: 0.58rem;
  color: #888888;
  margin: 0;
  line-height: 1.4;
}

.product-action-links {
  display: none;
}

.product-action-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 150ms ease;
}

.product-action-link:hover {
  color: var(--accent);
}

.product-action-link svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.product-action-sep {
  color: rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
}

/* ── Why This Saree ─────────────────────────────────────────────────── */
.product-why {
  background: #faf7f4;
}

.product-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--accent-soft);
  font-size: 0.45rem;
  margin: -0.5rem 0 2.2rem;
}

.product-ornament::before,
.product-ornament::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--accent-soft);
  opacity: 0.45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.why-icon svg {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.why-item h3 {
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}

.why-item p {
  font-size: 0.66rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* ── Accordion ──────────────────────────────────────────────────────── */
.product-tabs {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 2.5rem 0;
}

.tab-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tab-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.tab-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tab-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.tab-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  min-width: 8rem;
}

.tab-sub {
  font-size: 0.7rem;
  color: var(--muted);
  flex: 1;
  text-align: left;
}

.tab-count {
  font-weight: 400;
  font-size: 0.68rem;
}

.tab-toggle {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 200ms ease;
}

.tab-item.open .tab-toggle {
  transform: rotate(45deg);
}

.tab-body {
  display: none;
  padding: 0 0 1.3rem 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.tab-item.open .tab-body {
  display: block;
}

/* Spec grid — two-column key/value table */
.spec-grid {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0;
}

.spec-label,
.spec-value {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.82rem;
  line-height: 1.5;
}

.spec-label {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  padding-right: 1rem;
}

.spec-value {
  font-family: var(--font-ui);
  color: var(--muted);
}

.spec-note {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Review form */
.review-write,
#respond.comment-respond {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* WooCommerce's default name/email fields for guest reviews (not in the
   original mockup, but required for unauthenticated visitors to submit) */
#respond.comment-respond .comment-form-author,
#respond.comment-respond .comment-form-email {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

#respond.comment-respond .comment-form-author input,
#respond.comment-respond .comment-form-email input {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.55rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  outline: none;
}

#respond.comment-respond .comment-form-author input:focus,
#respond.comment-respond .comment-form-email input:focus {
  border-color: var(--accent);
}

.review-write-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.review-write-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

/* CSS-only star rating — radio inputs reversed.
   Named .review-star-rating (not .star-rating) because WooCommerce's own
   stylesheet already claims .star-rating for its product-rating display
   widget (overflow:hidden, fixed 1em×5.4em box, float:right) — reusing that
   name clipped/disabled this widget since .woocommerce .star-rating (2
   classes) beats a plain .star-rating (1 class) regardless of load order. */
.review-star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 0.1rem;
  width: fit-content;
  margin-bottom: 1rem;
}

.star-input {
  display: none;
}

.star-label {
  font-size: 1.6rem;
  color: rgba(0,0,0,0.18);
  cursor: pointer;
  transition: color 80ms ease;
  line-height: 1;
}

.star-input:checked ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
  color: #B8922E;
}

.review-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  resize: vertical;
  margin-bottom: 0.85rem;
  outline: none;
}

.review-textarea:focus {
  border-color: var(--accent);
}

.review-submit {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 150ms ease;
}

.review-submit:hover {
  opacity: 0.88;
}

/* Review photo upload */
.review-photo-input {
  display: none;
}

.review-upload {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1px dashed var(--accent-soft);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  cursor: pointer;
  transition: border-color 120ms, color 120ms;
}

.review-upload-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.review-upload-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.review-upload-hint {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
}

.review-photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.review-photo-preview:empty {
  display: none;
}

.review-photo-thumb {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.review-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-photo-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 1.1rem;
  height: 1.1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 0.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* The mockup's Reviews tab has no "X reviews for [Product]" heading —
   that's WooCommerce's own single-product-reviews.php template output. */
.woocommerce-Reviews-title {
  display: none;
}

.tab-review {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tab-review:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tab-review-stars {
  color: #B8922E;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}

.tab-review-text {
  font-style: normal;
  margin: 0 0 0.3rem;
  line-height: 1.6;
}

.tab-review-author {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* ── Explore More ────────────────────────────────────────────────────── */
.explore-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.explore-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
}

.explore-track::-webkit-scrollbar {
  display: none;
}

.explore-card {
  flex: 0 0 calc(25% - 0.75rem);
  scroll-snap-align: start;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
}

.explore-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.explore-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.explore-wishlist {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.explore-wishlist:hover {
  background: #fff;
}

.explore-wishlist svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--text);
}

.explore-card-body {
  padding: 0.8rem 0.85rem 0.95rem;
}

.explore-card-body h3 {
  font-size: 0.88rem;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.explore-price {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.explore-add-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.5rem;
  background: #2d1209;
  border: none;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease;
}

.explore-add-cart:hover {
  background: var(--accent);
}

.explore-add-cart svg {
  width: 0.85rem;
  height: 0.85rem;
}

.explore-arrow {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 180ms ease;
}

.explore-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.explore-arrow svg {
  width: 1rem;
  height: 1rem;
}

/* ── Recently Viewed ─────────────────────────────────────────────────── */
.recent-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recent-track {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.recent-track::-webkit-scrollbar {
  display: none;
}

.recent-thumb {
  flex: 0 0 calc(16.666% - 0.5rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 150ms ease;
}

.recent-thumb-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-thumb:hover {
  opacity: 1;
}

/* ── Product Trust Strip ─────────────────────────────────────────────── */
.product-trust-strip {
  background: #faf7f4;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.product-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.product-trust-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.product-trust-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.product-trust-text {
  font-size: 0.62rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

/* ── Product Story ───────────────────────────────────────────────────── */
.product-story {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 0;
  overflow: hidden;
}

.story-left-col {
  position: relative;
  background-color: #1a1008;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 8.4rem;
}

.story-left-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.story-left-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
  z-index: 1;
}

.story-left-content {
  position: relative;
  z-index: 2;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.story-left-content .story-col-label { color: rgba(255, 255, 255, 0.72); }
.story-left-content .story-col-text  { color: rgba(255, 255, 255, 0.9); }
.story-left-content .story-col-link  {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.story-left-content .story-col-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.story-divider {
  background: rgba(0, 0, 0, 0.1);
  align-self: stretch;
}

.story-right-col {
  background: #ffffff;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.story-col-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
}

.story-col-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #444444;
  line-height: 1.5;
  margin: 0;
}

.story-col-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 1px;
  width: fit-content;
  transition: color 150ms ease, border-color 150ms ease;
}

.story-col-link:hover {
  color: #000000;
  border-color: #000000;
}

/* ── PDP Inspiration Banner ─────────────────────────────────────────── */
.pdp-inspiration {
  padding: 0;
}

.pdp-inspiration-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pdp-inspiration-kicker {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.pdp-inspiration-rule {
  display: none;
}

.pdp-inspiration-banner {
  position: relative;
  aspect-ratio: 5.9 / 1;
  background: #F5F3F0;
  overflow: hidden;
}

.pdp-inspiration-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #F5F3F0 48%, rgba(245, 243, 240, 0.75) 66%, transparent 82%);
  z-index: 1;
  pointer-events: none;
}

.pdp-inspiration-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 60%;
  height: 100%;
  padding: 0.6rem clamp(1rem, 2vw, 1.5rem) 0.4rem;
}

.pdp-inspiration-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pdp-inspiration-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pdp-inspiration-media .pdp-inspiration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-inspiration-heading {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--text);
  line-height: 1.2;
  margin: 0.75rem 0 0.5rem;
}

.pdp-inspiration-ornament {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: -0.05em;
  margin-bottom: 1.1rem;
}

.pdp-inspiration-body {
  font-family: var(--font-ui);
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  width: 100%;
  margin: 0;
}

.pdp-inspiration-cta {
  display: inline-block;
  margin-top: 0.6rem;
  margin-bottom: 0;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.pdp-inspiration-cta:hover {
  color: var(--text);
}


@media (max-width: 768px) {
  .pdp-inspiration-banner {
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
  }

  .pdp-inspiration-banner::before {
    display: none;
  }

  .pdp-inspiration-text {
    position: static;
    max-width: 100%;
    height: auto;
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .pdp-inspiration-media {
    position: relative;
    inset: auto;
    height: 220px;
  }

  .pdp-inspiration-media picture {
    height: 100%;
  }
}

/* ── Saree Feel Scale ──────────────────────────────────────────────────── */
.wv-feel-scale {
  display: flex;
  flex-direction: column;
  margin-top: var(--section-padding);
}

.wv-feel-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(200px, 52vw, 280px);
}

.wv-feel-media .wv-feel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-feel-text {
  background: var(--trust-strip-fill);
  padding: clamp(1rem, 3vw, 1.25rem) var(--page-gutter) clamp(1.25rem, 3.5vw, 1.5rem);
}

.wv-feel-kicker {
  display: block;
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  font-size: 0.85rem;
  color: var(--pdp-cta-accent);
}

.wv-feel-body {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  max-width: 42ch;
  margin: 1rem 0 1.25rem;
}

.wv-feel-scale-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  max-width: 30rem;
}

.wv-feel-scale-line {
  position: absolute;
  top: 1.8rem;
  left: 5px;
  right: 5px;
  height: 1px;
  background: var(--border);
}

.wv-feel-point {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.wv-feel-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.wv-feel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: block;
}

.wv-feel-point--active .wv-feel-label {
  color: var(--pdp-cta-accent);
  font-weight: 700;
}

.wv-feel-point--active .wv-feel-dot {
  width: 14px;
  height: 14px;
  background: var(--pdp-cta-accent);
  box-shadow: 0 0 0 3px var(--trust-strip-fill), 0 0 0 4px var(--pdp-cta-accent);
}

.wv-feel-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.wv-feel-marker-caret {
  color: var(--pdp-cta-accent);
  font-size: 0.55rem;
  line-height: 1;
}

.wv-feel-marker-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pdp-cta-accent);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .wv-feel-scale {
    flex-direction: row;
    height: clamp(190px, 15vw, 240px);
  }

  .wv-feel-media {
    width: 30%;
    height: 100%;
  }

  .wv-feel-text {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1rem, 2vw, 1.75rem) clamp(2rem, 4vw, 3.5rem);
  }

  .wv-feel-body {
    max-width: 100%;
  }

  .wv-feel-scale-track {
    max-width: 100%;
  }
}

/* ── Style This Saree ────────────────────────────────────────────────── */
.style-saree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.style-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: #faf6f1;
  padding: 1.2rem;
}

.style-card-img {
  width: 5rem;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.style-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.style-card-label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
}

.style-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.style-card-list li {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: #444444;
  line-height: 1.4;
}

.style-card-list li::before {
  content: '\00B7\00A0';
  color: #999999;
}

.style-card-link {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 1px;
  width: fit-content;
  transition: color 150ms ease, border-color 150ms ease;
}

.style-card-link:hover {
  color: #000000;
  border-color: #000000;
}

/* ── Tablet (≤1140px) ────────────────────────────────────────────────── */
@media (max-width: 1140px) {
  .pdp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .explore-card {
    flex: 0 0 calc(33.333% - 0.7rem);
  }

  .style-saree-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile (≤768px) ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .w-pdp-breadcrumb {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 1.2rem;
    padding: 0.65rem 0;
  }

  .breadcrumb-nav {
    display: none;
  }

  .w-pdp-gallery {
    display: block;
    position: static;
  }

  .gallery-main {
    /* Viewport-height anchor: full bleed between topbar (4rem) and fixed bottom nav. */
    aspect-ratio: unset;
    height: calc(100dvh - 4rem - var(--mobile-nav-height));
    max-height: none;
    margin-bottom: 0;
  }

  .gallery-thumbs-row {
    position: static;
    width: 100%;
    bottom: auto;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 0.35rem;
    overflow: visible;
  }

  .gallery-thumb-arrow {
    display: flex;
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 150ms ease, border-color 150ms ease;
  }

  .gallery-thumb-arrow svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .gallery-thumbs {
    flex-direction: row;
    flex: 1;
    gap: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .gallery-thumb {
    flex: 0 0 auto;
    width: 3.6rem;
    aspect-ratio: 1 / 1;
  }

  .w-pdp-info {
    padding: 0;
  }

  .w-pdp-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .w-pdp-specs-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .w-pdp-specs-item {
    padding: 0.5rem 0.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
  }

  /* Reset 2-col nth-child rules; rely on first/last-child only */
  .w-pdp-specs-item:nth-child(odd)  { padding-left: 0.5rem; }
  .w-pdp-specs-item:nth-child(even) { border-right: 1px solid rgba(0, 0, 0, 0.08); padding-right: 0.5rem; }
  .w-pdp-specs-item:nth-child(n+3)  { border-bottom: none; }
  .w-pdp-specs-item:first-child     { padding-left: 0; }
  .w-pdp-specs-item:last-child      { border-right: none; padding-right: 0; }

  .w-pdp-specs-icon svg { width: 1.2rem; height: 1.2rem; }

  .product-features-row {
    gap: 0.35rem;
  }

  .product-feature-icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .product-feature-item span {
    font-size: 0.52rem;
  }

  .w-pdp-cta-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-add-cart,
  .btn-buy-now {
    min-height: 48px;
    padding: 0.9rem 1rem;
  }

  .w-pdp-info-trust-cell {
    padding: 0 0.3rem;
  }

  .w-pdp-info-trust-icon svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .w-pdp-info-trust-title {
    font-size: 0.58rem;
  }

  .w-pdp-info-trust-sub {
    font-size: 0.5rem;
  }

  .product-action-links {
    gap: 0.5rem;
  }

  .product-action-sep {
    display: none;
  }

  .product-story {
    grid-template-columns: 1fr;
  }

  .story-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .story-right-col {
    padding: 1.5rem 1.2rem;
  }

  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tab-sub {
    display: none;
  }


  .explore-arrow {
    display: none;
  }

  .explore-card {
    flex: 0 0 72vw;
  }

  .recent-thumb {
    flex: 0 0 30vw;
  }

  .product-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }

  .product-trust-grid .product-trust-item:last-child {
    grid-column: 1 / -1;
  }

  .style-saree-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .style-card {
    padding: 1rem;
    gap: 0.85rem;
  }

  .style-card-img {
    width: 4.5rem;
  }

}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT LISTING PAGE (PLP)
═══════════════════════════════════════════════════════════════════════════ */

/* ── PLP Hero ─────────────────────────────────────────────────────────────── */
.plp-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 1;
}

.plp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.plp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,8,6,0.72) 0%, rgba(18,8,6,0.2) 60%, transparent 100%);
}

.plp-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(0.75rem, 2vh, 1.25rem) clamp(1.5rem, 6vw, 5rem) 0;
}


.plp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.plp-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 180ms;
}

.plp-breadcrumb a:hover { color: #fff; }

.plp-breadcrumb span { color: rgba(255,255,255,0.45); }

/* Below-hero breadcrumb — desktop hidden, mobile shown */
.plp-breadcrumb-below { display: none; }

.plp-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-top: auto;
  margin-bottom: 0.2rem;
}

.plp-hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  margin: 0;
  padding-bottom: clamp(0.75rem, 2vh, 1.25rem);
}

/* ── PLP Layout ──────────────────────────────────────────────────────────── */
.plp-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  align-items: start;
}

/* ── Filter Sidebar ──────────────────────────────────────────────────────── */
.plp-sidebar-inner {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding-right: 0.25rem;
  /* No max-height/overflow — full filter list flows into page height */
}

.plp-filter-header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.plp-filter-title {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
}

.filter-group {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.filter-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
  text-align: left;
}

.filter-group-head svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--muted);
  flex-shrink: 0;
}

.filter-group-body {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.3;
}

.filter-option input[type="checkbox"] {
  width: 0.85rem;
  height: 0.85rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.filter-option em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.75rem;
}

/* Color swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.color-swatch {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 150ms, border-color 150ms;
}

.color-swatch:hover,
.color-swatch.selected {
  transform: scale(1.15);
  border-color: var(--accent);
}

.color-swatch-more {
  background: #f0ece8;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 50%;
}

/* Price range */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.price-input {
  width: 100%;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text);
  background: #fff;
  border-radius: 2px;
  outline: none;
}

.price-input:focus { border-color: var(--accent); }

.price-inputs span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  flex-shrink: 0;
}

.price-slider {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* More button */
.filter-note {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--accent-soft);
  font-style: normal;
  margin: -0.25rem 0 0.4rem;
}

.filter-more {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
  text-align: left;
  margin-top: 0.15rem;
}

/* Clear all */
.plp-clear-all {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.6rem 1rem;
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 180ms, color 180ms;
}

.plp-clear-all:hover {
  background: var(--accent);
  color: #fff;
}

/* ── PLP Toolbar ─────────────────────────────────────────────────────────── */
.plp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.plp-count {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.plp-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.plp-sort {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
}

.plp-sort select {
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.3rem 1.6rem 0.3rem 0.6rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6253' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  cursor: pointer;
  outline: none;
}

.plp-view-toggle {
  display: flex;
  gap: 0.25rem;
}

.plp-view-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  transition: background 150ms, color 150ms, border-color 150ms;
}

.plp-view-btn.active,
.plp-view-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.plp-view-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile filter toggle */
.plp-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.plp-mobile-filter-btn svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* ── PLP Product Grid ─────────────────────────────────────────────────────── */
.plp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ── Card stretched-link overlay ─────────────────────────────────────────── */
/* .card-link covers the entire card; interactive buttons sit on z-index 2   */
.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* PLP Card */
.plp-card {
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(19, 10, 7, 0.06);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.plp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(19, 10, 7, 0.13);
}

.plp-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.plp-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.plp-card:hover .plp-card-img {
  transform: scale(1.03);
}

/* ADD TO BAG slide-up overlay — hidden; card body button handles add-to-bag */
.plp-card-atb {
  display: none;
}

.plp-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 3;
  font-family: var(--font-card);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 0;
}

.plp-badge--new      { background: var(--accent); color: #fff; }
.plp-badge--best     { background: var(--footer-gold); color: #fff; }
.plp-badge--excl     { background: #120806; color: var(--footer-gold); }

.plp-wish {
  position: absolute;
  z-index: 2;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  width: 1.8rem;
  height: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 180ms;
}

.plp-wish:hover { opacity: 0.7; }

.plp-wish svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.55));
}

.plp-wish--active svg {
  fill: #e0303a;
  stroke: #e0303a;
  filter: none;
}

.plp-card-body,
.wl-card-body {
  padding: 0.45rem 0.6rem 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.plp-card-name {
  font-family: var(--font-card-title);
  font-size: var(--font-card-title-size);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.15rem;
  flex: 0 0 100%;
}

.plp-card-variant {
  font-family: var(--font-card);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 0.25rem;
  flex: 0 0 100%;
}

.plp-card-price {
  font-family: var(--font-card);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
  flex: 1;
}

.plp-card-swatches {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.plp-swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: inline-block;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.plp-swatch:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--accent-soft);
}

.plp-swatch-more {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  color: var(--muted);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

/* ADD TO BAG — visible button in card body */
.plp-card-add {
  flex: 0 0 auto;
  width: auto;
  position: relative;
  z-index: 2;
  background: var(--footer-gold);
  color: #fff;
  border: none;
  font-family: var(--font-card);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  display: inline-block;
  transition: background 180ms ease;
}

.plp-card-add:hover { background: #b8934f; }
a.plp-card-add { text-decoration: none; text-align: center; }

/* ── Desktop-only card size reduction (~40%) ────────────────────────────── */
@media (min-width: 769px) {
  .plp-hero {
    aspect-ratio: 4 / 0.7;
  }

  .plp-hero-content {
    padding-bottom: 0;
  }

  .plp-card-img {
    aspect-ratio: 3 / 3.4; /* −15% height vs 3/4, width unchanged */
  }

  .plp-grid {
    gap: 0.4rem;
  }

  .plp-card-body,
  .wl-card-body {
    padding: 0.35rem 0.5rem 0.5rem;
    gap: 0;
  }

  .plp-card-name {
    font-size: var(--font-card-title-size);
    margin: 0 0 0.1rem;
  }

  .plp-card-variant {
    font-size: 0.7rem;
    margin: 0 0 0.2rem;
  }

  .plp-card-price {
    font-size: 0.78rem;
    margin: 0;
  }

  .plp-card-add {
    font-size: 0.6rem;
    padding: 0.38rem 0.6rem;
    letter-spacing: 0.12em;
  }
}

/* ── PLP Pagination ──────────────────────────────────────────────────────── */
.plp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2.5rem;
}

.plp-page-btn {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  border-radius: 0;
}

.plp-page-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.plp-page-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.plp-page-ellipsis {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0 0.2rem;
  user-select: none;
}

/* ── PLP Trust Bar ───────────────────────────────────────────────────────── */
.plp-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(0.6rem, 1.4vw, 1rem);
  padding-block: clamp(0.7rem, 1.5vh, 0.9rem);
  padding-inline: clamp(1rem, 3vw, 8rem);
  background: #F5F3F0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.plp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.plp-trust-icon {
  width: 1.9rem;
  height: 1.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(172, 124, 100, 0.08);
  border: 1px solid rgba(172, 124, 100, 0.3);
  display: grid;
  place-items: center;
  color: var(--accent-soft);
}

.plp-trust-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--accent-soft);
  stroke-width: 1.5;
}

.plp-trust-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.plp-trust-text span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
  margin: 0.08rem 0 0;
  display: block;
}

/* ── PLP Mobile Overrides ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .plp-hero {
    aspect-ratio: 2 / 1.3;
  }

  /* Bottom-align hero text on mobile */
  .plp-hero-content {
    padding-bottom: 0.5rem;
  }

  /* Hide hero breadcrumb; show below-trust version instead */
  .plp-hero-content .plp-breadcrumb { display: none; }

  .plp-breadcrumb-below {
    display: flex;
    padding: 0.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    margin-bottom: 0;
  }

  .plp-breadcrumb-below a { color: var(--muted); }
  .plp-breadcrumb-below span { color: var(--border); }

  .plp-trust-hide-mobile {
    display: none;
  }

  .plp-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1rem;
  }

  .plp-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(0,0,0,0.4);
  }

  .plp-sidebar.open {
    display: block;
  }

  .plp-sidebar-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80vw;
    max-width: 320px;
    background: #fff;
    padding: 1.25rem 1rem;
    overflow-y: auto;
    max-height: 100%;
  }

  .plp-mobile-filter-btn {
    display: flex;
  }

  .plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .plp-card-atb {
    display: none;
  }

  .plp-toolbar {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .plp-card-body {
    gap: 0 0.3rem;
  }

  .plp-card-add {
    font-size: 0.58rem;
    padding: 0.32rem 0.48rem;
    letter-spacing: 0.08em;
  }

  .plp-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding-block: 0.65rem;
    padding-inline: 0.75rem;
  }

  .plp-trust-icon {
    display: none;
  }

  .plp-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .plp-trust-text strong {
    font-size: 0.72rem;
  }

  .plp-trust-text span {
    font-size: 0.62rem;
    margin-top: 0.1rem;
  }
}

/* ── PLP Promise Strip ───────────────────────────────────────────────────── */
.plp-promise {
  display: grid;
  grid-template-columns: 1.1fr 2fr 1.2fr;
  overflow: hidden;
  background: #F5F3F0;
  height: 180px;
}

.plp-promise-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem clamp(1rem, 2.5vw, 1.75rem);
  border-right: 1px solid rgba(45, 31, 22, 0.14);
}

.plp-promise-heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

.plp-promise-sub {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.plp-promise-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 0.5rem 1.1rem;
  transition: background 180ms, color 180ms;
}

.plp-promise-cta:hover {
  background: var(--text);
  color: #fff;
}

.plp-promise-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid rgba(45, 31, 22, 0.14);
}

.plp-promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem 1.1rem;
  gap: 0.3rem;
  border-left: 1px solid rgba(45, 31, 22, 0.14);
}

.plp-promise-item:first-child {
  border-left: none;
}

.plp-promise-icon {
  margin-bottom: 0.5rem;
  color: var(--accent-soft);
}

.plp-promise-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: var(--accent-soft);
  stroke-width: 1.5;
}

.plp-promise-item strong {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.plp-promise-item span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.plp-promise-visual {
  overflow: hidden;
}

.plp-promise-visual .plp-promise-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .plp-promise {
    grid-template-columns: 1fr;
    height: auto;
  }

  .plp-promise-intro {
    border-right: none;
    border-bottom: 1px solid rgba(45, 31, 22, 0.14);
    padding: 1.5rem 1.25rem;
  }

  .plp-promise-features {
    border-right: none;
    padding: 0.5rem 0;
  }

  .plp-promise-item {
    padding: 1rem 0.75rem;
  }

  .plp-promise-visual {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WISHLIST / MY COLLECTION PAGE
═══════════════════════════════════════════════════════════════════════════ */

.wl-page {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

/* Breadcrumb */
.wl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.wl-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.wl-breadcrumb a:hover {
  color: var(--text);
}

/* Page header — centered editorial block */
.wl-page-head {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.wl-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.wl-title-heart {
  font-size: 0.7em;
  color: var(--muted);
  font-family: serif;
}

.wl-page-sub {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.wl-sub-em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

/* Count — compact, maroon, no border */
.wl-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--accent);
  width: 100%;
  justify-content: center;
}

.wl-count strong {
  color: var(--accent);
  font-weight: 700;
}

.wl-count svg {
  width: 0.8rem;
  height: 0.8rem;
  color: var(--accent);
}

/* ── Wishlist Grid ─────────────────────────────────────────────────────── */
.wl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* ── Wishlist Card ─────────────────────────────────────────────────────── */
.wl-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface);
  transition: box-shadow 200ms ease;
}

.wl-card:hover {
  box-shadow: 0 6px 24px rgba(45, 31, 22, 0.1);
  transform: translateY(-2px);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

/* Invisible overlay link — entire card is clickable via this */
.wl-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wl-card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.wl-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Material badge */
.wl-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.22rem 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

.wl-badge--silk        { background: #6b1f1f; }
.wl-badge--bestseller  { background: #1a1a1a; }
.wl-badge--new         { background: #1a4a22; }
.wl-badge--exclusive   { background: var(--text); }
.wl-badge--cotton-silk { background: #1d3059; }
.wl-badge--cotton      { background: #3d4a1a; }

/* Filled heart button (top-right) */
.wl-card-heart {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

.wl-card-heart svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: var(--accent);
  color: var(--accent);
}

/* Card info block */
.wl-card-info {
  padding: 0.75rem 0.7rem 0.4rem;
  flex: 1;
}

.wl-card-name {
  font-family: var(--font-card-title);
  font-size: var(--font-card-title-size);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wl-card-color {
  font-family: var(--font-card);
  font-size: 0.73rem;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.wl-card-price {
  font-family: var(--font-card);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.wl-card-saved {
  font-family: var(--font-card);
  font-size: 0.65rem;
  color: var(--muted);
  margin: 0;
}

/* Card action bar */
.wl-card-actions {
  display: flex;
  gap: 0.4rem;
  padding: 0 0.5rem 0.65rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.wl-card-bag {
  flex: 1;
  background: #9a7446;
  color: #fff;
  border: none;
  padding: 0.6rem 0.4rem;
  font-family: var(--font-card);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease;
}

.wl-card-bag:hover {
  background: #7e5e36;
}

.wl-card-delete {
  width: 2.2rem;
  min-height: 2.2rem;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: border-color 180ms, color 180ms;
}

.wl-card-delete:hover {
  border-color: #b03030;
  color: #b03030;
}

.wl-card-delete svg {
  width: 0.85rem;
  height: 0.85rem;
}

/* Empty hint */
.wl-empty-hint {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.wl-empty-hint a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* ── You May Also Love carousel ────────────────────────────────────────── */
.wl-recs {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.wl-recs-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.wl-recs-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.wl-recs-sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.wl-recs-viewall {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.wl-recs-viewall:hover {
  text-decoration: underline;
}

.wl-recs-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wl-recs-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.wl-recs-track::-webkit-scrollbar { display: none; }

/* Rec card */
.wl-rec-card {
  flex: 0 0 calc(16.666% - 0.85rem);
  min-width: 150px;
  scroll-snap-align: start;
  position: relative;
}

.wl-rec-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wl-rec-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.wl-rec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.wl-rec-card:hover .wl-rec-img {
  transform: scale(1.04);
}

.wl-rec-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.15rem;
}

.wl-rec-price {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* Carousel arrows */
.wl-recs-arrow {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}

.wl-recs-arrow svg {
  width: 1rem;
  height: 1rem;
}

.wl-recs-arrow:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Dots */
.wl-recs-dots,
.cart-recs-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.wl-recs-dot,
.cart-recs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 200ms;
}

.wl-recs-dot.active,
.cart-recs-dot.active {
  background: var(--accent);
}

/* ── Wishlist trust strip ─────────────────────────────────────────────── */
.wl-trust {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.wl-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-right: 1px solid var(--border);
}

.wl-trust-item:last-child {
  border-right: none;
}

.wl-trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-soft);
  flex-shrink: 0;
}

.wl-trust-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.wl-trust-item span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
  line-height: 1.4;
}

/* ── Wishlist share strip ─────────────────────────────────────────────── */
.wl-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.wl-share-copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wl-share-copy svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.wl-share-copy strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
}

.wl-share-copy span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.wl-share-action {
  display: flex;
  gap: 0.5rem;
  flex: 1 1 20rem;
  max-width: 26rem;
}

.wl-share-link {
  flex: 1;
  min-width: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(45, 31, 22, 0.03);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  padding: 0.55rem 0.75rem;
}

.wl-share-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 0.35rem;
  padding: 0 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 150ms;
}

.wl-share-btn:hover { opacity: 0.85; }

.wl-share-btn.is-copied { background: #2f6b3a; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  /* Suppress mobile line-breaks in trust strip copy */
  .wl-trust-item span br { display: none; }

  .wl-recs-arrow {
    display: flex;
  }

  /* Wishlist card body — saved date wraps to its own row below price+actions */
  .wl-card-saved {
    flex: 0 0 100%;
    margin: 0.2rem 0 0;
  }

  .wl-card-bag {
    font-size: 0.65rem;
    padding: 0.6rem 0.75rem;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 1140px) {
  .wl-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wl-rec-card {
    flex-basis: calc(25% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .wl-page {
    display: flex;
    flex-direction: column;
    padding-top: 1.25rem;
    padding-bottom: 6rem;
  }

  /* Move trust strip below the grid, just before "You may also love" */
  .wl-trust { order: 1; }
  .wl-recs  { order: 2; }

  .wl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wl-card-name {
    font-size: var(--font-card-title-size);
  }

  /* ── Wishlist card body — block layout on mobile; children stack naturally ── */
  .wl-card-body {
    display: block;
  }

  /* Remove side padding so MOVE TO BAG spans the full card width */
  .wl-card-actions {
    padding-left: 0;
    padding-right: 0;
  }

  .wl-card-saved {
    margin: 0.3rem 0 0;
  }

  .wl-card-delete {
    width: 1.76rem;
    min-height: 1.76rem;
  }

  .wl-card-bag {
    font-size: 0.5rem;
    padding: 0.42rem 0.25rem;
  }

  .wl-recs-head {
    flex-direction: column;
    gap: 0.25rem;
  }

  .wl-recs-viewall {
    align-self: flex-start;
  }

  .wl-rec-card {
    flex-basis: calc(50% - 0.5rem);
    min-width: 140px;
  }

  /* Trust strip — card box with column layout on mobile */
  .wl-trust {
    background: rgba(255, 248, 238, 0.55);
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
  }

  .wl-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 0.9rem 0.35rem;
  }

  .wl-trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .wl-trust-item strong {
    font-size: 0.65rem;
  }

  .wl-trust-item span {
    font-size: 0.6rem;
  }
}

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* ── Page header ── */
.cart-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.cart-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin: 0 0 0.25rem;
  line-height: 1.15;
}

.cart-subtitle {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.3rem;
}

.cart-continue-link:hover { opacity: 0.75; }

.cart-continue-link svg,
.cart-continue-link i { width: 0.9rem; height: 0.9rem; }

/* ── Desktop: wider page (20% less gutter) ── */
@media (min-width: 769px) {
  .cart-page {
    padding-left: calc(var(--page-gutter) * 0.8);
    padding-right: calc(var(--page-gutter) * 0.8);
  }
}

/* ── Two-column layout: items + summary ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 769px) {
  .cart-layout {
    grid-template-columns: 63% 35%;
    column-gap: 2%;
    align-items: stretch;
  }
}

/* ── Cart items list ── */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item {
  border: 1px solid var(--border);
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  padding: 0;
  align-items: stretch;
}

.cart-item-img-wrap {
  overflow: hidden;
  align-self: flex-start;
  aspect-ratio: 1/1;
  width: 14rem;
  flex-shrink: 0;
}

.cart-item-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.cart-item-name a {
  color: inherit;
  text-decoration: none;
}

.cart-item-name a:hover { color: var(--accent); }

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
}

/* ── Desktop cart item layout (placed after base rules to win the cascade) ── */
@media (min-width: 769px) {
  .cart-item-row {
    display: grid;
    grid-template-columns: 25vh 1fr;
    min-height: 25vh;
    align-items: start;
    padding: 0;
  }

  .cart-item-img-wrap {
    height: 25vh;
    width: 100%;
    align-self: start;
    aspect-ratio: unset;
  }

  .cart-item-body {
    padding: 0.6rem 0.75rem;
    gap: 0.3rem;
  }
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-item-name {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.1rem;
  line-height: 1.2;
}

.cart-item-collection {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0;
}

.cart-item-price {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.cart-item-gst {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
  margin: 0;
}

/* Qty stepper */
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text);
  line-height: 1;
}

.cart-qty-btn:hover { background: rgba(45,31,22,0.05); }

.cart-qty-btn:last-child { padding-right: 0.4rem; }

.cart-qty-val {
  width: 2rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* Attribute badges */
.cart-amount-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-price-qty {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-amount {
  flex-shrink: 0;
}

@media (min-width: 1440px) {
  .cart-amount-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

.cart-item-badges {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.4rem;
}

.cart-item-badge {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 248, 238, 0.92);
  border: none;
  padding: 0.22rem 0.6rem;
  border-radius: 0;
  white-space: nowrap;
}

/* Item footer */
.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0;
}

.cart-gift-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #8a6428;
  cursor: pointer;
}

.cart-gift-checkbox {
  width: 0.9rem;
  height: 0.9rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  text-decoration: none;
}

.cart-remove-btn:hover { color: var(--accent); }

/* ── "This will be a Gift" form ── */
.wv-gift-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 0.9rem;
  background: #faf7f4;
  border: 1px solid var(--border);
}

.wv-gift-fields[hidden] {
  display: none;
}

.wv-gift-field {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wv-gift-field--full { flex-basis: 100%; }

.wv-gift-field label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.wv-gift-field input,
.wv-gift-field select {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.6rem;
}

.wv-gift-field input:focus,
.wv-gift-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.wv-gift-disclaimer {
  flex-basis: 100%;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--muted);
}

.cart-gift-status {
  flex-basis: 100%;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  min-height: 1em;
}

.cart-gift-status--saved { color: var(--accent); }
.cart-gift-status--error { color: #b3261e; }

/* ── Empty cart ── */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 4rem 1rem;
  text-align: center;
  color: var(--muted);
}

.cart-empty svg { width: 2.5rem; height: 2.5rem; }

/* ── Order Summary panel ── */
.cart-summary {
  background: #faf7f4;
  border: 1px solid var(--border);
  padding: 1.5rem;
  height: 100%;
  box-sizing: border-box;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
}

.cart-summary-free {
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: 0.05em;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cart-summary-total span:first-child {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-summary-total-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.cart-summary-note {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  min-height: 44px;
  text-decoration: none;
}

.cart-checkout-btn:hover { background: var(--accent); }

.cart-checkout-btn svg,
.cart-checkout-btn i { width: 0.85rem; height: 0.85rem; }

/* ── Signature Packaging ── */
.cart-packaging {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: #faf7f4;
  border: 1px solid var(--border);
}

@media (min-width: 769px) {
  .cart-packaging {
    grid-template-columns: 70% 30%;
    align-items: stretch;
    min-height: 30vh;
    padding: 0;
  }

  .cart-packaging-left {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: stretch;
  }

  .cart-packaging-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

}

.cart-packaging-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

@media (min-width: 769px) {
  .cart-packaging-img {
    height: 30vh !important;
    width: 100%;
    aspect-ratio: unset;
  }
}

.cart-packaging-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.cart-packaging-desc {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.cart-packaging-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (min-width: 769px) {
  .cart-packaging-features {
    padding: 1.5rem;
    justify-content: center;
    border-left: 1px solid var(--border);
  }
}

.cart-packaging-feature {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
}

.cart-packaging-feature svg,
.cart-packaging-feature i {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Weavira Promise + Need Help strip ── */
.cart-promise-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--trust-strip-fill);
}

@media (min-width: 769px) {
  .cart-promise-strip {
    grid-template-columns: 120px 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }
}

.cart-promise-img {
  width: 100%;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.cart-promise-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.cart-promise-desc {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.cart-help {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-help-title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.cart-help-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cart-help-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-help-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  min-height: 44px;
}

.cart-help-action:hover { border-color: var(--accent); color: var(--accent); }

.cart-help-icon {
  display: flex;
  align-items: center;
}

.cart-help-icon svg,
.cart-help-icon i { width: 0.95rem; height: 0.95rem; }

/* ── Recently Viewed ── */
.cart-recs {
  margin-bottom: 2.5rem;
}

.cart-recs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cart-recs-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.cart-recs-viewall {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}


.cart-rec-card {
  display: flex;
  flex-direction: column;
}

.cart-rec-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.cart-rec-body {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-rec-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.15rem;
  line-height: 1.2;
}

.cart-rec-collection {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0;
}

.cart-rec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-rec-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cart-rec-wish {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 0.2rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.cart-rec-wish:hover { color: var(--accent); }
.cart-rec-wish svg, .cart-rec-wish i { width: 1rem; height: 1rem; }

/* ── Footer trust bar ── */
.cart-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cart-trust-bar-item {
  flex: 1 1 50%;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
}

.cart-trust-bar-item:last-child { border-right: none; }

@media (min-width: 769px) {
  .cart-trust-bar-item {
    flex: 1;
  }
}

.cart-page p,
.cart-page span { font-family: var(--font-ui); }

/* ── Mobile overrides ── */
@media (max-width: 768px) {
  .cart-page { padding-bottom: calc(var(--mobile-nav-height) + 2rem); }

  /* Uniform section gap across all cart sections */
  .cart-page-head,
  .cart-layout,
  .cart-packaging,
  .cart-promise-strip,
  .cart-recs { margin-bottom: 1.5rem; }

  .cart-page-head {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .cart-item-img-wrap { width: clamp(7.7rem, 42vw, 11.5rem); aspect-ratio: 3/4; flex-shrink: 0; }

  .cart-amount-badges { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  .cart-price-qty { width: 100%; justify-content: space-between; }

  .cart-item-footer { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  .cart-remove-btn { align-self: flex-end; margin-right: 0.5rem; }

  .cart-summary { height: auto; }

  .cart-packaging { padding-top: 2.5rem; }

  .cart-packaging-title { padding-top: 1rem; }

  .cart-promise-strip { background: var(--trust-strip-fill); }

  .cart-promise-img { display: block; margin: 0 auto; }

  .cart-promise-title,
  .cart-promise-desc { text-align: center; }

  .cart-packaging-img { max-width: 100%; aspect-ratio: 16/9; }

  .cart-promise-img { max-width: 80px; }

  .cart-trust-bar-item { flex: 1 1 50%; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

/* ── Body ── */
.ck-body {
  background: #faf7f4;
  min-height: 100vh;
}

/* ── Header ── */
.ck-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem clamp(1rem, 5vw, 3rem);
  background: #fff;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 30;
}

.ck-header-brand { display: flex; align-items: center; }

.ck-header .ck-header-logo {
  height: clamp(1.5rem, 2.2vw, 1.8rem);
  width: auto;
  display: block;
}

.ck-header-secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.ck-header-secure svg,
.ck-header-secure i { width: 0.85rem; height: 0.85rem; color: var(--muted); }

/* ── Step progress bar ── */
.ck-progress {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem clamp(1rem, 6vw, 5rem);
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.ck-progress::-webkit-scrollbar { display: none; }

.ck-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.ck-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(45,31,22,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
}

.ck-step--active .ck-step-num {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
  font-weight: 700;
}

.ck-step-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

.ck-step--active .ck-step-label {
  color: var(--accent);
  font-weight: 700;
}

.ck-step-line {
  flex: 1;
  min-width: clamp(1.5rem, 4vw, 4rem);
  height: 1px;
  background: var(--border);
  margin-top: 1rem;
}

/* ── Main two-column layout ── */
.ck-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem clamp(1rem, 5vw, 3rem) 3rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .ck-layout {
    grid-template-columns: 1fr 34%;
    gap: 2rem;
    align-items: start;
    padding-top: 2rem;
  }
}

/* ── Left: step panels ── */
.ck-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Active (expanded) panel */
.ck-panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.ck-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.ck-panel-sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

/* Auth grid — social | OR | phone+guest */
.ck-auth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 560px) {
  .ck-auth-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }
}

.ck-social-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ck-social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 180ms;
  min-height: 44px;
  text-align: left;
}

.ck-social-btn:hover { border-color: var(--muted); }

.ck-social-icon { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }

.ck-auth-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.ck-auth-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Method cards (phone, guest) */
.ck-method-card {
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
}

.ck-method-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.ck-method-head svg,
.ck-method-head i { width: 1rem; height: 1rem; color: var(--muted); flex-shrink: 0; }

.ck-method-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

/* Guest email field: WC's default .input-text border/focus-color rules
   outrank a plain class override (they include a "form" element in the
   selector), and combine with the browser's native focus ring into a
   doubled-up box — scope to the step panel's ID to win outright and match
   the other checkout inputs' look. (Step 1 lives outside #ck-checkout-form,
   see checkout.blade.php, so it can't be scoped to the form's ID.) */
#ck-panel-1 .ck-method-card--guest .woocommerce-input-wrapper {
  display: block;
  margin-top: 0.6rem;
}

#ck-panel-1 .ck-method-card--guest .input-text {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  padding: 0.65rem 0.75rem;
  outline: none;
}

#ck-panel-1 .ck-method-card--guest .input-text:focus {
  border-color: var(--accent);
  box-shadow: none;
}

/* Phone OTP input row */
.ck-phone-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  overflow: hidden;
}

.ck-phone-prefix {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  background: #faf7f4;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ck-phone-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.55rem 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
  min-width: 0;
}

.ck-phone-input::placeholder { color: var(--muted); }

.ck-otp-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  flex-shrink: 0;
  min-height: 44px;
  transition: opacity 180ms;
}

.ck-otp-btn:hover { opacity: 0.88; }

/* Privacy note strip */
.ck-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #faf7f4;
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

.ck-privacy-note svg,
.ck-privacy-note i {
  width: 1rem;
  height: 1rem;
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Collapsed accordion steps */
.ck-accordion {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: background 180ms;
}

.ck-accordion:hover { background: #faf7f4; }

.ck-accordion-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(172,124,100,0.08);
  border: 1px solid rgba(172,124,100,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ck-accordion-icon svg,
.ck-accordion-icon i { width: 0.9rem; height: 0.9rem; color: var(--accent-soft); }

.ck-accordion-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.ck-accordion-title {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.ck-accordion-sub {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
}

.ck-accordion-chevron { width: 1rem; height: 1rem; color: var(--muted); flex-shrink: 0; }

/* ── Right: Order summary ── */
.ck-summary {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.ck-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.ck-summary-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.15rem;
  letter-spacing: 0.02em;
}

.ck-summary-count {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}

.ck-edit-cart {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.ck-edit-cart:hover { text-decoration: underline; }

/* Order items */
.ck-order-items { display: flex; flex-direction: column; }

.ck-order-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.ck-order-img {
  width: clamp(3rem, 6vw, 3.8rem);
  height: clamp(3rem, 6vw, 3.8rem);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.ck-order-info { flex: 1; min-width: 0; }

.ck-order-name {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.2rem;
  line-height: 1.35;
}

.ck-order-meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.ck-dot { margin: 0 0.2rem; }

.ck-order-price {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

/* Summary rows */
.ck-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.ck-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
}

.ck-free { font-weight: 700; color: #2e7d32; letter-spacing: 0.04em; }

/* Total */
.ck-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
}

.ck-total-label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.ck-gst-note {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--muted);
  font-style: normal;
}

.ck-total-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Checkout: "Have a coupon?" notice (WC's default form-coupon.php),
   restyled to match the ck- brand instead of WC's default icon/notice
   look (which depends on WC's own icon font). ── */
.ck-main .woocommerce-form-coupon-toggle {
  margin-bottom: 1.25rem;
}

.ck-main .woocommerce-form-coupon-toggle .woocommerce-info {
  display: block;
  list-style: none;
  padding: 0.85rem 1.1rem;
  margin: 0;
  background: #faf7f4;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
}

.ck-main .woocommerce-form-coupon-toggle .woocommerce-info::before { content: none; }

.ck-main .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.ck-main .woocommerce-form-coupon {
  display: flex;
  gap: 0.6rem;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
}

.ck-main .woocommerce-form-coupon .form-row { margin: 0; flex: 1; }
.ck-main .woocommerce-form-coupon .form-row-last { flex: 0 0 auto; }

.ck-main .woocommerce-form-coupon .input-text {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  padding: 0.6rem 0.75rem;
}

.ck-main .woocommerce-form-coupon button {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 0.35rem;
  padding: 0 1.25rem;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Checkout: Delivery / Gift / Review steps ──
   Steps 2–4 render real WooCommerce fields/payment markup (not custom
   mockup HTML), so WC's own woocommerce.css supplies the baseline —
   this layer restyles it to match the ck- visual language. ── */
.ck-accordion[aria-expanded="true"] {
  background: #faf7f4;
  border-bottom-color: transparent;
}

.ck-accordion[aria-expanded="true"] .ck-accordion-chevron {
  transform: rotate(90deg);
}

.ck-accordion-chevron {
  transition: transform 200ms ease;
}

.ck-accordion-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 1.5rem clamp(1rem, 4vw, 2rem) 2rem;
  margin-top: -1px;
  margin-bottom: 1rem;
}

.ck-continue-btn {
  margin-top: 1.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 0.35rem;
  cursor: pointer;
  transition: opacity 150ms;
}

.ck-continue-btn:hover { opacity: 0.88; }

/* Delivery fields: lay WC's .form-row-first/.form-row-last pairs (and
   full-width rows) out on a simple 2-col grid. */
.ck-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.ck-field-grid .form-row-wide { grid-column: 1 / -1; }

.ck-field-grid .form-row {
  margin: 0 0 1rem;
}

/* WC ships .form-row-first/.form-row-last with width:47%+float (via a
   ".woocommerce-page form .form-row-first" rule) for its own 2-col layout
   — the grid above already handles the columns, so cancel those out or
   every field ends up squeezed inside its cell. Scoped to the form's ID
   since WC's own selector includes an element type, beating a plain
   class-only override on specificity. */
#ck-checkout-form .form-row-first,
#ck-checkout-form .form-row-last {
  width: 100%;
  float: none;
}

.ck-field-grid label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.ck-field-grid .input-text,
.ck-field-grid select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  padding: 0.65rem 0.75rem;
  background: #fff;
}

.ck-field-grid .input-text:focus,
.ck-field-grid select:focus {
  outline: none;
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .ck-field-grid { grid-template-columns: 1fr; }
  .ck-field-grid .form-row-first,
  .ck-field-grid .form-row-last { grid-column: 1 / -1; }
}

/* Gift Details step — reuses .wv-gift-fields/.wv-gift-field from the
   cart page, with a small item header above each one. */
.ck-gift-item { margin-bottom: 1.75rem; }
.ck-gift-item:last-of-type { margin-bottom: 0; }

.ck-gift-item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.ck-gift-item-img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 0.35rem;
  flex-shrink: 0;
}

.ck-gift-item-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* Review & Payment — hide WC's default line-item rows (the sidebar's
   .ck-order-items already shows them); keep the live totals footer. */
#order_review table.woocommerce-checkout-review-order-table thead,
#order_review table.woocommerce-checkout-review-order-table tbody {
  display: none;
}

#order_review table.woocommerce-checkout-review-order-table {
  width: 100%;
  border: none;
}

#order_review table.woocommerce-checkout-review-order-table tfoot tr {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

#order_review table.woocommerce-checkout-review-order-table tfoot .order-total {
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none;
}

#order_review table.woocommerce-checkout-review-order-table tfoot th { font-weight: 500; text-align: left; }
#order_review table.woocommerce-checkout-review-order-table tfoot .order-total th { font-weight: 700; }

#payment.woocommerce-checkout-payment {
  margin-top: 1.5rem;
  background: none;
}

#payment ul.payment_methods {
  list-style: none;
  padding: 0;
  border: none;
}

#payment ul.payment_methods li {
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

#payment ul.payment_methods li label { font-weight: 600; color: var(--text); }

#payment .payment_box {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 0.6rem;
}

#payment .form-row.place-order { padding: 0; margin-top: 1rem; }

#payment .woocommerce-terms-and-conditions-wrapper {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

#payment #place_order {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 0.35rem;
  cursor: pointer;
}

#payment #place_order:hover { opacity: 0.9; }

/* ── Checkout mobile overrides ── */
@media (max-width: 768px) {
  .ck-layout { padding-bottom: calc(var(--mobile-nav-height) + 2rem); }

  .ck-progress { padding: 0.85rem 1rem; }

  .ck-step-label { max-width: 4.5rem; white-space: normal; text-align: center; line-height: 1.2; }

  .ck-auth-or { padding: 0.25rem 0; }
}

/* ============================================================
   WEAVIRA MOMENTS STORIES  (wv-mom-story-*)
   Mobile only — moments.html standalone page.
   Hidden on desktop via media query.
   ============================================================ */

/* Body lock for full-screen stories page */
.moments-page {
  overflow: hidden;
  height: 100dvh;
  border-radius: 0;
}

.moments-page .wv-mom-story {
  border-radius: 0;
}

/* Section: full viewport, dark base */
.wv-mom-story {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #120806;
  touch-action: none; /* hand the whole drag gesture to the swipe JS instead of letting the browser treat it as a scroll/pan attempt */
}

/* Hidden on desktop */
@media (min-width: 769px) {
  .wv-mom-story { display: none; }
}

/* Gradient vignette over the media */
.wv-mom-story::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(18,8,6,0.55) 0%,
    transparent 22%,
    transparent 52%,
    rgba(18,8,6,0.85) 100%
  );
}

/* Single progress line */
.wv-mom-story-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.25);
  z-index: 5;
}

.wv-mom-story-progress-fill {
  height: 100%;
  width: 0%;
  background: #fff;
}

/* Header row */
.wv-mom-story-hd {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wv-mom-story-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.wv-mom-story-logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.wv-mom-story-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wv-mom-story-brand-name {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 0.1rem;
}

.wv-mom-story-brand-sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  margin: 0;
}

.wv-mom-story-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  touch-action: manipulation;
}

/* Media track */
.wv-mom-story-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wv-mom-story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.wv-mom-story-slide.active { opacity: 1; }

.wv-mom-story-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom CTA card */
.wv-mom-story-card {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(var(--mobile-nav-height) + 1.2rem);
  z-index: 4;
  background: rgba(18,8,6,0.8);
  border-radius: clamp(12px, 3vw, 18px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  touch-action: manipulation; /* allow taps on card despite section touch-action:none */
}

.wv-mom-story-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--footer-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--footer-gold);
}

.wv-mom-story-card-body {
  flex: 1;
  min-width: 0;
  padding-right: 0.85rem;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.wv-mom-story-card-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 3.8vw, 1.1rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.18rem;
}

.wv-mom-story-card-desc {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.wv-mom-story-card-cta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--footer-gold);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.02em;
}


/* ============================================================
   WEAVIRA MOMENTS EDITORIAL  (wv-mom-edit-*)
   Desktop only — hidden on mobile via base display:none. Mobile's
   "Moments" bottom-nav tab links to a dedicated full-screen page
   instead (see .wv-mom-story-* below + page-moments.blade.php).
   ============================================================ */

.wv-mom-edit,
.wv-mom-edit-hd {
  display: none;
}

@media (min-width: 769px) {
  .wv-mom-edit-hd {
    display: block;
    padding-top: var(--section-padding);
    margin-bottom: var(--section-padding);
  }

  .wv-mom-edit {
    display: block;
    padding-top: var(--section-padding);
    margin-bottom: var(--section-padding);
    margin-inline: calc(-1 * var(--page-gutter));
  }

  .wv-mom-edit-inner {
    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-template-rows: clamp(327px, 41.63vw, 498px);
    gap: clamp(0.3rem, 0.6vw, 0.45rem);
    align-items: stretch;
  }

  /* ── Centre: slider stage ── */
  .wv-mom-edit-stage {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--text);
  }

  .wv-mom-edit-track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .wv-mom-edit-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
  }

  .wv-mom-edit-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .wv-mom-edit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Caption overlay at bottom of main slide */
  .wv-mom-edit-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(18,8,6,0.82) 0%, transparent 100%);
  }

  .wv-mom-edit-caption-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.3rem;
  }

  .wv-mom-edit-caption-desc {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.82);
    margin: 0 0 0.6rem;
  }

  .wv-mom-edit-caption-link {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-decoration: none;
  }

  /* Dots */
  /* Corner label overlay */
  .wv-mom-edit-label {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(18,8,6,0.6);
  }

  .wv-mom-edit-dots {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    z-index: 2;
  }

  .wv-mom-edit-dot {
    width: clamp(22px, 3.5vw, 36px);
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 250ms;
  }

  .wv-mom-edit-dot.active { background: #fff; }

  /* Pause button */
  .wv-mom-edit-pause {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(18,8,6,0.55);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 180ms;
  }

  .wv-mom-edit-pause:hover { background: rgba(18,8,6,0.8); }

  /* Prev / Next arrows */
  .wv-mom-edit-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18,8,6,0.55);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 180ms;
  }

  .wv-mom-edit-arrow:hover { background: rgba(18,8,6,0.8); }

  .wv-mom-edit-arrow--prev { left: 0.65rem; }
  .wv-mom-edit-arrow--next { right: 0.65rem; }

  /* ── Right column: thumbnail stack ── */
  .wv-mom-edit-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .wv-mom-edit-thumb {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    background: var(--text);
    min-height: 0;
  }

  .wv-mom-edit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
  }

  .wv-mom-edit-thumb:hover img { transform: scale(1.04); }

  .wv-mom-edit-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,8,6,0.75) 0%, rgba(18,8,6,0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.65rem 0.75rem;
    transition: background 300ms;
  }

  .wv-mom-edit-thumb:hover .wv-mom-edit-thumb-overlay {
    background: linear-gradient(to top, rgba(18,8,6,0.88) 0%, rgba(18,8,6,0.2) 55%, transparent 100%);
  }

  .wv-mom-edit-thumb.active .wv-mom-edit-thumb-overlay {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: -2px;
  }

  .wv-mom-edit-thumb-title {
    font-family: var(--font-display);
    font-size: clamp(0.82rem, 1.1vw, 1rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.2;
    text-align: left;
  }

  .wv-mom-edit-thumb-link {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-align: left;
  }
}

/* ============================================================
   SEARCH OVERLAY  (wv-srch-*)
   JS-injected into <body>; works on every page.
   ============================================================ */

/* ── Container ── */
.wv-srch-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  pointer-events: none;
  visibility: hidden;
}

.wv-srch-overlay.open {
  pointer-events: auto;
  visibility: visible;
}

/* ── Backdrop (below panel, above page) ── */
.wv-srch-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 8, 6, 0.48);
  opacity: 0;
  transition: opacity 260ms ease;
}

.wv-srch-overlay.open .wv-srch-backdrop {
  opacity: 1;
}

/* ── White panel ── */
.wv-srch-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  max-height: calc(90vh - var(--header-height));
  overflow-y: auto;
  scrollbar-width: thin;
  transform: translateY(-1.5rem);
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  border-bottom: 1px solid var(--border);
}

.wv-srch-overlay.open .wv-srch-panel {
  transform: translateY(0);
  opacity: 1;
}

/* ── Search bar row ── */
.wv-srch-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem clamp(1rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.wv-srch-bar-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--muted);
  flex-shrink: 0;
}

.wv-srch-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text);
  background: transparent;
  min-width: 0;
}

.wv-srch-input::placeholder { color: var(--muted); }

.wv-srch-input::-webkit-search-cancel-button { display: none; }

.wv-srch-clear {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 160ms;
  flex-shrink: 0;
}

.wv-srch-clear svg { width: 1rem; height: 1rem; }

.wv-srch-clear:hover { color: var(--accent); }

/* ── Body: two-column layout ── */
.wv-srch-body {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .wv-srch-body {
    grid-template-columns: clamp(200px, 22vw, 260px) 1fr;
  }
}

/* ── Left column: popular searches ── */
.wv-srch-left {
  padding: 1.5rem clamp(1rem, 5vw, 3rem);
}

@media (min-width: 769px) {
  .wv-srch-left {
    border-right: 1px solid var(--border);
  }
}

/* Section labels */
.wv-srch-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

/* Chips */
.wv-srch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.wv-srch-chip {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(45, 31, 22, 0.05);
  border: 1px solid var(--border);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms, border-color 160ms, color 160ms;
  white-space: nowrap;
}

.wv-srch-chip:hover {
  background: rgba(109, 43, 33, 0.07);
  border-color: var(--accent-soft);
  color: var(--accent);
}

/* ── Right column: results ── */
.wv-srch-right {
  padding: 1.5rem clamp(1rem, 5vw, 3rem);
}

.wv-srch-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.wv-srch-viewall {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 160ms;
}

.wv-srch-viewall:hover { opacity: 0.75; }

/* Result list */
.wv-srch-results {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wv-srch-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms;
}

.wv-srch-result:first-child { border-top: 1px solid var(--border); }

.wv-srch-result:hover { background: rgba(45, 31, 22, 0.02); }

.wv-srch-result-img {
  width: clamp(3.2rem, 6vw, 4.5rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.wv-srch-result-info { flex: 1; min-width: 0; }

.wv-srch-result-name {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.wv-srch-result-meta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.wv-srch-result-price {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

/* Empty state */
.wv-srch-empty {
  padding: 1.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
}

.wv-srch-empty p { margin: 0 0 0.4rem; }

.wv-srch-browse {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.wv-srch-browse:hover { text-decoration: underline; }

/* ── Footer strip ── */
.wv-srch-footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

@media (min-width: 769px) {
  .wv-srch-footer {
    flex-direction: row;
  }
}

.wv-srch-footer-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem clamp(1rem, 5vw, 3rem);
  flex: 1;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 769px) {
  .wv-srch-footer-cell {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .wv-srch-footer-cell:last-child { border-right: none; }
}

.wv-srch-footer-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(172, 124, 100, 0.08);
  border: 1px solid rgba(172, 124, 100, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-soft);
}

.wv-srch-footer-icon svg { width: 0.9rem; height: 0.9rem; }

.wv-srch-footer-text p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.1rem;
}

.wv-srch-footer-link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.wv-srch-footer-link:hover { text-decoration: underline; }

/* ── Mobile overrides ── */
@media (max-width: 768px) {
  .wv-srch-overlay {
    top: 0;
    z-index: 1100;
  }

  .wv-srch-panel {
    max-height: 100vh;
    overflow-y: auto;
  }

  .wv-srch-body {
    display: flex;
    flex-direction: column;
  }

  .wv-srch-left { order: 1; padding-bottom: 0; }
  .wv-srch-right { order: 2; }
  .wv-srch-footer { order: 3; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERITAGE DESIGNS PAGE (heritage-designs.html)
   Reuses .plp-sidebar / .plp-grid / .plp-card / .plp-pagination — only the
   card body content differs from the product PLP (motif name + description
   + design count instead of price + add-to-bag).
───────────────────────────────────────────────────────────────────────────── */

.heritage-plp-heading {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.heritage-motif-card .plp-card-img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.heritage-motif-body {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.9rem 1rem 1.1rem;
}

.heritage-motif-desc {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.heritage-motif-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.3rem;
}

.heritage-motif-count {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
}

.heritage-motif-link {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.heritage-journal-bar {
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
  gap: 0.75rem 1.25rem;
  margin-bottom: var(--section-padding);
}

.heritage-journal-bar span:not(.heritage-journal-bar-cta) {
  flex: 1 1 auto;
  min-width: 240px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  font-size: 0.82rem;
  color: var(--text);
}

.heritage-journal-bar-cta {
  flex-shrink: 0;
  color: var(--accent);
}

@media (max-width: 768px) {
  .heritage-motif-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Journal archive (/journal/) — extends the same .plp-card grid pattern as
   Heritage Designs/Shop (image + kicker + title + excerpt + meta instead of
   design count, or price + add-to-bag).
───────────────────────────────────────────────────────────────────────────── */

.journal-listing-card .plp-card-img {
  aspect-ratio: 3 / 2;
  object-position: center;
}

.journal-listing-body {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.9rem 1rem 1.1rem;
}

.journal-listing-excerpt {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.journal-listing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.3rem;
}

.journal-listing-readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
}

.journal-listing-readtime svg {
  width: 0.75rem;
  height: 0.75rem;
}

.journal-listing-date {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .journal-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Review submission toast ─────────────────────────────────────────── */
.wv-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(0.5rem);
  background: var(--text);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 9999;
  max-width: 90vw;
}

.wv-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── WooCommerce default notices — recolored to the brand accent, kept as
   a no-JS fallback (the AJAX cart toast below is the primary experience) ── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--accent) !important;
}

.woocommerce-message::before {
  color: var(--accent) !important;
}

/* ── AJAX "added to cart" toast ──────────────────────────────────────── */
.wv-cart-toast {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  top: calc(var(--header-height) + 1rem);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  background: var(--surface, #fff);
  border-radius: 10px;
  box-shadow: var(--shadow, 0 20px 45px rgba(19, 10, 7, 0.18));
  border-top: 3px solid var(--accent);
  transform: translateY(-0.75rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.wv-cart-toast[hidden] {
  display: flex; /* keep laid out for the fade transition; JS toggles visibility, not display */
  visibility: hidden;
}

.wv-cart-toast.wv-cart-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.wv-cart-toast-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-cart-toast-close svg { width: 0.9rem; height: 0.9rem; }
.wv-cart-toast-close:hover { color: var(--accent); }

.wv-cart-toast-icon {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-cart-toast-icon svg { width: 1rem; height: 1rem; }

.wv-cart-toast-icon-error { display: none; }

.wv-cart-toast--error .wv-cart-toast-icon { background: #b3261e; }
.wv-cart-toast--error .wv-cart-toast-icon-success { display: none; }
.wv-cart-toast--error .wv-cart-toast-icon-error { display: block; }
.wv-cart-toast--error { border-top-color: #b3261e; }
.wv-cart-toast--error .wv-cart-toast-img,
.wv-cart-toast--error .wv-cart-toast-actions { display: none; }

.wv-cart-toast-img {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 6px;
  object-fit: cover;
  display: none;
}

.wv-cart-toast-img[src]:not([src=""]) { display: block; }

.wv-cart-toast-body { flex: 1; min-width: 0; padding-right: 1rem; }

.wv-cart-toast-title {
  margin: 0 0 0.15rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.wv-cart-toast-product {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wv-cart-toast-actions {
  flex-basis: 100%;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.wv-cart-toast-cart,
.wv-cart-toast-checkout {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wv-cart-toast-cart {
  color: var(--accent);
  border: 1px solid var(--border);
  text-decoration: none;
}

.wv-cart-toast-cart:hover { background: var(--trust-strip-fill, #f5f3f0); }

.wv-cart-toast-checkout {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.wv-cart-toast-checkout:hover { background: var(--accent-dark); }

@media (max-width: 480px) {
  .wv-cart-toast {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}

/* ── PDP variation swatches — same visual language as the header's
   "Shop by Colour" list, in place of a plain <select> dropdown ── */
.wv-variation-swatches select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wv-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wv-swatch {
  padding: 0.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  line-height: 0;
}

.wv-swatch-dot {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.wv-swatch:hover .wv-swatch-dot {
  transform: scale(1.1);
}

.wv-swatch--selected .wv-swatch-dot {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--accent);
}

.woocommerce #reviews #comments ol.commentlist{
  padding-left: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MY ACCOUNT
   Styles WooCommerce's default myaccount templates (overridden in
   woocommerce/myaccount/*.php) — no html/ mockup exists for this page, so
   layout/spacing follows the same conventions already used on Cart/Checkout
   (.page-shell, .wl-breadcrumb, .ck-field-grid, .ck-order-item, card style
   borrowed from .cart-summary) rather than a bespoke design.
───────────────────────────────────────────────────────────────────────────── */

.myaccount-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.myaccount-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.myaccount-nav-card {
  background: #faf7f4;
  border: 1px solid var(--border);
  padding: 0.5rem;
}

.myaccount-nav-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.myaccount-nav-item a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 150ms ease, color 150ms ease;
}

.myaccount-nav-item a:hover {
  background: rgba(0, 0, 0, 0.03);
}

.myaccount-nav-item.is-active a {
  background: var(--accent);
  color: #fff;
}

.myaccount-content {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.myaccount-content h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1rem;
}

@media (min-width: 900px) {
  .myaccount-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .myaccount-nav-card {
    flex: 0 0 220px;
    position: sticky;
    top: 1.5rem;
  }

  .myaccount-content {
    flex: 1 1 0;
    padding: 2rem;
  }
}

/* ── Dashboard ── */
.myaccount-welcome p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.myaccount-welcome-sub {
  color: var(--muted);
  font-size: 0.8rem;
}

.myaccount-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.myaccount-quick-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem;
  background: #faf7f4;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 150ms ease;
}

.myaccount-quick-link:hover {
  border-color: var(--accent);
}

.myaccount-quick-link-icon {
  color: var(--accent);
}

.myaccount-quick-link-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.myaccount-quick-link-title {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.myaccount-quick-link-desc {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.myaccount-recent-order {
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.myaccount-recent-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.myaccount-recent-order-head h2 { margin: 0; }

.myaccount-recent-order-view {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.myaccount-recent-order-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.4rem 0;
}

.myaccount-recent-order-row span { color: var(--muted); }

/* ── Order status pill — shared by dashboard, orders list, view-order ── */
.myaccount-order-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--trust-strip-fill, #faf7f4);
  color: var(--text);
}

.myaccount-order-status--completed,
.myaccount-order-status--processing {
  background: rgba(60, 130, 90, 0.12);
  color: #3c825a;
}

.myaccount-order-status--cancelled,
.myaccount-order-status--failed,
.myaccount-order-status--refunded {
  background: rgba(180, 60, 60, 0.1);
  color: #b43c3c;
}

.myaccount-order-status--pending,
.myaccount-order-status--on-hold {
  background: rgba(180, 140, 40, 0.12);
  color: #b48c28;
}

/* ── Orders list ── */
.myaccount-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.myaccount-order-card {
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
}

.myaccount-order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.myaccount-order-number {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.myaccount-order-date {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.myaccount-order-card-body {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.myaccount-order-total { font-weight: 700; }

.myaccount-order-card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.myaccount-order-action {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.myaccount-order-action--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.myaccount-orders-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.myaccount-orders-page-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

/* ── View Order ── */
.myaccount-order-intro {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.myaccount-order-intro mark {
  background: none;
  color: var(--text);
  font-weight: 700;
}

.myaccount-view-order-items { margin-bottom: 1rem; }

.myaccount-view-order-totals { margin-bottom: 0.5rem; }

.myaccount-view-order-payment span:first-child { color: var(--muted); }

.myaccount-view-order-total { margin-bottom: 1.75rem; }

.myaccount-order-address address {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.7;
}

.myaccount-order-notes { margin-top: 1.75rem; }

.myaccount-order-notes ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.myaccount-order-notes li {
  border-left: 2px solid var(--border);
  padding-left: 0.85rem;
}

.myaccount-order-note-meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.myaccount-order-note-body {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
}

/* ── Addresses ── */
.myaccount-addresses-intro {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.myaccount-addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.myaccount-addresses--two-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.myaccount-address-card {
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
}

.myaccount-address-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.myaccount-address-card-head h2 { margin: 0; }

.myaccount-address-edit {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.myaccount-address-card address {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.7;
}

.myaccount-address-empty {
  color: var(--muted);
  font-style: italic;
}

/* ── Shipping address book (Home / Office / ...) ── */
.myaccount-shipping-book {
  margin-top: 1.75rem;
}

.myaccount-shipping-book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.myaccount-shipping-book-title {
  margin: 0;
}

.myaccount-address-default-badge {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.15rem 0.4rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.myaccount-address-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.85rem;
}

.myaccount-address-set-default,
.myaccount-address-delete {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
}

.myaccount-address-set-default:hover,
.myaccount-address-delete:hover {
  color: var(--accent);
}

/* ── Forms (Edit Address / Account Details / Login) — reuses .ck-field-grid,
   extending its float-cancel rule (originally scoped to #ck-checkout-form)
   to the class itself so My Account forms get the same treatment. ── */
.ck-field-grid.myaccount-field-grid .form-row-first,
.ck-field-grid.myaccount-field-grid .form-row-last {
  width: 100%;
  float: none;
}

.myaccount-field-note {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.myaccount-password-fieldset {
  border: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.myaccount-password-fieldset legend {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 0.85rem;
}

.myaccount-save-btn {
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  border: none;
  border-radius: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: opacity 150ms;
}

.myaccount-save-btn:hover { opacity: 0.88; }

/* ── Login / Register — split brand-image panel + tabbed card ── */
.myaccount-auth-shell {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 3rem;
}

.myaccount-auth-image {
  position: relative;
  min-height: 200px;
}

.myaccount-auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.myaccount-auth-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.65));
}

.myaccount-auth-image-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.5rem;
}

.myaccount-auth-image-kicker {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--footer-gold, #d9b878);
}

.myaccount-auth-image-text p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  max-width: 26ch;
}

.myaccount-auth-card {
  padding: 1.75rem;
}

.myaccount-auth-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.myaccount-auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.myaccount-auth-tab {
  flex: 1 1 0;
  padding: 0.85rem 0.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.myaccount-auth-tab.is-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.myaccount-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.myaccount-auth-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.myaccount-auth-field {
  margin: 0;
}

.myaccount-auth-field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.myaccount-auth-field label svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--accent);
}

.myaccount-auth-field .input-text {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
}

.myaccount-auth-field .input-text:focus {
  outline: none;
  border-color: var(--accent);
}

.myaccount-login-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.myaccount-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
}

.myaccount-lost-password {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--accent);
}

.myaccount-reg-note {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.myaccount-save-btn--block {
  width: 100%;
  margin-top: 0.25rem;
}

@media (min-width: 769px) {
  .myaccount-auth-shell {
    flex-direction: row;
    min-height: 560px;
  }

  .myaccount-auth-image {
    flex: 0 0 40%;
    min-height: auto;
  }

  .myaccount-auth-card {
    flex: 1 1 0;
    padding: 3rem clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ── Empty state (no orders yet, invalid order) ── */
.myaccount-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 3rem 1.5rem;
  color: var(--muted);
}

.myaccount-empty-state svg {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--accent-soft, var(--accent));
}

.myaccount-empty-state p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 0;
}

.myaccount-empty-cta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}


/* thank you page */

/* ===============================
   WooCommerce Thank You Page
   Premium / Minimal / Modern
   =============================== */

.woocommerce-order {
	--ty-card: var(--surface, #ffffff);
	--ty-card-alt: var(--trust-strip-fill, #fcfaf7);
	--ty-text: var(--text);
	--ty-muted: var(--muted);
	--ty-border: var(--border);
	--ty-border-strong: rgba(45, 31, 22, 0.2);
	--ty-accent: var(--accent);
	--ty-accent-2: var(--accent-soft, var(--accent));
	--ty-success-bg: linear-gradient(135deg, rgba(109, 43, 33, 0.06), rgba(172, 124, 100, 0.08));
	--ty-shadow: var(--shadow, 0 20px 60px rgba(20, 16, 15, 0.06));
	--ty-radius: 22px;
	--ty-radius-sm: 14px;
	--ty-container: 1180px;

	max-width: var(--ty-container);
	margin: 48px auto 80px;
	padding: 0 20px;
	color: var(--ty-text);
}

/* page heading / notice area */
.woocommerce-order p:first-of-type {
	margin: 0 0 14px;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ty-muted);
}

.woocommerce-order .woocommerce-notice,
.woocommerce-order .woocommerce-thankyou-order-received {
	margin: 0 0 24px;
	padding: 28px 32px;
	border: 1px solid rgba(109, 43, 33, 0.10);
	border-radius: var(--ty-radius);
	background: var(--ty-success-bg);
	box-shadow: var(--ty-shadow);
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.15;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ty-text);
}

/* order overview */
.woocommerce-order ul.woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	border: 0;
}

.woocommerce-order ul.woocommerce-order-overview::before,
.woocommerce-order ul.woocommerce-order-overview::after {
	display: none;
}

.woocommerce-order ul.woocommerce-order-overview li {
	margin: 0;
	padding: 18px 18px 16px;
	min-width: 0;
	border: 1px solid var(--ty-border);
	border-radius: var(--ty-radius-sm);
	background: var(--ty-card);
	box-shadow: 0 8px 24px rgba(20, 16, 15, 0.03);
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ty-muted);
}

.woocommerce-order ul.woocommerce-order-overview li strong,
.woocommerce-order ul.woocommerce-order-overview li span,
.woocommerce-order ul.woocommerce-order-overview li .amount {
	display: block;
	margin-top: 8px;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--ty-text);
	font-weight: 600;
	word-break: break-word;
}

/* payment note */
.woocommerce-order > p:not(.woocommerce-notice):not(.woocommerce-thankyou-order-received):not(:first-of-type) {
	margin: 0 0 34px;
	padding: 16px 20px;
	border-left: 3px solid var(--ty-accent-2);
	border-radius: 0 12px 12px 0;
	background: var(--ty-card-alt);
	color: var(--ty-text);
	font-size: 15px;
}

/* section headings */
.woocommerce-order h2,
.woocommerce-order h3 {
	margin: 40px 0 18px;
	font-size: clamp(34px, 4vw, 58px);
	line-height: 0.98;
	letter-spacing: -0.03em;
	font-weight: 500;
	color: var(--ty-text);
}

/* cards around tables and addresses */
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
	margin: 0 0 28px;
	padding: 28px;
	background: var(--ty-card);
	border: 1px solid var(--ty-border);
	border-radius: var(--ty-radius);
	box-shadow: var(--ty-shadow);
	overflow: hidden;
}

/* order details table */
.woocommerce-order table.woocommerce-table,
.woocommerce-order table.shop_table {
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	background: transparent;
}

.woocommerce-order table.woocommerce-table thead th,
.woocommerce-order table.shop_table thead th {
	padding: 0 0 16px;
	border: 0;
	border-bottom: 1px solid var(--ty-border-strong);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ty-muted);
	background: transparent;
}

.woocommerce-order table.woocommerce-table tbody td,
.woocommerce-order table.woocommerce-table tfoot td,
.woocommerce-order table.woocommerce-table tfoot th,
.woocommerce-order table.shop_table tbody td,
.woocommerce-order table.shop_table tfoot td,
.woocommerce-order table.shop_table tfoot th {
	padding: 18px 0;
	border: 0;
	border-bottom: 1px solid var(--ty-border);
	background: transparent;
	color: var(--ty-text);
	vertical-align: middle;
}

.woocommerce-order table.shop_table tbody tr:last-child td,
.woocommerce-order table.shop_table tfoot tr:last-child td,
.woocommerce-order table.shop_table tfoot tr:last-child th {
	border-bottom: 0;
}

.woocommerce-order table.shop_table a {
	color: var(--ty-text);
	text-decoration: none;
	border-bottom: 1px solid rgba(109, 43, 33, 0.25);
	transition: all 0.25s ease;
}

.woocommerce-order table.shop_table a:hover {
	color: var(--ty-accent);
	border-bottom-color: var(--ty-accent);
}

.woocommerce-order table.shop_table tfoot th,
.woocommerce-order table.shop_table tfoot td {
	font-weight: 600;
}

.woocommerce-order table.shop_table tfoot tr:last-child th,
.woocommerce-order table.shop_table tfoot tr:last-child td {
	padding-top: 22px;
	font-size: 20px;
}

/* addresses */
.woocommerce-customer-details address {
	margin: 0;
	padding: 22px 24px;
	border: 1px solid var(--ty-border);
	border-radius: var(--ty-radius-sm);
	background: var(--ty-card-alt);
	font-style: normal;
	line-height: 1.85;
	color: var(--ty-text);
}

.woocommerce-customer-details address p {
	margin: 0 0 10px;
}

.woocommerce-customer-details address:last-child,
.woocommerce-customer-details address p:last-child {
	margin-bottom: 0;
}

/* email and phone icons row if theme outputs them */
.woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce-customer-details .woocommerce-customer-details--email {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	color: var(--ty-text);
}

/* subtle motion */
.woocommerce-order ul.woocommerce-order-overview li,
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.woocommerce-order ul.woocommerce-order-overview li:hover,
.woocommerce-order .woocommerce-order-details:hover,
.woocommerce-order .woocommerce-customer-details:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 60px rgba(20, 16, 15, 0.08);
	border-color: rgba(36, 25, 24, 0.16);
}

/* responsive */
@media (max-width: 1100px) {
	.woocommerce-order ul.woocommerce-order-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.woocommerce-order {
		margin: 28px auto 56px;
		padding: 0 14px;
	}

	.woocommerce-order .woocommerce-notice,
	.woocommerce-order .woocommerce-thankyou-order-received,
	.woocommerce-order .woocommerce-order-details,
	.woocommerce-order .woocommerce-customer-details {
		padding: 20px;
		border-radius: 18px;
	}

	.woocommerce-order ul.woocommerce-order-overview {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.woocommerce-order ul.woocommerce-order-overview li strong,
	.woocommerce-order ul.woocommerce-order-overview li span,
	.woocommerce-order ul.woocommerce-order-overview li .amount {
		font-size: 18px;
	}

	.woocommerce-order h2,
	.woocommerce-order h3 {
		margin: 28px 0 14px;
		font-size: clamp(28px, 9vw, 42px);
	}

	.woocommerce-order table.shop_table thead {
		display: none;
	}

	.woocommerce-order table.shop_table tbody tr,
	.woocommerce-order table.shop_table tfoot tr {
		display: grid;
		grid-template-columns: 1fr;
		padding: 14px 0;
	}

	.woocommerce-order table.shop_table tbody td,
	.woocommerce-order table.shop_table tfoot td,
	.woocommerce-order table.shop_table tfoot th {
		display: block;
		padding: 6px 0;
		text-align: left !important;
		border: 0;
	}

	.woocommerce-customer-details address {
		padding: 18px;
		line-height: 1.7;
	}
}


/* mobile number styles */
/* WooCommerce phone field */
.woocommerce-form-row .iti {
  position: relative;
  display: block;
  width: 100%;
}

.woocommerce-form-row .iti input[type="tel"],
.woocommerce-form-row .iti input[type="text"],
.woocommerce-form-row .iti input.woocommerce-Input {
  width: 100%;
  min-height: 44px;
  padding-right: 12px;
  padding-left: 78px !important;
  box-sizing: border-box;
}

/* Country selector area */
.woocommerce-form-row .iti__flag-container {
  left: 0;
  right: auto;
}

.woocommerce-form-row .iti__selected-flag {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px 0 12px;
  background: transparent;
  border: 0;
}

.woocommerce-form-row .iti__flag {
  margin-right: 8px;
}

.woocommerce-form-row .iti__selected-dial-code {
  margin-left: 0;
  font-size: 14px;
  line-height: 1;
  color: #111;
  white-space: nowrap;
}

/* Input appearance */
.woocommerce-form-row #reg_with_mob {
  border: 1px solid #8c8f94;
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
}

/* Focus state */
.woocommerce-form-row #reg_with_mob:focus {
  border-color: #2271b1;
  outline: 0;
  box-shadow: 0 0 0 1px #2271b1;
}

/* Error text */
.woocommerce-form-row .sa_phone_error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #d63638;
}

/* Hide duplicate hidden phone field if plugin injects one inside the same wrapper */
.woocommerce-form-row .iti > input[type="hidden"][name="billing_phone"] {
  display: none !important;
}

/* Small screens */
@media (max-width: 480px) {
  .woocommerce-form-row .iti input[type="tel"],
  .woocommerce-form-row .iti input[type="text"],
  .woocommerce-form-row .iti input.woocommerce-Input {
    padding-left: 74px !important;
  }

  .woocommerce-form-row .iti__selected-flag {
    padding-left: 10px;
    padding-right: 8px;
  }

  .woocommerce-form-row .iti__selected-dial-code {
    font-size: 13px;
  }
}

.sa_loginwithotp-form {
    padding: 2rem !important;
}