/* ============================================================
   DuberyMNL v3 — Knockaround-inspired light theme
   DESIGN.md is the source of truth for all tokens + rules
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Dubery';
  src: url('assets/fonts/dubery-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dubery';
  src: url('assets/fonts/dubery-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --surface: #ffffff;
  --border: #e6e3dc;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-subtle: #8a8a8a;
  --accent: #D7392A;
  --accent-hover: #B82E20;
  --accent-ink: #ffffff;
  --success: #2E7D4F;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-dubery: 'Dubery', 'Space Grotesk', serif;

  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.125rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --container: 1200px;
  --container-tight: 960px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --page-max: 1280px;          /* page stops stretching past this; centers with margins */
  --page-frame: #ececed;       /* neutral shown in the side margins on big screens */
  --section-y: clamp(2rem, 4vw, 3.5rem);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

  --nav-h: 72px;
  --trust-h: 36px;
}

@media (max-width: 720px) {
  :root { --nav-h: 60px; --trust-h: 32px; }
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page-frame);
  -webkit-tap-highlight-color: transparent; /* no blue/grey tap flash on links/images (inherited) */
}
body {
  margin: 0 auto;
  max-width: var(--page-max);
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 0 60px rgba(0,0,0,0.07);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block;
  -webkit-user-drag: none; -webkit-touch-callout: none; /* no blue drag-ghost / long-press menu on images */
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-hero); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1rem; }

/* ── Layout helpers ────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-y) 0;
}
.section-soft { background: var(--bg-soft); }

.eyebrow {
  font-family: var(--font-dubery);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.section-head-row h2 { margin: 0; }

.link-arrow {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--text);
  transition: color 0.15s, border-color 0.15s;
}
.link-arrow:hover { color: var(--accent); border-bottom-color: var(--accent); }

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-ghost-light:hover { background: #fff; color: var(--text); border-color: #fff; }

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-muted);
  height: var(--trust-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 20;
}
.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 var(--gutter);
  white-space: nowrap;
}
.trust-strip .dot { color: var(--text-subtle); }
@media (max-width: 560px) {
  .trust-strip-track { font-size: 0.75rem; gap: 0.5rem; }
}

/* ── Sticky nav ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.nav {
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a { color: var(--text); transition: color 0.15s; }
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.9rem var(--gutter);
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}

/* ── Primary hero ──────────────────────────────────────────── */
.hero-primary {
  position: relative;
  height: clamp(520px, 75vh, 780px);
  overflow: hidden;
  background: #000;
}
.hero-primary::after { display: none; } /* overlay moved to per-slide */

/* Carousel track */
.hero-slides-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-slide {
  position: relative;
  width: 25%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0) 65%);
  pointer-events: none;
  z-index: 1;
}
.hero-slide--right::after {
  background: linear-gradient(270deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0) 65%);
}
/* Boat slide (now slide 2): lighter vignette than the other --right slides. */
.hero-slide:nth-child(2)::after {
  background: linear-gradient(270deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0) 65%);
}
.hero-primary-media { position: absolute; inset: 0; }
.hero-primary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 44%;
}

/* Desktop framing — object-fit: cover guarantees a full-bleed fill at every window
   ratio (no letterbox, so the per-slide backdrop can never leak). object-position sets
   each slide's focal point; the old contain+scale hack leaked at off-tuned ratios. */
@media (min-width: 721px) {
  /* slide 1 = SOTM (Father's Day) — framed via .hs-sotm class. Photo slides shifted to 2-5. */
  .hero-slide:nth-child(2) .hero-primary-media img { object-fit: cover; object-position: 22% 50%; }  /* boat (Outback Blue) */
  .hero-slide:nth-child(3) .hero-primary-media img { object-fit: cover; object-position: 54% 4%; }   /* light, filtered (beach) */
  .hero-slide:nth-child(4) .hero-primary-media img { object-fit: cover; object-position: 100% 6%; }  /* outback black (wall) */
  .hero-slide:nth-child(5) .hero-primary-media img { object-fit: cover; object-position: 85% 49%; }  /* bandits tortoise */
}

/* Headline accents */
.hero-accent-rust { color: #e07a52; }
.hero-accent-blue { color: #6f9bff; font-family: 'Caveat', cursive; font-weight: 700; text-transform: none; font-size: 1.15em; }

/* Hero display fonts (RA preference, s183) — scoped to hero headlines only so the
   site-wide display font (Space Grotesk) is untouched. Anton = punchy condensed caps;
   Archivo Black for "Light, filtered"; Caveat for the "blue" script accent (above). */
.hero-primary-copy h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 0.95;
}
.hs-filtered .hero-primary-copy h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -1px;
  line-height: 1;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.hero-arrow:hover { background: rgba(0,0,0,0.65); }
.hero-arrow--prev { left: 1.25rem; }
.hero-arrow--next { right: 1.25rem; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.85rem;
}
.hero-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
/* Bigger invisible tap target so the dots are easy to pick on a phone
   (navigation is swipe + dots now that the arrows are gone). */
.hero-dot::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
}
.hero-dot--active {
  background: #fff;
  transform: scale(1.35);
}
.hero-primary-copy {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 5rem) var(--gutter);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
}
/* Slide 2: right-aligned copy */
.hero-slide--right .hero-primary-copy {
  margin-left: auto;
  margin-right: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  text-align: right;
  align-items: flex-end;
}
.hero-slide--right .cta-row { justify-content: flex-end; }
.hero-primary-copy .eyebrow { color: #fff; opacity: 0.9; }
.hero-primary-copy h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(2rem, 3.75vw, 3.25rem); }
.hero-primary-copy .lede {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.hero-meta {
  margin-top: 1.25rem;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}
/* .mbr = a hero-copy line break that's mobile-only (used on the hand-placed slides
   4 & 6) — off by default so desktop keeps the flowing sentence; re-enabled inside
   the max-width:720px block. */
.mbr { display: none; }
@media (max-width: 720px) {
  .hero-primary { height: clamp(340px, 78vw, 460px); }
  .hero-primary-media img {
    object-position: 57% 28%;
  }
  /* Stronger left scrim on mobile so the white copy always reads over the
     zoomed/busier framings (slides 3-6). Subject sits opposite, in the clear.
     (--right overrides this for slide 1; slide 5 darkens harder below.) */
  .hero-slide::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.52) 36%, rgba(0,0,0,0.15) 66%, rgba(0,0,0,0) 100%);
  }
  .hero-primary-copy {
    justify-content: center;
    padding: 1.5rem var(--gutter);
    margin-left: var(--gutter);
    max-width: 72%;
  }
  .hero-primary-copy .eyebrow { font-size: 0.6rem; }
  .hero-primary-copy h1 { font-size: clamp(1.4rem, 6.5vw, 1.9rem); line-height: 1.15; margin-bottom: 0.5rem; }
  .hero-primary-copy .lede { font-size: 0.75rem; margin-bottom: 1rem; }
  .hero-primary-copy .cta-row { flex-wrap: nowrap; }
  .hero-primary-copy .cta-row .btn { padding: 0.5rem 0.75rem; font-size: 0.75rem; flex: 1; min-width: 0; }
  .hero-meta { font-size: 0.65rem; margin-top: 0.6rem; }
  .hero-arrow { width: 34px; height: 34px; font-size: 0.9rem; }
  .hero-arrow--prev { left: 0.6rem; }
  .hero-arrow--next { right: 0.6rem; }
  /* Right-aligned slide (slide 1): copy sits on the right. Image framing is set
     per-slide in the nth-child block below. */
  .hero-slide--right::after {
    display: block;
    background: linear-gradient(270deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0) 72%);
  }
  /* Slide 1 (fishing): lighter vignette on mobile too. */
  .hero-slide:nth-child(1)::after {
    background: linear-gradient(270deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.26) 45%, rgba(0,0,0,0) 72%);
  }
  .hero-slide--right .hero-primary-copy {
    margin-left: auto;
    margin-right: 0;
    padding-right: 0.4rem; /* push the text hard to the right edge — utilize the side, no gap */
    text-align: right;
    align-items: flex-end;
    max-width: 72%;
  }
  .hero-slide--right .cta-row { justify-content: flex-end; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
  .hero-slide--right .cta-row .btn { padding: 0.5rem 1rem; font-size: 0.75rem; width: auto; }
  /* Slide 4 (Bandits Tortoise): hide "Message Us" on MOBILE only — desktop keeps it. */
  .hero-slide:nth-child(4) .cta-row .btn-ghost-light { display: none; }
  /* Slides 2 & 4 have a single CTA — let it fit its text instead of stretching full-width. */
  .hero-slide:nth-child(2) .cta-row,
  .hero-slide:nth-child(4) .cta-row { flex-wrap: wrap; }
  .hero-slide:nth-child(2) .cta-row .btn,
  .hero-slide:nth-child(4) .cta-row .btn { flex: 0 0 auto; }

  /* Per-slide mobile hero framing — tuned in the ?edit editor on a phone viewport.
     These nth-child rules override the generic + --right framing above; the desktop
     block (>=721px) is separate and unaffected. */
  .hero-slide:nth-child(2) .hero-primary-media img { object-fit: cover; object-position: 28% 38%; }  /* boat */
  .hero-slide:nth-child(3) .hero-primary-media img { object-fit: cover; object-position: 75% 0%; }   /* light, filtered */
  .hero-slide:nth-child(4) .hero-primary-media img { object-fit: cover; object-position: 53% 30%; }  /* outback black */
  .hero-slide:nth-child(5) .hero-primary-media img { object-fit: cover; object-position: 84% 28%; }  /* bandits tortoise */
  /* Slide 2 (Light, filtered): left is bright sky — darken hardest so the white copy stays legible. */
  .hero-slide:nth-child(2)::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.41) 0%, rgba(0,0,0,0.29) 40%, rgba(0,0,0,0.09) 70%, rgba(0,0,0,0) 100%);
  }
  /* "Light, filtered." (Archivo) reads small next to the Anton caps — give it presence. */
  .hs-filtered .hero-primary-copy h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); line-height: 1.0; }

  /* Mobile-only line breaks (.mbr) enabled here; desktop keeps the flowing sentence. */
  .mbr { display: inline; }

  /* Slide 2 (Light, filtered): natural flow (the old hand-placed absolute overlay was
     tuned for the 58% block and left uneven gaps at 72% — normal flow matches slides 1/3/4). */
}

/* ── Polarization proof ────────────────────────────────────── */
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.proof-copy h2 { margin-bottom: 1rem; }
.proof-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.proof-media > img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* Before/after polarization slider (proof section) — ported from /polarized-demo.
   Drag the handle to clip the .before (standard) layer and reveal .after (polarized). */
.compare {
  position: relative; width: 100%;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
  user-select: none; touch-action: pan-y; cursor: ew-resize; /* pan-y = browser keeps VERTICAL
     scroll; JS claims HORIZONTAL drags via touch events + preventDefault (see slider script) */
  -webkit-tap-highlight-color: transparent; /* no grey flash on touch release */
}
.compare img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; -webkit-user-drag: none;
  border-radius: 0; box-shadow: none;
}
/* Default 50/50 split so the WITHOUT (before) layer always shows, even if the
   slider script is slow/blocked. JS overrides this once it runs. */
.compare .before { clip-path: inset(0 50% 0 0); }
.compare .label {
  position: absolute; bottom: 12px; z-index: 4;
  font-size: 11px; font-weight: 600; letter-spacing: .5px; color: #fff;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(0,0,0,.62); pointer-events: none; /* solid bg — no per-frame backdrop blur */
}
.compare .lbefore { left: 12px; }
.compare .lafter { right: 12px; }
.compare .handle {
  position: absolute; top: 0; bottom: 0; width: 2px; z-index: 3;
  background: rgba(255,255,255,.9); box-shadow: 0 0 12px rgba(0,0,0,.6);
  transform: translateX(-50%); pointer-events: none;
}
.compare .grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center; gap: 3px;
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.compare .grip i { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.compare .grip .l { border-right: 7px solid #1b2733; }
.compare .grip .r { border-left: 7px solid #1b2733; }

/* "Drag to compare" affordance. Desktop (has hover): shows on hover. Touch (no hover):
   shows by default so users know the line moves. Fades for good once they interact. */
.compare .compare-hint {
  position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%);
  z-index: 5; pointer-events: none; white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: .3px; color: #fff;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,0,0,.68); /* solid bg — no per-frame backdrop blur */
  opacity: 0; transition: opacity .35s ease;
}
@media (hover: hover) { .compare:hover .compare-hint { opacity: 1; } }
@media (hover: none) {
  .compare .compare-hint { opacity: 1; animation: compareHintPulse 1.8s ease-in-out 2; }
}
.compare.is-touched .compare-hint { opacity: 0 !important; animation: none; }
@keyframes compareHintPulse { 0%,100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.06); } }

@media (max-width: 860px) {
  .proof-layout { grid-template-columns: 1fr; }
  /* Copy first, slider below it on mobile (natural DOM order; was order:-1 = media on top). */
}

/* ── Series grid ───────────────────────────────────────────── */
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.series-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.series-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.series-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.series-media img { width: 100%; height: 100%; object-fit: cover; }
.series-meta {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.series-label { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.series-sub { color: var(--text-muted); font-size: var(--fs-small); }
@media (max-width: 820px) {
  .series-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } /* mobile: 2-up = smaller thumbnails */
}

/* ── Best sellers (Knockaround-style rail) ─────────────────── */
.section-bestsellers .bs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.bs-head-title .eyebrow { margin-bottom: 0.35rem; }
.bs-head-title h2 { margin: 0; }
.bs-head-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.bs-filters { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.bs-filter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.bs-filter:hover { color: var(--text); border-color: var(--text); }
.bs-filter.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.bs-arrows { display: flex; gap: 0.4rem; }
.bs-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.bs-arrow:hover { background: var(--text); color: #fff; border-color: var(--text); }
.bs-arrow svg { width: 18px; height: 18px; }
.bs-arrow:disabled { opacity: 0.35; cursor: not-allowed; background: transparent; color: var(--text); border-color: var(--border); }

.bs-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 4);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.bs-rail::-webkit-scrollbar { display: none; }
.bs-rail > .bs-card[hidden] { display: none; }

.bs-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text);
}
.bs-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
}
.bs-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.bs-img.primary { opacity: 1; }
.bs-img.hover { opacity: 0; }
.bs-card.is-swiped .bs-img.primary { opacity: 0; }
.bs-card.is-swiped .bs-img.hover   { opacity: 1; }

.bs-nav-bar {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.bs-nav {
  background: rgba(255,255,255,0.45);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: #111;
  transition: opacity 0.2s;
}
.bs-nav--prev { opacity: 0; pointer-events: none; }
.bs-nav--next { opacity: 1; pointer-events: auto; }
.bs-card.is-swiped .bs-nav--prev { opacity: 1; pointer-events: auto; }
.bs-card.is-swiped .bs-nav--next { opacity: 0; pointer-events: none; }

.bs-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 6px 0 2px;
}
.bs-dot {
  box-sizing: content-box; /* keep the bar height; global border-box was inflating it into a block */
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: #c4c4c4; /* was #ddd — too faint on the light section */
  transition: background-color 0.2s;
  cursor: pointer;
  /* keep the thin bar but enlarge the tap target for mobile */
  padding: 8px 3px;
  background-clip: content-box;
}
/* background-COLOR (not the `background` shorthand) so it doesn't reset background-clip
   back to border-box and fill the whole padded box as a square. */
.bs-dot.active { background-color: #D7392A; }

/* N-image carousel cards (catalog + homepage best-sellers): index-based fade, both arrows always on */
.catalog-card .bs-img,
.bs-card.is-carousel .bs-img { opacity: 0; }
.catalog-card .bs-img.is-active,
.bs-card.is-carousel .bs-img.is-active { opacity: 1; }
.catalog-card .bs-nav--prev,
.catalog-card .bs-nav--next,
.bs-card.is-carousel .bs-nav--prev,
.bs-card.is-carousel .bs-nav--next { opacity: 1; pointer-events: auto; }

.bs-meta { display: flex; flex-direction: column; gap: 0.3rem; }
.bs-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
}
.bs-stars { color: var(--accent); letter-spacing: 0.05em; }
.bs-count { color: var(--text-subtle); font-size: var(--fs-micro); }

.bs-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.02em;
}
.bs-colorway {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.bs-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.bs-swatches {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.bs-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-block;
  transition: transform 0.15s;
}
.bs-swatch.is-active { outline: 1px solid var(--text); outline-offset: 1px; }
.bs-swatch-more {
  font-size: var(--fs-micro);
  color: var(--text-muted);
  padding-left: 0.15rem;
}

.bs-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 1080px) {
  .bs-rail { grid-auto-columns: calc((100% - 2rem) / 3); }
}
@media (max-width: 720px) {
  .section-bestsellers .bs-head { align-items: flex-start; }
  .bs-arrows { display: none; }
  /* Mobile: static 2-column grid (the 4 cards become a 2x2) — no horizontal scroll/snap.
     minmax(0,1fr) lets the columns shrink to fit (avoids min-content overflow). */
  .bs-rail {
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ── Lifestyle wall ────────────────────────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.lifestyle-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
}
.lifestyle-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ── Shop Our Feed teaser ──────────────────────────────────── */
.social-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.social-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
}
.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.social-tile:hover img { transform: scale(1.04); }
.social-tag {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: var(--fs-micro);
  padding: 0.35rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1080px) { .social-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .social-row { grid-template-columns: repeat(2, 1fr); } }

/* ── Art drop ──────────────────────────────────────────────── */
.art-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.art-copy h2 { margin-bottom: 1rem; }
.art-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.art-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  cursor: pointer;
  transition: opacity 0.2s;
}
.art-grid img:hover { opacity: 0.85; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(90vw, 700px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }
@media (max-width: 900px) {
  .art-layout { grid-template-columns: 1fr; }
}

/* ── Story / founder ───────────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.story-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.story-copy .cta-row { margin-top: 1.5rem; }
@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-media { max-width: 400px; margin: 1.25rem auto 1.5rem; } /* breathing room when slotted between headline & body on mobile */
}

/* ── CTA banner ────────────────────────────────────────────── */
.section-cta {
  background: var(--text);
  color: #fff;
  padding: var(--section-y) 0;
  text-align: center;
}
.section-cta h2 { color: #fff; margin-bottom: 0.5rem; }
.section-cta p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; }
.section-cta .cta-row { justify-content: center; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-logo { height: 32px; width: auto; margin-bottom: 0.75rem; }
.footer-tag { color: var(--text-muted); font-size: var(--fs-small); max-width: 280px; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-subtle); font-size: var(--fs-small); margin: 0; }
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Catalog page ──────────────────────────────────────────── */
.catalog-head-section { padding: 3rem 0 1.5rem; }
.catalog-title { font-size: clamp(2.25rem, 5vw, 3.5rem); margin: 0 0 0.5rem; }
.catalog-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0;
}
.catalog-section { padding-top: 2rem; }
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.catalog-toolbar .filter-count {
  color: var(--text-subtle);
  font-weight: 400;
  margin-left: 0.25rem;
  font-size: 0.8rem;
}
.catalog-toolbar .bs-filter.is-active .filter-count { color: rgba(255, 255, 255, 0.7); }
.catalog-sort {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin: 0;
}
.catalog-grid {
  display: grid;
  /* minmax(0,1fr) (not plain 1fr) so tracks can shrink below content min-size — plain 1fr
     let the cards overflow the container by ~16px and eat the right gutter. */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}
.catalog-card { text-decoration: none; min-width: 0; }
.catalog-card[hidden] { display: none !important; }
@media (max-width: 1080px) { .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 0.75rem; } }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  padding: 1.25rem 0 0;
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.breadcrumb .container { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-subtle); }

/* ── PDP layout ────────────────────────────────────────────── */
.pdp-section { padding: 2rem 0 4rem; }
.pdp-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 960px) { .pdp-layout { grid-template-columns: 1fr; } }

.pdp-gallery { position: sticky; top: calc(var(--nav-h) + 1rem); }
@media (max-width: 960px) { .pdp-gallery { position: static; } }
.pdp-main-media {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.pdp-main-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.pdp-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: var(--bg-soft);
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.is-active { border-color: var(--text); }
.pdp-thumb { position: relative; }
.pdp-thumbs.is-collapsed .pdp-thumb.is-hidden { display: none; }
.pdp-thumb-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.pdp-info { padding-top: 0.5rem; }
.pdp-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0.25rem 0 0.25rem;
  line-height: 1.1;
}
.pdp-colorway {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: var(--fs-small);
}
.pdp-rating .bs-stars { color: var(--accent); letter-spacing: 0.05em; }
.pdp-rating .bs-count { color: var(--text-subtle); }

.pdp-price-row {
  display: flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pdp-price-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 1.4rem;
  background: #f0faf4;
  color: var(--success);
  border: 1px solid #bfe6cf;
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}
.pdp-price-note::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  flex: none;
  box-shadow: 0 0 0 0 rgba(46,125,79,0.5);
  animation: notePulse 2s infinite;
}
@keyframes notePulse {
  0% { box-shadow: 0 0 0 0 rgba(46,125,79,0.45); }
  70% { box-shadow: 0 0 0 6px rgba(46,125,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,79,0); }
}
.pdp-price-note.is-applied {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}
.pdp-price-note.is-applied::before { background: #fff; animation: none; }

.pdp-specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
  font-size: var(--fs-small);
}
.pdp-spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5rem;
}
.pdp-spec-label {
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-micro);
  font-weight: 500;
}

.pdp-copy {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

/* ── PDP order form ────────────────────────────────────────── */
.pdp-order-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
}
.form-eyebrow { margin: 0 0 1rem; font-size: 1.1rem; }

.pdp-qty-row { margin-bottom: 1.25rem; }
.pdp-qty-row label {
  display: block;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}
.qty-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.qty-pill {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  min-width: 140px;
}
.qty-pill:hover { border-color: var(--text); }
.qty-pill.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--text-subtle);
}
.form-field .req { color: var(--accent); }
.form-field .optional { color: var(--text-subtle); text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(215, 57, 42, 0.15);
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.pdp-total-rows { margin-bottom: 1rem; border-top: 1px solid var(--border); padding-top: .75rem; }
.pdp-total-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.pdp-total-row span:last-child { color: var(--text); font-weight: 500; }
.pdp-total-grand.pdp-total { border-top: 1px solid var(--border); margin-top: 8px; padding: 10px 0 0; font-weight: 700; font-size: 18px; }
.pdp-total-grand.pdp-total span:last-child { color: var(--text); }
.pdp-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 600;
}
.pdp-total-amount { font-size: 1.25rem; color: var(--text); }

.pdp-cta-row { gap: 0.75rem; margin-bottom: 0.75rem; }
.pdp-cta-row .btn { flex: 1; }

/* Option B — mobile sticky buy bar */
.pdp-sticky-buy { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: 78px; }
  .pdp-sticky-buy {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  }
  .pdp-sticky-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .pdp-sticky-add {
    flex: 1;
    margin: 0;
  }
}
.pdp-cod-note {
  color: var(--text-subtle);
  font-size: var(--fs-small);
  margin: 0;
  text-align: center;
}

.pdp-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.pdp-success h3 { margin: 0.25rem 0 0.75rem; }
.pdp-success p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── Feature Image ─────────────────────────────────────────── */
.section-feature-image { padding: 0.5rem 0; }
.section-feature-image .eyebrow { margin-bottom: 1.25rem; }
.feature-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.feature-image-wrap img { width: 100%; display: block; max-height: 640px; object-fit: cover; }
.feature-image-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.feature-image-dual .feature-image-wrap { border-radius: 0; box-shadow: none; }
.feature-image-dual .feature-image-wrap:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.feature-image-dual .feature-image-wrap:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.feature-image-dual .feature-image-wrap img { max-height: none; object-fit: cover; }

/* ── Testimonials ──────────────────────────────────────────── */
.section-testimonials .section-head-row { margin-bottom: 2rem; }
.testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-stars {
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  quotes: none;
}
.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: auto;
}
.testimonial-card figcaption strong { color: var(--text); font-weight: 600; }
@media (min-width: 561px)  { .testimonial-grid { grid-auto-columns: calc((100% - 1rem) / 2); } }
@media (min-width: 961px)  { .testimonial-grid { grid-auto-columns: calc((100% - 3rem) / 4); } }

/* ── Related (you might also like) ─────────────────────────── */
.section-related .section-head-row { margin-bottom: 2rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
}
.related-card { text-decoration: none; }
@media (max-width: 960px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Shop our feed (shop-social) ───────────────────────────── */
.social-head-section { padding: 3.5rem 0 2rem; text-align: center; }
.social-head { max-width: 640px; margin: 0 auto; }
.social-head h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin: 0 0 0.75rem; }
.social-head-sub { color: var(--text-muted); font-size: 1.05rem; margin: 0 0 1.5rem; }
.social-head-sub strong { color: var(--text); font-weight: 600; }
.social-follow-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-wall-section { padding: 3rem 0 5rem; }
.social-wall {
  columns: 6;
  column-gap: 0.5rem;
}
.social-wall .wall-tile {
  break-inside: avoid;
  margin: 0 0 0.5rem;
  width: 100%;
  padding: 0;
  background: var(--bg-soft);
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  text-align: left;
}
.social-wall .wall-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.social-wall .wall-tile:hover img { transform: scale(1.03); }
.social-wall .social-tag {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.67);
  color: var(--text);
  font-size: var(--fs-micro);
  padding: 0.4rem 0.65rem;
  border-radius: 100px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.social-wall .tag-dots { display: inline-flex; gap: 0.15rem; }
.social-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
}
@media (max-width: 1080px) { .social-wall { columns: 4; } }
@media (max-width: 720px)  { .social-wall { columns: 3; column-gap: 0.4rem; } .social-wall .wall-tile { margin-bottom: 0.4rem; } }
@media (max-width: 480px)  { .social-wall { columns: 2; } }

/* Edit mode — remove button on tile */
.wall-tile .tile-remove-btn {
  position: absolute !important;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 10;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.tile-remove-btn:hover { background: #e00; }

/* Edit bar (bottom of screen) */
.ss-edit-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}
.ss-edit-bar-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  flex: 1;
}

/* Edit panel (right drawer) */
.ss-edit-panel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: flex-end;
}
.ss-edit-panel[hidden] { display: none; }
.ss-edit-panel-inner {
  width: min(420px, 95vw);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ss-edit-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ss-edit-panel-head h3 { margin: 0; font-size: var(--fs-base); }
.ss-edit-panel-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
}
.ss-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
}
.ss-field-label { font-size: var(--fs-sm); font-weight: 500; color: var(--text-muted); }
.ss-field input,
.ss-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: var(--fs-sm);
  font-family: inherit;
  color: var(--text);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.ss-field textarea { resize: vertical; }

/* Product chips in edit panel */
.ep-chips {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 280px;
  overflow-y: auto;
}
.ep-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  background: #fff;
}
.ep-chip.active { border-color: var(--text); background: var(--bg-soft); font-weight: 500; }
.ep-chip input[type="checkbox"] { display: none; }
.ep-chip-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.1); }

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 1rem;
}
.load-more-btn {
  min-width: 160px;
}

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overscroll-behavior: contain;
}
.lightbox[hidden] { display: none; }
.lightbox:not([hidden]) { display: flex; }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  top: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-close { right: 1rem; top: 1rem; }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 400px);
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lightbox-media {
  margin: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-media img {
  max-width: 100%;
  max-height: 90vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-side {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
}
.lightbox-meta h2 {
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
}
.lightbox-location {
  color: var(--text-subtle);
  font-size: var(--fs-small);
  margin: 0 0 0.75rem;
}
.lightbox-caption {
  color: var(--text);
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
}

.lightbox-tags-label {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-subtle);
  margin: 0 0 0.75rem;
}
.lightbox-products { display: flex; flex-direction: column; gap: 0.5rem; }
.lightbox-product {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  color: var(--text);
}
.lightbox-product:hover {
  border-color: var(--text);
  background: var(--bg-soft);
}
.lightbox-product-media {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
}
.lightbox-product-media img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-product-meta { min-width: 0; }
.lightbox-product-series {
  font-size: var(--fs-micro);
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.lightbox-product-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0.1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lightbox-product-name span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.lightbox-product-price {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}
.lightbox-product-cta {
  color: var(--text-muted);
  font-size: var(--fs-small);
  padding-right: 0.25rem;
}

@media (max-width: 820px) {
  .lightbox { padding: 0; }
  .lightbox-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh 1fr;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .lightbox-media img { max-height: 55vh; }
  .lightbox-side { padding: 1.25rem; }
  .lightbox-close { right: 0.75rem; top: 0.75rem; background: rgba(0,0,0,0.55); }
  .lightbox-nav { display: none; }
}

/* ── Order page ───────────────────────────────────────────── */
.order-head-section { padding-top: clamp(32px, 5vw, 56px); padding-bottom: clamp(16px, 2.5vw, 28px); }
.order-title { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; margin: 6px 0 12px; }
.order-sub { color: var(--text-muted); max-width: 640px; margin: 0; }
.order-section { padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(48px, 6vw, 96px); }
.order-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.order-picker-head { margin-bottom: 20px; }
.order-picker-head .bs-filters { justify-content: flex-start; }
/* Series accordion */
.order-product-grid { display: flex; flex-direction: column; gap: 10px; }
.order-series-group { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.order-series-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--bg); border: 0; font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); cursor: pointer; transition: background .15s; }
.order-series-toggle:hover { background: var(--bg-soft); }
.order-series-arrow { font-size: 11px; color: var(--text-muted); }
.order-series-hint { font-size: 11px; color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; margin-right: auto; padding-left: 0.75rem; }
.order-series-toggle.is-open .order-series-hint { display: none; }
.order-series-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 12px; background: var(--bg-soft); border-top: 1px solid var(--border); }
.order-series-grid[hidden] { display: none !important; }
[data-discount-row][hidden],
[data-bundle-note][hidden],
[data-order-totals][hidden] { display: none !important; }
/* Product cards */
.order-product-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px; display: flex; flex-direction: column; gap: 8px; transition: border-color .2s, box-shadow .2s; }
.order-product-card.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(210,120,40,.12); }
.order-product-img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); background: var(--bg-soft); }
/* Swipeable carousel in picker cards (reuses .bs-img/.bs-nav/.bs-dots) */
.order-product-media { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-soft); }
.order-product-media .bs-img { opacity: 0; }
.order-product-media .bs-img.is-active { opacity: 1; }
.order-product-media .bs-nav { opacity: 1; pointer-events: auto; width: 24px; height: 24px; font-size: 15px; }
.order-product-meta { display: flex; flex-direction: column; gap: 2px; }
.order-product-name { font-size: 12px; font-weight: 600; line-height: 1.3; }
.order-product-price { font-size: 12px; color: var(--text-muted); }
.order-product-card .stepper { justify-content: space-between; }

.order-summary { position: sticky; top: 24px; }
.order-summary-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(20px, 2vw, 28px); }
.order-summary-title { font-family: var(--font-display); font-size: 22px; margin: 0 0 16px; }
.order-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.order-empty { color: var(--text-muted); font-size: 14px; margin: 0; padding: 16px 0; }
.order-line { display: grid; grid-template-columns: 72px 1fr auto auto; gap: 10px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.order-line:last-child { border-bottom: none; padding-bottom: 0; }
.order-line-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-soft); }
.order-line-meta { min-width: 0; }
.order-line-name { font-weight: 600; font-size: 13px; line-height: 1.3; }
.order-line-name span { color: var(--text-muted); font-weight: 400; }
.order-line-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.order-line-total { font-weight: 600; font-size: 14px; }
.order-line-remove { width: 24px; height: 24px; border-radius: 50%; border: 0; background: transparent; color: var(--text-muted); font-size: 18px; cursor: pointer; line-height: 1; }
.order-line-remove:hover { color: var(--text); background: var(--bg-soft); }

.order-bundle-note { background: #f0faf4; border: 1px dashed #2d9e5f; border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: #1e7a46; margin-bottom: 16px; }
.order-totals { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 20px; }
.order-total-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--text-muted); }
.order-total-row span:last-child { color: var(--text); font-weight: 500; }
.order-total-discount span:last-child { color: var(--accent); font-weight: 600; }
.order-grand { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; font-size: 16px; font-weight: 600; color: var(--text) !important; }
.order-grand span { color: var(--text) !important; font-size: 18px; }

.order-form .form-eyebrow { margin-top: 0; margin-bottom: 12px; }
.order-form .pdp-submit:disabled { opacity: .45; cursor: not-allowed; }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 480px) {
  .order-series-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px; }
}

/* ── Stepper ───────────────────────────────────────────────── */
.stepper { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.stepper-btn { width: 32px; height: 32px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 18px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s, border-color .15s; }
.stepper-btn:hover { background: var(--bg-soft); border-color: var(--text-muted); }
.stepper-btn-add { background: var(--text); color: var(--bg); border-color: var(--text); }
.stepper-btn-add:hover { background: var(--accent); border-color: var(--accent); }
.stepper-qty { font-weight: 600; font-size: 15px; min-width: 22px; text-align: center; }

/* ── Accessibility ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.bs-card.swatch-focus { outline: 2px solid #1a1a1a; outline-offset: 3px; transition: outline 0.1s; }

/* ── Gallery arrows ────────────────────────────────────────── */
.pdp-main-media { position: relative; }
.pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-shadow: 0 1px 3px rgba(255,255,255,0.85), 0 1px 6px rgba(0,0,0,0.25);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 2;
  opacity: 0.75;
}
.pdp-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.12); }
.pdp-arrow-prev { left: 10px; }
.pdp-arrow-next { right: 10px; }
.pdp-arrow[disabled] { opacity: 0.2; pointer-events: none; }

/* Fullscreen image zoom — tap the main PDP image */
.pdp-main-media img { cursor: zoom-in; }
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.pdp-lightbox[hidden] { display: none; }
.pdp-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.pdp-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.pdp-lightbox-close:hover { opacity: 1; }

/* ── Cart icon + badge ─────────────────────────────────────── */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-cart svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.nav-cart:hover { color: var(--accent); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  border-radius: 999px;
  text-align: center;
  pointer-events: none;
}

/* ── Add to Cart button ─────────────────────────────────────── */
.pdp-add-btn { flex: 1; transition: background 0.2s, border-color 0.2s; }
.pdp-add-btn.is-added {
  background: #1a6641;
  border-color: #1a6641;
}

/* ── Inline SKU strip (inside PDP right column) ────────────── */
.pdp-sku-inline {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.pdp-sku-eyebrow { margin-bottom: 0.6rem; }
.pdp-sku-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.pdp-sku-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s;
  min-width: 0;
}
.pdp-sku-item:hover { color: var(--text); }
.pdp-sku-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.pdp-sku-item:hover img { border-color: var(--accent); }
.pdp-sku-item span {
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* ── More styles SKU strip ──────────────────────────────────── */
.section-more-styles { padding: 3rem 0 4rem; }
.section-more-styles h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.sku-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.sku-thumb {
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.15s, transform 0.15s;
}
.sku-thumb:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.sku-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.sku-thumb-label {
  padding: 5px 6px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .sku-strip { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 0.5rem; }
}
