/** Shopify CDN: Minification failed

Line 920:128 Unexpected "/"

**/
/*
  GripMag — gripmag.css
  Single stylesheet for the entire theme.
  Design tokens use CSS custom properties so they can be overridden
  by Shopify theme settings (settings_schema.json colour pickers).
*/

/* ── DESIGN TOKENS ── */
:root {
  --clr-accent:     #d93d10;
  --clr-accent2:    #f05224;
  --clr-glow:       rgba(217, 61, 16, 0.30);
  --clr-black:      #0a0a0b;
  --clr-charcoal:   #161618;
  --clr-gunmetal:   #2b2c2f;
  --clr-steel:      #4b4d52;
  --clr-white:      #f5f4f0;
  --clr-dim:        rgba(245, 244, 240, 0.55);
  --font-sans:      'Inter', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
  --radius:         3px;
  --nav-h:          56px;
  /* Colour swatches for variant options */
  --swatch-black:   #1a1a1c;
  --swatch-red:     #7a1f0e;
  --swatch-black-red: #1a1a1c;
  --swatch-black-green: #1e2a1e;
  --swatch-black-blue: #1a1e2e;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--clr-black);
  color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--clr-accent); color: #fff; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--clr-accent); color: #fff;
  padding: 8px 16px; border-radius: 2px; z-index: 9999;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
}
.skip-link:focus { top: 16px; }

/* ══════════════════════════════════════════
   SITE NAV
══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--nav-h);
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 56px); height: 100%;
}
.sn-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; flex-shrink: 0; }
.sn-logo .mark { font-size: 13px; font-weight: 900; letter-spacing: 0.18em; color: var(--clr-white); }
.sn-logo .sub  { font-size: 9px; font-weight: 400; letter-spacing: 0.3em; color: rgba(245,244,240,0.42); }
.sn-logo-img   { width: 80px; height: auto; }
.sn-pages { display: flex; align-items: stretch; list-style: none; height: 100%; }
.sn-pages a {
  display: flex; align-items: center; height: 100%; padding: 0 18px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,244,240,0.5); position: relative; transition: color .2s; white-space: nowrap;
}
.sn-pages a::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px;
  background: var(--clr-accent); transform: scaleX(0); transition: transform .25s;
}
.sn-pages a:hover { color: var(--clr-white); }
.sn-pages a:hover::after, .sn-pages a.active::after { transform: scaleX(1); }
.sn-pages a.active { color: var(--clr-white); }
.sn-right { display: flex; align-items: center; gap: 10px; }
.sn-icon-btn { color: rgba(245,244,240,0.6); transition: color .2s; padding: 6px; }
.sn-icon-btn:hover { color: var(--clr-white); }
.sn-cart {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--clr-accent); color: #fff;
  padding: 8px 16px; border-radius: 2px; transition: background .2s; white-space: nowrap;
}
.sn-cart:hover { background: var(--clr-accent2); }
.sn-cart svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════ */
.site-footer { border-top: 1px solid rgba(255,255,255,0.05); }
.sf-inner {
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px;
  padding: clamp(32px,5vh,56px) clamp(16px,5vw,72px);
}
.sf-brand .mark { font-size: 13px; font-weight: 900; letter-spacing: 0.18em; display: block; margin-bottom: 4px; }
.sf-brand .sub  { font-size: 9px; letter-spacing: 0.3em; opacity: 0.4; display: block; margin-bottom: 12px; }
.sf-copy { font-size: 13px; color: rgba(245,244,240,0.45); max-width: 260px; line-height: 1.6; }
.sf-links { display: flex; flex-direction: column; gap: 10px; }
.sf-links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(245,244,240,0.38); transition: color .2s; }
.sf-links a:hover { color: var(--clr-white); }
.sf-legal { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(245,244,240,0.25); line-height: 1.8; }

/* ══════════════════════════════════════════
   PAGE BODY & BREADCRUMB
══════════════════════════════════════════ */
.page-body { padding-top: var(--nav-h); }
.breadcrumb {
  padding: 14px clamp(16px,5vw,72px);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.35); border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb span { opacity: 0.4; }

/* ══════════════════════════════════════════
   HOME SECTIONS (scroll-snap)
══════════════════════════════════════════ */
html.home-page { scroll-snap-type: y mandatory; }
.snap-section {
  position: relative; height: 100svh; width: 100%;
  scroll-snap-align: start; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
}
.copy { position: relative; z-index: 5; max-width: 440px; padding: 0 clamp(20px,6vw,68px); }
.eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--clr-accent2); }
h1, h2 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 16px; }
h1 { font-size: clamp(34px, 5.4vw, 60px); }
h2 { font-size: clamp(26px, 3.8vw, 42px); }
.lede { font-size: 14px; line-height: 1.65; color: var(--clr-dim); max-width: 360px; margin-bottom: 28px; }
.dark-copy .lede        { color: rgba(10,10,11,0.58); }
.dark-copy h1,.dark-copy h2 { color: var(--clr-black); }
.dark-copy .eyebrow     { color: var(--clr-accent); }
.dark-copy .eyebrow::before { background: var(--clr-accent); }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.pill {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid rgba(217,61,16,0.5); border-radius: 1px;
  color: var(--clr-accent2); background: rgba(217,61,16,0.06);
}
.pill.dark { border-color: rgba(10,10,11,0.22); color: rgba(10,10,11,0.5); background: transparent; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 2px; transition: background .2s, transform .2s;
  background: var(--clr-accent); color: #fff;
}
.btn:hover { background: var(--clr-accent2); transform: translateY(-2px); }
.btn.ghost { background: transparent; border: 1px solid rgba(245,244,240,0.4); }
.btn.ghost:hover { background: rgba(255,255,255,0.07); }
.btn.dark-ghost { background: transparent; border: 1px solid rgba(10,10,11,0.3); color: var(--clr-black); }
.btn.dark-ghost:hover { background: rgba(10,10,11,0.07); }

/* ── HERO ── */
.home-hero { background: linear-gradient(148deg,#dcdbd6 0%,#c8c7c2 60%,#b5b4af 100%); }
.hero-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; overflow: hidden; }
.hero-img {
  width: clamp(320px,58vw,800px); height: 100%; object-fit: cover;
  transform: translateX(4%) scale(1.02); mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.06);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, transparent 100%);
  transition: transform .3s ease-out;
}
.hero-placeholder { width: clamp(320px,50vw,700px); height: 60vh; opacity: 0.15; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(10,10,11,0.5); pointer-events: none;
}
.scroll-hint svg { width: 10px; height: 10px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ── FEATURE PANEL ── */
.home-feature { background: #0c0c0d; }
.feat-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; overflow: hidden; }
.feat-img {
  width: clamp(300px,52vw,740px); height: 100%; object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, transparent 100%);
}
.copy-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: rgba(245,244,240,0.38); margin-top: 18px; line-height: 1.8; }

/* ── SIZES ── */
.home-sizes { background: #111113; }
.sizes-content {
  position: relative; z-index: 5;
  display: flex; align-items: center; gap: clamp(40px,8vw,120px);
  padding: 0 clamp(20px,6vw,68px);
}
.sizes-copy { max-width: 360px; }
.sizes-visual { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.size-item { display: flex; align-items: center; gap: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; }
.size-bar { height: 10px; border-radius: 1px; background: var(--clr-gunmetal); position: relative; overflow: hidden; }
.size-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.size-bar.lit::after { transform: scaleX(1); }
.size-dim { color: var(--clr-accent2); }
.size-label { opacity: 0.5; white-space: nowrap; }
.size-note { font-family: var(--font-mono); font-size: 10px; color: rgba(245,244,240,0.32); letter-spacing: 0.1em; margin-top: 6px; }

/* ══════════════════════════════════════════
   COLLECTION PAGE
══════════════════════════════════════════ */
.ph {
  position: relative; overflow: hidden;
  padding: clamp(64px,10vh,110px) clamp(20px,6vw,72px) clamp(48px,7vh,80px);
  background: linear-gradient(148deg,#181819 0%,#111113 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ph-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--clr-accent2); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ph-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--clr-accent2); display: block; }
.ph h1 { font-size: clamp(38px,6vw,72px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.ph p { font-size: 15px; line-height: 1.6; color: rgba(245,244,240,0.55); max-width: 480px; }
.ph-accent { position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle,rgba(217,61,16,0.18) 0%,transparent 70%); pointer-events: none; }
.cat-bar {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 clamp(20px,6vw,72px);
  display: flex; align-items: center; overflow-x: auto; scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-tab {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,244,240,0.48); padding: 14px 20px;
  position: relative; white-space: nowrap; cursor: pointer; transition: color .2s;
  background: none; border: none;
}
.cat-tab::after { content: ''; position: absolute; bottom: 0; left: 20px; right: 20px; height: 2px; background: var(--clr-accent); transform: scaleX(0); transition: transform .25s; }
.cat-tab:hover { color: var(--clr-white); }
.cat-tab.active { color: var(--clr-white); }
.cat-tab.active::after { transform: scaleX(1); }
.specs-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 1px; background: rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.spec { background: var(--clr-black); padding: 28px 24px; }
.spec-num { font-size: clamp(26px,3.5vw,40px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 4px; }
.spec-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,244,240,0.38); }
.cat-section { padding: clamp(48px,7vh,88px) clamp(20px,6vw,72px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.cat-title { font-size: clamp(20px,3vw,28px); font-weight: 800; letter-spacing: -0.02em; }
.cat-desc { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(245,244,240,0.4); margin-top: 6px; }
.cat-count { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: rgba(245,244,240,0.35); white-space: nowrap; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 20px; }
.no-products { font-family: var(--font-mono); font-size: 12px; color: rgba(245,244,240,0.4); letter-spacing: 0.1em; }

/* ── PRODUCT CARD ── */
.prod-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .25s,transform .25s,background .25s; }
.prod-card:hover { border-color: rgba(217,61,16,0.5); background: rgba(217,61,16,0.04); transform: translateY(-3px); }
.pc-img-link { display: block; }
.pc-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #111113; }
.pc-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); transition: transform .4s ease; }
.prod-card:hover .pc-img { transform: scale(1.04); }
.pc-img-placeholder { width: 100%; height: 100%; opacity: 0.1; }
.pc-badge { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--clr-accent); color: #fff; padding: 4px 10px; border-radius: 1px; }
.pc-badge.new { background: #1a6b3a; }
.pc-badge.limited { background: #7c2d9e; }
.pc-badge.sale { background: var(--clr-accent); }
.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-cat { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,244,240,0.35); margin-bottom: 6px; }
.pc-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.pc-name a { color: inherit; }
.pc-name a:hover { color: var(--clr-accent2); }
.pc-tagline { font-size: 13px; color: rgba(245,244,240,0.5); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pc-price { font-size: 20px; font-weight: 800; color: var(--clr-accent2); }
.pc-was { font-size: 13px; font-weight: 400; color: rgba(245,244,240,0.3); text-decoration: line-through; margin-right: 6px; }
.pc-atc { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--clr-accent); color: #fff; padding: 10px 18px; border-radius: 2px; transition: background .2s; display: inline-flex; align-items: center; gap: 8px; }
.pc-atc:hover { background: var(--clr-accent2); }
.pagination { padding: 32px 0; text-align: center; }
.pagination .page-numbers { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════
   PRODUCT PAGE
══════════════════════════════════════════ */
.product-page { min-height: 100vh; }
.sticky-buy {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 150;
  background: rgba(10,10,11,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px clamp(16px,5vw,72px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  transform: translateY(-100%); transition: transform .3s ease;
}
.sticky-buy.visible { transform: translateY(0); }
.sb-name { font-size: 14px; font-weight: 700; }
.sb-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sb-price { font-size: 18px; font-weight: 900; color: var(--clr-accent2); }
.sb-was { font-size: 13px; font-weight: 400; color: rgba(245,244,240,0.3); text-decoration: line-through; margin-left: 6px; }
.sb-btn { background: var(--clr-accent); color: #fff; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 22px; border-radius: 2px; transition: background .2s; }
.sb-btn:hover { background: var(--clr-accent2); }

/* ── PRODUCT MAIN GRID ── */
.product-main { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 0 auto; padding: clamp(24px,4vw,48px) clamp(16px,5vw,72px); gap: 0; }
.gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: calc(var(--nav-h) + 16px); align-self: start; }
.gallery-main { position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg,#1a1a1c,#111113); aspect-ratio: 1/1; }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-main:hover .gallery-main-img { transform: scale(1.03); }
.gallery-placeholder { width: 100%; height: 100%; opacity: 0.08; }

/* product tag badges */
.tag-badge { position: absolute; top: 16px; left: 16px; font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; background: var(--clr-black); color: var(--clr-white); border: 1px solid rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 1px; z-index: 5; }
.tag-badge.bestseller { background: var(--clr-black); }
.tag-badge.tag-new { background: #1a6b3a; border-color: transparent; }
.tag-badge.tag-limited { background: #7c2d9e; border-color: transparent; }
.tag-selling { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(217,61,16,0.15); color: var(--clr-accent2); border: 1px solid rgba(217,61,16,0.4); padding: 5px 10px; border-radius: 1px; z-index: 5; display: flex; align-items: center; gap: 6px; }
.tag-selling::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--clr-accent2); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
.tag-discount { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; background: var(--clr-accent); color: #fff; padding: 6px 12px; border-radius: 1px; z-index: 5; }

/* thumbnail strip */
.thumb-strip { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.thumb-strip::-webkit-scrollbar { display: none; }
.thumb { flex-shrink: 0; width: 72px; border-radius: 2px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color .2s; background: #111113; }
.thumb img { width: 72px; height: 72px; object-fit: cover; }
.thumb.active { border-color: var(--clr-accent); }
.thumb:hover { border-color: rgba(217,61,16,0.5); }
.thumb-video { flex-shrink: 0; width: 72px; border-radius: 2px; border: 2px solid rgba(255,255,255,0.12); cursor: pointer; background: #0f0f10; transition: border-color .2s; }
.thumb-video:hover { border-color: rgba(217,61,16,0.5); }
.thumb-video-inner { height: 72px; display: flex; align-items: center; justify-content: center; }
.thumb-video svg { width: 22px; height: 22px; color: var(--clr-accent2); }
.thumb-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,244,240,0.3); text-align: center; margin-top: 3px; }

/* product info column */
.product-info { padding: 0 0 0 clamp(24px,4vw,56px); display: flex; flex-direction: column; gap: 0; }
.info-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.info-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; border-radius: 1px; }
.info-tag.bestseller { background: rgba(255,255,255,0.06); color: rgba(245,244,240,0.7); border: 1px solid rgba(255,255,255,0.12); }
.info-tag.popular { background: rgba(217,61,16,0.1); color: var(--clr-accent2); border: 1px solid rgba(217,61,16,0.35); }
.info-tag.limited { background: rgba(124,45,158,0.15); color: #c97dff; border: 1px solid rgba(124,45,158,0.4); }
.info-tag.new { background: rgba(26,107,58,0.15); color: #6fcf97; border: 1px solid rgba(26,107,58,0.4); }
.product-name { font-size: clamp(26px,3.5vw,40px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 14px; }

/* star reviews */
.reviews-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.stars { display: flex; gap: 2px; }
.star { width: 16px; height: 16px; }
.star-full { fill: var(--clr-accent2); color: var(--clr-accent2); }
.star-half { color: var(--clr-accent2); }
.star-empty { fill: rgba(245,244,240,0.15); color: rgba(245,244,240,0.15); }
.review-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(245,244,240,0.5); }
.review-link { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--clr-accent2); text-decoration: underline; text-underline-offset: 3px; }
.review-quote { font-size: 13px; font-style: italic; color: rgba(245,244,240,0.55); line-height: 1.5; border-left: 2px solid rgba(217,61,16,0.5); padding-left: 14px; margin-bottom: 22px; max-width: 420px; }

/* options */
.options-block { margin-bottom: 22px; }
.options-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,244,240,0.5); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.selected-val { color: rgba(245,244,240,0.35); }
.size-guide-link { color: var(--clr-accent2); text-decoration: underline; text-underline-offset: 4px; font-size: 10px; }
.size-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.size-opt { padding: 9px 18px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.12); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; background: transparent; color: var(--clr-white); cursor: pointer; transition: border-color .2s,background .2s; }
.size-opt:hover { border-color: rgba(217,61,16,0.6); }
.size-opt.active { border-color: var(--clr-accent); background: rgba(217,61,16,0.1); color: var(--clr-accent2); }
.size-opt.sold-out { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.colour-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.colour-swatch { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; outline: 2px solid transparent; transition: outline-color .2s; }
.colour-swatch.active { outline-color: var(--clr-accent); outline-offset: 2px; }
.colour-swatch:hover { outline-color: rgba(217,61,16,0.5); outline-offset: 2px; }

/* pricing */
.pricing-block { margin-bottom: 20px; }
.price-main { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.price-now { font-size: 36px; font-weight: 900; color: var(--clr-white); letter-spacing: -0.02em; }
.price-was { font-size: 18px; color: rgba(245,244,240,0.35); text-decoration: line-through; }
.price-save { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(217,61,16,0.12); color: var(--clr-accent2); border: 1px solid rgba(217,61,16,0.35); padding: 3px 10px; border-radius: 1px; }
.bnpl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: rgba(245,244,240,0.45); }
.bnpl a { color: var(--clr-accent2); text-decoration: underline; text-underline-offset: 3px; }

/* buy block */
.buy-block { margin-bottom: 24px; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.qty { display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.qty-btn { width: 40px; height: 48px; background: rgba(255,255,255,0.04); color: var(--clr-white); font-size: 18px; font-weight: 300; transition: background .15s; }
.qty-btn:hover { background: rgba(255,255,255,0.1); }
#qtyInput { width: 52px; height: 48px; text-align: center; background: transparent; border: none; color: var(--clr-white); font-size: 16px; font-weight: 700; outline: none; font-family: var(--font-sans); }
#qtyInput::-webkit-outer-spin-button, #qtyInput::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-buy { flex: 1; height: 54px; background: var(--clr-accent); color: #fff; font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; transition: background .2s,transform .15s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-buy:hover:not(:disabled) { background: var(--clr-accent2); transform: translateY(-1px); }
.btn-buy:disabled { background: var(--clr-steel); cursor: not-allowed; opacity: 0.6; }
.guarantee-bar { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,244,240,0.4); text-align: center; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px; }

/* objection busters */
.busters { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 28px; }
.buster { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.buster-icon { font-size: 20px; line-height: 1; }
.buster-icon svg { width: 22px; height: 22px; color: var(--clr-accent2); }
.buster-title { font-size: 11px; font-weight: 700; letter-spacing: -0.01em; }
.buster-desc { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; color: rgba(245,244,240,0.4); line-height: 1.4; }

/* product promise */
.promise-block { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 24px; }
.promise-headline { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.promise-body { font-size: 13px; color: rgba(245,244,240,0.6); line-height: 1.6; margin-bottom: 16px; }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.promise-list li { font-size: 13px; color: rgba(245,244,240,0.75); line-height: 1.5; padding-left: 20px; position: relative; }
.promise-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 2px; background: var(--clr-accent); }
.promise-list li strong { color: var(--clr-white); font-weight: 600; }
.promise-desc { font-size: 14px; color: rgba(245,244,240,0.6); line-height: 1.65; }

/* ── BELOW FOLD ── */
.below-fold { max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px,5vw,72px); }

/* angle gallery */
.angle-gallery { padding: clamp(40px,5vh,72px) 0; border-top: 1px solid rgba(255,255,255,0.05); }
.angle-gallery-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,244,240,0.35); margin-bottom: 20px; }
.angle-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.angle-item { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 1; background: #111113; }
.angle-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); transition: filter .3s; }
.angle-item:hover img { filter: saturate(1.1); }
.angle-label { position: absolute; bottom: 8px; left: 8px; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(10,10,11,0.75); color: rgba(245,244,240,0.7); padding: 3px 8px; border-radius: 1px; backdrop-filter: blur(4px); }
.angle-video { grid-column: span 2; }
.angle-video-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg,#111113,#060607); }
.play-btn { width: 52px; height: 52px; border-radius: 50%; background: rgba(217,61,16,0.9); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s,transform .2s; }
.play-btn:hover { background: var(--clr-accent2); transform: scale(1.06); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }

/* product description */
.prod-description { padding: clamp(40px,5vh,72px) 0; border-top: 1px solid rgba(255,255,255,0.05); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: start; }
.desc-left h2 { font-size: clamp(22px,3vw,34px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.desc-body { font-size: 14px; line-height: 1.7; color: rgba(245,244,240,0.6); }
.desc-feel { font-size: 15px; font-style: italic; color: rgba(245,244,240,0.45); border-left: 2px solid rgba(217,61,16,0.4); padding-left: 16px; margin-top: 20px; }
.benefit-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.benefit-item:first-child { padding-top: 0; }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: rgba(217,61,16,0.1); border: 1px solid rgba(217,61,16,0.3); display: flex; align-items: center; justify-content: center; color: var(--clr-accent2); font-size: 16px; }
.bt-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.bt-body { font-size: 13px; color: rgba(245,244,240,0.52); line-height: 1.5; }

/* accordion */
.accordion-section { padding: clamp(40px,5vh,72px) 0; border-top: 1px solid rgba(255,255,255,0.05); }
.accordion-section-title { font-size: clamp(18px,2.5vw,24px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 24px; }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.acc-trigger { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; width: 100%; background: none; font-size: 14px; font-weight: 600; color: var(--clr-white); text-align: left; cursor: pointer; transition: color .2s; }
.acc-trigger:hover { color: var(--clr-accent2); }
.acc-trigger svg { width: 18px; height: 18px; flex-shrink: 0; color: rgba(245,244,240,0.4); transition: transform .3s; }
.acc-trigger[aria-expanded="true"] svg { transform: rotate(45deg); color: var(--clr-accent2); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body.open { max-height: 600px; padding-bottom: 20px; }
.acc-content { font-size: 13px; line-height: 1.7; color: rgba(245,244,240,0.58); }
.acc-content ul { margin-left: 16px; margin-top: 8px; }
.acc-content li { margin-bottom: 4px; }
.acc-content strong { color: var(--clr-white); font-weight: 600; }

/* reviews */
.reviews-section { padding: clamp(40px,5vh,72px) 0; border-top: 1px solid rgba(255,255,255,0.05); }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.reviews-header h3 { font-size: clamp(18px,2.5vw,24px); font-weight: 800; letter-spacing: -0.02em; }
.overall-score { text-align: right; }
.overall-num { font-size: 48px; font-weight: 900; line-height: 1; }
.overall-stars { display: flex; gap: 3px; justify-content: flex-end; margin: 6px 0; }
.overall-stars .star { width: 18px; height: 18px; }
.overall-count { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(245,244,240,0.4); }
.reviews-app-placeholder { min-height: 80px; }

/* related */
.related-section { padding: clamp(40px,5vh,72px) 0; border-top: 1px solid rgba(255,255,255,0.05); }
.related-section h3 { font-size: clamp(18px,2.5vw,24px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; }

/* support bar */
.support-bar { padding: clamp(32px,4vh,56px) 0; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; gap: clamp(24px,5vw,72px); flex-wrap: wrap; }
.support-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(245,244,240,0.5); }
.support-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.support-item strong { color: var(--clr-white); display: block; font-size: 14px; margin-bottom: 2px; }

/* ── CART TOAST ── */
.cart-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--clr-white); color: var(--clr-black); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; padding: 12px 24px; border-radius: 2px; z-index: 9999; opacity: 0; transition: opacity .25s,transform .25s; white-space: nowrap; box-shadow: 0 4px 24px rgba(0,0,0,0.5); pointer-events: none; }
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; gap: 32px; }
  .product-info { padding: 0; }
  .gallery { position: static; }
  .prod-description { grid-template-columns: 1fr; }
  .angle-grid { grid-template-columns: repeat(3,1fr); }
  .angle-video { grid-column: span 1; }
  .busters { grid-template-columns: 1fr 1fr; }
  .sizes-content { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .sn-pages a { padding: 0 10px; font-size: 9px; }
  .sn-cart span { display: none; }
  .busters { grid-template-columns: 1fr; }
  .angle-grid { grid-template-columns: repeat(2,1fr); }
  .hero-img,.feat-img { position: absolute; inset: 0; width: 100%; height: 100%; mask-image: linear-gradient(to top,rgba(0,0,0,0.35) 0%,transparent 55%); -webkit-mask-image: linear-gradient(to top,rgba(0,0,0,0.35) 0%,transparent 55%); }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ══════════════════════════════════════════
   SHIPPING PAGE
══════════════════════════════════════════ */
.shipping-page { min-height: 100vh; }

/* hero */
.sh-hero {
  position: relative; overflow: hidden;
  padding: clamp(80px,12vh,130px) clamp(20px,6vw,72px) clamp(64px,9vh,100px);
  background: linear-gradient(148deg, #dcdbd6 0%, #c8c7c2 55%, #b5b4af 100%);
}
.sh-hero-accent {
  position: absolute; right: -80px; bottom: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,61,16,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.sh-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.sh-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--clr-accent); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.sh-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--clr-accent); }
.sh-title {
  font-size: clamp(38px, 6vw, 70px); font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.02; color: var(--clr-black); margin-bottom: 20px;
}
.sh-lede {
  font-size: 16px; line-height: 1.65; color: rgba(10,10,11,0.62);
  max-width: 560px; margin-bottom: 36px;
}
.sh-lede strong { color: var(--clr-black); font-weight: 700; }
.sh-badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-badge {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(10,10,11,0.6);
  background: rgba(10,10,11,0.06); border: 1px solid rgba(10,10,11,0.12);
  padding: 8px 14px; border-radius: 2px;
}
.sh-badge svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--clr-accent); }

/* section wrapper */
.sh-section { border-top: 1px solid rgba(255,255,255,0.05); }
.sh-section-dark { background: #0e0e0f; }
.sh-section-inner {
  max-width: 980px; margin: 0 auto;
  padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px);
}
.sh-section-header { margin-bottom: 40px; }
.sh-section-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.sh-section-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.sh-section-title {
  font-size: clamp(26px, 3.8vw, 40px); font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 12px;
}
.sh-section-sub { font-size: 14px; line-height: 1.65; color: rgba(245,244,240,0.55); max-width: 560px; }
.sh-section:not(.sh-section-dark) .sh-section-sub { color: rgba(10,10,11,0.55); }

/* rates table */
.sh-table-wrap { overflow-x: auto; margin-bottom: 14px; border-radius: var(--radius); }
.sh-table {
  width: 100%; border-collapse: collapse; min-width: 540px;
  font-size: 14px;
}
.sh-table th {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,244,240,0.4); padding: 14px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.sh-table td {
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(245,244,240,0.75);
}
.sh-row-highlight td { background: rgba(217,61,16,0.05); }
.sh-row-highlight td:first-child { color: var(--clr-white); font-weight: 600; }
.sh-free {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--clr-accent2); background: rgba(217,61,16,0.1);
  border: 1px solid rgba(217,61,16,0.35); padding: 4px 12px; border-radius: 1px;
}
.sh-table-note {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: rgba(245,244,240,0.3); display: flex; align-items: center; gap: 7px;
}
.sh-table-note svg { flex-shrink: 0; }

/* timeline */
.sh-timeline { display: flex; flex-direction: column; gap: 0; }
.sh-step {
  display: flex; gap: clamp(20px, 4vw, 48px); padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); position: relative;
}
.sh-step-last { border-bottom: none; }
.sh-step::before {
  content: ''; position: absolute; left: 31px; top: 0; bottom: -1px; width: 1px;
  background: rgba(255,255,255,0.06);
}
.sh-step:first-child::before { top: 28px; }
.sh-step-last::before { bottom: auto; height: 28px; }
.sh-step-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.25); flex-shrink: 0;
  width: 64px; padding-top: 3px; text-align: right;
}
.sh-step-num-accent { color: var(--clr-accent2); }
.sh-step-body { flex: 1; }
.sh-step-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.sh-step-desc { font-size: 14px; line-height: 1.65; color: rgba(245,244,240,0.55); margin-bottom: 10px; }
.sh-step-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,244,240,0.35); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px; border-radius: 1px;
}
.sh-step-tag-accent { color: var(--clr-accent2); border-color: rgba(217,61,16,0.4); background: rgba(217,61,16,0.06); }

/* coverage */
.sh-coverage { display: grid; grid-template-columns: 1fr auto; gap: clamp(40px,6vw,80px); align-items: start; }
.sh-city-list {
  list-style: none; margin: 20px 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.sh-city-list li {
  font-size: 13px; color: rgba(245,244,240,0.65); padding-left: 16px; position: relative;
}
.sh-city-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--clr-accent); }
.sh-note {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: rgba(245,244,240,0.35); display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.sh-coverage-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); overflow: hidden; align-self: start;
  min-width: 220px;
}
.sh-stat { background: var(--clr-black); padding: 22px 20px; }
.sh-stat-num { font-size: clamp(24px, 3vw, 34px); font-weight: 900; color: var(--clr-accent2); letter-spacing: -0.03em; margin-bottom: 4px; }
.sh-stat-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,244,240,0.35); line-height: 1.4; }

/* faq accordion (reuses existing .acc-* styles) */
.sh-accordion { max-width: 720px; }

/* support CTA */
.sh-support-cta { background: var(--clr-black); }
.sh-cta-inner { display: flex; flex-direction: column; align-items: flex-start; }
.sh-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 32px; }
.sh-support-detail { display: flex; flex-direction: column; gap: 12px; }
.sh-support-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(245,244,240,0.5);
  font-family: var(--font-mono); letter-spacing: 0.06em;
}
.sh-support-item svg { flex-shrink: 0; color: var(--clr-accent2); }
.sh-link { color: var(--clr-accent2); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.sh-link:hover { color: var(--clr-white); }

/* section light override for table section */
.sh-section:not(.sh-section-dark) .sh-table th { color: rgba(10,10,11,0.45); background: rgba(10,10,11,0.03); border-color: rgba(10,10,11,0.08); }
.sh-section:not(.sh-section-dark) .sh-table td { color: rgba(10,10,11,0.7); border-color: rgba(10,10,11,0.06); }
.sh-section:not(.sh-section-dark) .sh-row-highlight td { background: rgba(217,61,16,0.04); }
.sh-section:not(.sh-section-dark) .sh-row-highlight td:first-child { color: var(--clr-black); }
.sh-section:not(.sh-section-dark) .sh-table-note { color: rgba(10,10,11,0.35); }
.sh-section:not(.sh-section-dark) .sh-section-title { color: var(--clr-black); }
.sh-section:not(.sh-section-dark) .sh-city-list li { color: rgba(10,10,11,0.65); }
.sh-section:not(.sh-section-dark) .sh-stat { background: rgba(10,10,11,0.03); }
.sh-section:not(.sh-section-dark) .sh-stat-label { color: rgba(10,10,11,0.4); }
.sh-section:not(.sh-section-dark) .sh-note { color: rgba(10,10,11,0.38); }
.sh-section:not(.sh-section-dark) .sh-coverage-stats { background: rgba(10,10,11,0.06); border-color: rgba(10,10,11,0.08); }

@media (max-width: 700px) {
  .sh-coverage { grid-template-columns: 1fr; }
  .sh-city-list { grid-template-columns: 1fr; }
  .sh-step { flex-direction: column; gap: 8px; }
  .sh-step::before { display: none; }
  .sh-step-num { width: auto; text-align: left; }
  .sh-badge-row { flex-direction: column; }
  .sh-cta-actions { flex-direction: column; }
  .sh-coverage-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   COLLECTION PAGE — 3-PRODUCT GRID
══════════════════════════════════════════ */

/* Fixed 3-column grid — always exactly 3 across on desktop */
.prod-grid--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.coll-grid-wrap {
  padding: 0 clamp(20px, 5vw, 72px) clamp(40px, 5vh, 64px);
  max-width: 1400px;
  margin: 0 auto;
}

/* Collection intro */
.coll-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px,5vh,64px) clamp(20px,5vw,72px) clamp(28px,3vh,40px);
  max-width: 1400px;
  margin: 0 auto;
}
.coll-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.coll-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.coll-intro-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 8px; line-height: 1.05;
}
.coll-intro-sub {
  font-size: 14px; line-height: 1.6; color: rgba(245,244,240,0.52); max-width: 480px;
}
.coll-count-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 80px; height: 80px; flex-shrink: 0;
  border: 1px solid rgba(217,61,16,0.35);
  border-radius: 50%;
  background: rgba(217,61,16,0.06);
}
.coll-count-num {
  font-size: 28px; font-weight: 900; color: var(--clr-accent2); line-height: 1;
}
.coll-count-label {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,244,240,0.4);
}

/* ── PRODUCT CARD ENHANCEMENTS ── */

/* Badge variants */
.pc-badge--new     { background: #1a6b3a; }
.pc-badge--popular { background: var(--clr-gunmetal); border: 1px solid rgba(255,255,255,0.15); }
.pc-badge--limited { background: #7c2d9e; }
.pc-badge--sale    { background: var(--clr-accent); }

/* Selling fast tag */
.pc-selling-fast {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--clr-accent2); background: rgba(10,10,11,0.75);
  border: 1px solid rgba(217,61,16,0.4);
  padding: 4px 10px; border-radius: 1px; z-index: 5;
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(4px);
}
.pc-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--clr-accent2);
  animation: pulse 1.6s ease-in-out infinite; flex-shrink: 0;
}

/* Inline size selector on card */
.pc-sizes {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pc-size-btn {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent; color: rgba(245,244,240,0.65);
  cursor: pointer; transition: border-color .18s, background .18s, color .18s;
  line-height: 1;
}
.pc-size-btn:hover:not(:disabled) {
  border-color: rgba(217,61,16,0.55);
  color: var(--clr-accent2);
}
.pc-size-btn.active {
  border-color: var(--clr-accent);
  background: rgba(217,61,16,0.1);
  color: var(--clr-accent2);
}
.pc-size-btn--sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Price block */
.pc-price-block {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.pc-was {
  font-size: 13px; font-weight: 400;
  color: rgba(245,244,240,0.3); text-decoration: line-through;
}
.pc-price {
  font-size: 22px; font-weight: 900; color: var(--clr-accent2);
  letter-spacing: -0.01em;
}
.pc-price-note {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.28); text-transform: uppercase; align-self: flex-end; margin-bottom: 3px;
}

/* View details link */
.pc-details-link {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.35); transition: color .2s;
  text-underline-offset: 4px;
}
.pc-details-link:hover { color: var(--clr-accent2); }

/* Placeholder card */
.prod-card--placeholder { opacity: 0.4; pointer-events: none; }
.prod-card--placeholder .pc-img-wrap svg { width: 100%; height: 100%; opacity: 0.06; }

/* ── PRODUCT CALLOUTS ── */
.coll-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-top: 48px;
}
.coll-callout {
  background: var(--clr-charcoal);
  padding: clamp(24px,3vw,40px);
  display: flex; gap: 20px; align-items: flex-start;
  transition: background .25s;
}
.coll-callout:hover { background: #1c1c1e; }
.cc-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--clr-accent2); flex-shrink: 0; margin-top: 3px;
}
.cc-title {
  font-size: 15px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px;
}
.cc-desc {
  font-size: 13px; line-height: 1.6; color: rgba(245,244,240,0.52); margin-bottom: 14px;
}
.cc-sizes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.cc-size-pill {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 1px;
  border: 1px solid rgba(217,61,16,0.35);
  color: var(--clr-accent2); background: rgba(217,61,16,0.06);
}
.cc-link {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.4); text-decoration: underline; text-underline-offset: 4px;
  transition: color .2s;
}
.cc-link:hover { color: var(--clr-accent2); }

/* ── SHIPPING STRIP ── */
.coll-shipping-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  flex-wrap: wrap;
  padding: 22px clamp(20px,5vw,72px);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.css-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.45); white-space: nowrap;
}
.css-item svg { color: var(--clr-accent2); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .prod-grid--three { grid-template-columns: repeat(2, 1fr); }
  .coll-callouts    { grid-template-columns: 1fr; }
  .coll-callout     { padding: 22px 20px; }
}
@media (max-width: 600px) {
  .prod-grid--three { grid-template-columns: 1fr; }
  .coll-intro       { flex-direction: column; align-items: flex-start; }
  .coll-shipping-strip { flex-direction: column; align-items: flex-start; padding-left: clamp(20px,5vw,72px); }
}

═════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */

/* Push nav down when ann bar is present */
@media (max-width: 700px) {
  .ann-msg--mid,.ann-msg--right { display: none; }
  .ann-bar-inner { justify-content: center; }
}

/* ══════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 299;
  background: rgba(10,10,11,0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 300;
  width: min(420px, 100vw);
  background: #111113;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cart-drawer.open { transform: translateX(0); }

.cd-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.cd-title {
  font-size: 16px; font-weight: 800; letter-spacing: -0.02em;
}
.cd-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: rgba(245,244,240,0.7);
  transition: background .2s, color .2s;
}
.cd-close:hover { background: rgba(255,255,255,0.1); color: var(--clr-white); }

.cd-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.cd-items::-webkit-scrollbar { width: 4px; }
.cd-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* Cart item */
.cd-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cd-item:last-child { border-bottom: none; }
.cdi-img {
  width: 72px; height: 72px; flex-shrink: 0; border-radius: 2px;
  overflow: hidden; background: #1a1a1c;
}
.cdi-img img { width: 100%; height: 100%; object-fit: cover; }
.cdi-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cdi-title { font-size: 13px; font-weight: 700; line-height: 1.3; }
.cdi-variant {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,244,240,0.4);
}
.cdi-price { font-size: 15px; font-weight: 800; color: var(--clr-accent2); margin-top: 2px; }
.cdi-controls {
  display: flex; align-items: center; justify-content: space-between; margin-top: 6px;
}
.cdi-qty {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}
.cdi-qty-btn {
  width: 28px; height: 28px; background: rgba(255,255,255,0.04);
  color: var(--clr-white); font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.cdi-qty-btn:hover { background: rgba(255,255,255,0.1); }
.cdi-qty-num {
  width: 32px; text-align: center; font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; color: var(--clr-white);
}
.cdi-remove {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,244,240,0.3); transition: color .2s; text-decoration: underline;
  text-underline-offset: 3px;
}
.cdi-remove:hover { color: var(--clr-accent2); }

/* Loading spinner */
.cd-loading { display: flex; align-items: center; justify-content: center; padding: 48px; }
.cd-spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--clr-accent2);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty state */
.cd-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 56px 24px; gap: 12px;
}
.cd-empty svg { color: rgba(245,244,240,0.15); }
.cd-empty-title { font-size: 16px; font-weight: 700; color: rgba(245,244,240,0.5); }

/* Footer */
.cd-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px 28px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
}

/* Free shipping progress */
.cd-shipping-progress { display: flex; flex-direction: column; gap: 6px; }
.csp-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.5);
}
.csp-label strong { color: var(--clr-accent2); }
.csp-bar {
  height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.csp-fill {
  height: 100%; background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
  border-radius: 2px; transition: width .5s ease;
}
.csp-achieved {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: #4caf7d; /* success green */
}

.cd-subtotal-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cd-subtotal-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,244,240,0.5);
}
.cd-subtotal-amount { font-size: 22px; font-weight: 900; color: var(--clr-white); }
.cd-tax-note {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em;
  color: rgba(245,244,240,0.28); margin-top: -4px;
}
.cd-checkout-btn {
  width: 100%; justify-content: center; height: 52px; font-size: 12px;
}
.cd-view-cart {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.35); text-align: center; text-decoration: underline;
  text-underline-offset: 4px; transition: color .2s;
}
.cd-view-cart:hover { color: var(--clr-white); }

/* ══════════════════════════════════════════
   CART PAGE (full /cart)
══════════════════════════════════════════ */
.cart-page .page-body { background: var(--clr-black); }
.cart-page-inner {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(32px,5vh,64px) clamp(16px,5vw,72px);
}
.cp-header { margin-bottom: 40px; }
.cp-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.cp-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.cp-title { font-size: clamp(28px,4vw,44px); font-weight: 900; letter-spacing: -0.03em; }
.cp-empty { text-align: center; padding: 80px 20px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cp-empty p { font-size: 16px; color: rgba(245,244,240,0.5); }
.cp-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cp-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cpi-img { width: 100px; height: 100px; flex-shrink: 0; border-radius: 2px; overflow: hidden; background: #1a1a1c; }
.cpi-img img { width: 100%; height: 100%; object-fit: cover; }
.cpi-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cpi-variant {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,244,240,0.4); margin-bottom: 8px;
}
.cpi-price { font-size: 18px; font-weight: 900; color: var(--clr-accent2); }
.cpi-qty-row { margin-top: 10px; display: flex; align-items: center; gap: 16px; }
.cpi-qty { display: flex; align-items: center; gap: 10px; }
.cpi-remove {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,244,240,0.3); text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s; background: none; border: none; cursor: pointer;
}
.cpi-remove:hover { color: var(--clr-accent2); }
.cpi-qty-val { font-family: var(--font-mono); font-size: 12px; color: rgba(245,244,240,0.55); }
.cp-summary {
  position: sticky; top: calc(36px + 56px + 20px);
}
.cp-summary-inner {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.cp-sum-title { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.cp-ship-progress { display: flex; flex-direction: column; gap: 6px; }
.csp-msg {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: rgba(245,244,240,0.5);
}
.csp-msg strong { color: var(--clr-accent2); }
.csp-achieved {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: #4caf7d;
}
.cp-sum-row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: rgba(245,244,240,0.7);
}
.cp-sum-row span:last-child { font-weight: 600; color: var(--clr-white); }
.cp-tax-note {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em;
  color: rgba(245,244,240,0.28); margin-top: -6px;
}
.cp-checkout { width: 100%; justify-content: center; height: 52px; }
.cp-continue {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.35); text-align: center; text-decoration: underline;
  text-underline-offset: 4px; transition: color .2s;
}
.cp-continue:hover { color: var(--clr-white); }
@media (max-width: 800px) {
  .cp-layout { grid-template-columns: 1fr; }
  .cp-summary { position: static; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 60vh; align-items: center;
  background: linear-gradient(148deg,#dcdbd6 0%,#b5b4af 100%);
}
.about-hero-accent {
  position: absolute; left: -100px; bottom: -100px; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(217,61,16,0.15) 0%,transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative; z-index: 2;
  padding: clamp(60px,8vh,100px) clamp(20px,6vw,72px);
}
.ab-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.ab-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent); }
.ab-title {
  font-size: clamp(34px,5vw,58px); font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.02; color: var(--clr-black); margin-bottom: 20px; white-space: pre-line;
}
.ab-lede { font-size: 15px; line-height: 1.65; color: rgba(10,10,11,0.6); max-width: 420px; }
.about-hero-img-wrap {
  height: 100%; overflow: hidden;
}
.about-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ab-section {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ab-section--dark { background: #0e0e0f; }
.ab-section-inner {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px);
}
.ab-section-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.ab-section-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.ab-section-inner h2 {
  font-size: clamp(24px,3.5vw,38px); font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.ab-body { font-size: 15px; line-height: 1.7; color: rgba(245,244,240,0.6); }
.ab-body p { margin-bottom: 14px; }
.ab-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); }
.ab-values-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px;
}
.ab-value {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px; padding: 28px 24px;
  transition: border-color .25s, background .25s;
}
.ab-value:hover { border-color: rgba(217,61,16,0.4); background: rgba(217,61,16,0.04); }
.ab-value-icon { font-size: 28px; margin-bottom: 14px; }
.ab-value-title { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.ab-value-body { font-size: 13px; color: rgba(245,244,240,0.52); line-height: 1.6; }
.ab-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: rgba(255,255,255,0.06);
}
.ab-stat { background: var(--clr-black); padding: 32px 24px; }
.ab-stat-num {
  font-size: clamp(28px,3.5vw,44px); font-weight: 900; color: var(--clr-accent2);
  letter-spacing: -0.03em; margin-bottom: 6px;
}
.ab-stat-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(245,244,240,0.35); line-height: 1.4;
}
.ab-cta-section { text-align: center; }
.ab-cta { align-items: center; }
.ab-cta h2 { font-size: clamp(26px,4vw,44px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px; }
.ab-cta-body { font-size: 15px; color: rgba(245,244,240,0.55); margin-bottom: 32px; max-width: 460px; }
.ab-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-img-wrap { height: 40vw; }
  .ab-story { grid-template-columns: 1fr; }
  .ab-values-grid { grid-template-columns: 1fr 1fr; }
  .ab-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ab-values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-page { min-height: 100vh; }
.ct-hero {
  padding: clamp(56px,8vh,100px) clamp(20px,6vw,72px) clamp(40px,5vh,60px);
  background: linear-gradient(148deg,#181819,#111113);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.ct-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.ct-title { font-size: clamp(32px,5vw,54px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.ct-lede { font-size: 15px; color: rgba(245,244,240,0.55); max-width: 520px; line-height: 1.65; }
.ct-body {
  display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start;
  max-width: 1100px; margin: 0 auto;
  padding: clamp(48px,7vh,80px) clamp(20px,6vw,72px);
}

/* Form fields */
.ct-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,244,240,0.5);
}
.ct-label span { color: var(--clr-accent2); }
.ct-input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 13px 16px;
  font-family: var(--font-sans); font-size: 14px; color: var(--clr-white);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.ct-input::placeholder { color: rgba(245,244,240,0.22); }
.ct-input:focus { outline: none; border-color: var(--clr-accent); background: rgba(255,255,255,0.06); }
.ct-select { appearance: none; cursor: pointer; }
.ct-textarea { resize: vertical; min-height: 140px; }
.ct-submit { margin-top: 4px; }

/* Success / error */
.ct-success {
  background: rgba(76,175,125,0.1); border: 1px solid rgba(76,175,125,0.35);
  border-radius: 3px; padding: 16px 20px; margin-bottom: 24px;
  display: flex; align-items: flex-start; gap: 12px; color: #6fcf97;
}
.ct-success svg { flex-shrink: 0; margin-top: 2px; }
.ct-success strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.ct-success p { font-size: 13px; color: rgba(111,207,151,0.75); }
.ct-error {
  background: rgba(217,61,16,0.1); border: 1px solid rgba(217,61,16,0.4);
  border-radius: 3px; padding: 14px 18px; margin-bottom: 20px;
  font-size: 13px; color: var(--clr-accent2);
}

/* Info column */
.ct-info-block {
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-info-block:last-child { border-bottom: none; margin-bottom: 0; }
.ct-info-eyebrow {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,244,240,0.35); margin-bottom: 16px;
}
.ct-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; margin-bottom: 14px; color: rgba(245,244,240,0.6);
}
.ct-info-item svg { flex-shrink: 0; color: var(--clr-accent2); margin-top: 2px; }
.ct-info-item strong { display: block; font-size: 12px; font-weight: 700; color: var(--clr-white); margin-bottom: 2px; }
.ct-info-item a { color: var(--clr-accent2); transition: color .2s; }
.ct-info-item a:hover { color: var(--clr-white); }
.ct-info-note { font-size: 12px; color: rgba(245,244,240,0.4); margin-bottom: 14px; }
@media (max-width: 860px) {
  .ct-body { grid-template-columns: 1fr; }
  .ct-field-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   POLICY PAGE
══════════════════════════════════════════ */
.policy-page { min-height: 100vh; }
.pol-hero {
  padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px) clamp(32px,4vh,48px);
  background: linear-gradient(148deg,#181819,#111113);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pol-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.pol-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.pol-title { font-size: clamp(28px,4.5vw,48px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 10px; }
.pol-date { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(245,244,240,0.35); }
.pol-body {
  display: grid; grid-template-columns: 1fr 240px; gap: 56px; align-items: start;
  max-width: 1100px; margin: 0 auto;
  padding: clamp(40px,6vh,72px) clamp(20px,6vw,72px);
}
.pol-content {
  font-size: 14px; line-height: 1.8; color: rgba(245,244,240,0.65);
}
.pol-content h2 { font-size: 20px; font-weight: 800; color: var(--clr-white); margin: 32px 0 10px; letter-spacing: -0.02em; }
.pol-content h3 { font-size: 16px; font-weight: 700; color: var(--clr-white); margin: 24px 0 8px; }
.pol-content p { margin-bottom: 14px; }
.pol-content ul,
.pol-content ol { margin: 10px 0 16px 20px; }
.pol-content li { margin-bottom: 6px; }
.pol-content a { color: var(--clr-accent2); text-decoration: underline; text-underline-offset: 3px; }
.pol-sidebar { position: sticky; top: calc(36px + 56px + 20px); }
.pol-sidebar-title {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,244,240,0.35); margin-bottom: 14px;
}
.pol-sidebar nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.pol-sidebar nav a {
  font-size: 13px; color: rgba(245,244,240,0.5); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: color .2s;
}
.pol-sidebar nav a:hover { color: var(--clr-accent2); }
.pol-contact {
  font-size: 13px; color: rgba(245,244,240,0.45); display: flex; flex-direction: column; gap: 4px;
}
.pol-contact strong { color: var(--clr-white); font-size: 12px; }
.pol-contact a { color: var(--clr-accent2); }
@media (max-width: 800px) { .pol-body { grid-template-columns: 1fr; } .pol-sidebar { position: static; } }

/* ══════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════ */
.not-found-page { display: flex; align-items: center; justify-content: center; min-height: 80vh; }
.nf-inner { text-align: center; padding: clamp(32px,6vw,80px); max-width: 540px; margin: 0 auto; }
.nf-code {
  font-size: clamp(80px,15vw,160px); font-weight: 900; letter-spacing: -0.05em;
  color: rgba(245,244,240,0.05); line-height: 1; margin-bottom: -20px;
  font-variant-numeric: tabular-nums;
}
.nf-title { font-size: clamp(24px,4vw,40px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px; }
.nf-body { font-size: 15px; color: rgba(245,244,240,0.5); line-height: 1.65; margin-bottom: 32px; }
.nf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.nf-search-row { display: flex; gap: 10px; }
.nf-search .ct-input { flex: 1; }

/* ══════════════════════════════════════════
   SEARCH PAGE
══════════════════════════════════════════ */
.search-page { min-height: 80vh; }
.srch-hero {
  padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px) clamp(40px,5vh,60px);
  background: linear-gradient(148deg,#181819,#111113);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 100%;
}
.srch-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.srch-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.srch-title { font-size: clamp(24px,4vw,42px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 24px; }
.srch-form { max-width: 560px; }
.srch-row { display: flex; gap: 10px; }
.srch-input { flex: 1; }
.srch-no-results {
  padding: clamp(40px,6vh,72px) clamp(20px,6vw,72px);
  font-size: 15px; color: rgba(245,244,240,0.5);
}

/* ══════════════════════════════════════════
   STARTER SYSTEM PAGE
══════════════════════════════════════════ */

/* Hero */
.ss-hero {
  position: relative; min-height: 90svh;
  display: grid; grid-template-columns: 55fr 45fr;
  overflow: hidden; align-items: center;
}
.ss-hero-media { position: absolute; inset: 0; }
.ss-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ss-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,0.88) 0%, rgba(10,10,11,0.6) 55%, rgba(10,10,11,0.15) 100%);
}
.ss-hero-content {
  position: relative; z-index: 2;
  padding: clamp(100px,14vh,140px) clamp(20px,6vw,72px) clamp(60px,8vh,90px);
  max-width: 580px;
}
.ss-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.ss-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--clr-accent2); }
.ss-title {
  font-size: clamp(38px,5.5vw,64px); font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.02; margin-bottom: 16px; color: var(--clr-white);
}
.ss-subtitle {
  font-size: 16px; line-height: 1.65; color: rgba(245,244,240,0.6);
  max-width: 420px; margin-bottom: 28px;
}

/* Price block */
.ss-price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.ss-price-was { font-size: 18px; color: rgba(245,244,240,0.35); text-decoration: line-through; }
.ss-price-now { font-size: 40px; font-weight: 900; color: var(--clr-white); letter-spacing: -0.03em; }
.ss-price-save {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(217,61,16,0.15); color: var(--clr-accent2);
  border: 1px solid rgba(217,61,16,0.4); padding: 4px 12px; border-radius: 1px;
  align-self: center;
}

/* Buy row (qty + button) */
.ss-buy-row { display: flex; gap: 12px; margin-bottom: 12px; }

/* Trust row */
.ss-trust-row {
  list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 20px;
}
.ss-trust-row li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.45);
}
.ss-trust-row svg { color: var(--clr-accent2); flex-shrink: 0; }

/* Proof strip */
.ss-proof-strip {
  background: #0c0c0d; border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ss-proof-inner { max-width: 900px; margin: 0 auto; padding: clamp(40px,5vh,64px) clamp(20px,5vw,72px); text-align: center; }
.ss-proof-vid { width: 100%; max-width: 700px; border-radius: 3px; margin: 0 auto 20px; display: block; }
.ss-proof-caption {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,244,240,0.4);
}
.ss-proof-img-wrap { margin-bottom: 20px; }

/* Problem */
.ss-problem { background: #111113; border-top: 1px solid rgba(255,255,255,0.05); }
.ss-problem-inner { max-width: 780px; margin: 0 auto; padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px); }
.ss-problem-accent {
  width: 48px; height: 3px; background: var(--clr-accent);
  margin-bottom: 28px; border-radius: 2px;
}
.ss-problem-copy { font-size: 18px; line-height: 1.7; color: rgba(245,244,240,0.65); margin-bottom: 18px; }
.ss-problem-punch {
  font-size: 22px; font-weight: 800; color: var(--clr-white);
  letter-spacing: -0.02em; margin-top: 8px;
}

/* Value stack */
.ss-value-stack { border-top: 1px solid rgba(255,255,255,0.05); }
.ss-vs-inner { max-width: 1200px; margin: 0 auto; padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px); }
.ss-vs-header { margin-bottom: 40px; }
.ss-vs-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.ss-vs-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.ss-vs-title { font-size: clamp(26px,3.5vw,38px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }

/* Value cards grid */
.ss-vs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 40px; }
.ss-vs-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden; position: relative;
  transition: border-color .25s, background .25s;
}
.ss-vs-card:hover { border-color: rgba(217,61,16,0.4); background: rgba(217,61,16,0.04); }
.ss-vs-card--free { border-color: rgba(217,61,16,0.25); }
.ss-vs-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: saturate(0.9); }
.ss-vs-free-tag {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--clr-accent); color: #fff; padding: 4px 10px; border-radius: 1px;
}
.ss-vs-icon-placeholder {
  font-size: 48px; padding: 32px; background: #111113; text-align: center;
}
.ss-vs-body { padding: 20px; }
.ss-vs-name { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; }
.ss-vs-size-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.ss-chip {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 1px;
  border: 1px solid rgba(255,255,255,0.1); color: rgba(245,244,240,0.55);
}
.ss-vs-benefit { font-size: 13px; color: rgba(245,244,240,0.55); line-height: 1.6; margin-bottom: 12px; }
.ss-vs-value {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,244,240,0.4);
}
.ss-vs-free { color: var(--clr-accent2); font-weight: 600; }

/* Total block */
.ss-vs-total {
  background: rgba(217,61,16,0.06); border: 1px solid rgba(217,61,16,0.25);
  border-radius: 4px; padding: 28px 32px; margin-bottom: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
}
.ss-vs-total-row { display: flex; align-items: baseline; gap: 12px; }
.ss-vs-total-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,244,240,0.45);
}
.ss-vs-total-strike {
  font-size: 20px; color: rgba(245,244,240,0.3); text-decoration: line-through;
}
.ss-vs-total-row--price { margin-left: auto; }
.ss-vs-today-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,244,240,0.55);
}
.ss-vs-today-price { font-size: 34px; font-weight: 900; color: var(--clr-white); letter-spacing: -0.03em; }
.ss-vs-savings-badge {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--clr-accent); color: #fff; padding: 8px 16px; border-radius: 2px;
  white-space: nowrap;
}
.ss-vs-cta { width: 100%; justify-content: center; height: 56px; font-size: 13px; }

/* How it works */
.ss-how { background: #0e0e0f; border-top: 1px solid rgba(255,255,255,0.05); }
.ss-how-inner { max-width: 1100px; margin: 0 auto; padding: clamp(56px,8vh,96px) clamp(20px,6vw,72px); }
.ss-how-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.ss-how-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.ss-how-title { font-size: clamp(24px,3.5vw,38px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 40px; }
.ss-how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.ss-how-step { display: flex; flex-direction: column; gap: 10px; }
.ss-how-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--clr-accent2); margin-bottom: 4px;
}
.ss-how-step-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.ss-how-step-body { font-size: 14px; color: rgba(245,244,240,0.55); line-height: 1.65; }

/* Size guide */
.ss-size-guide { border-top: 1px solid rgba(255,255,255,0.05); }
.ss-sg-inner { max-width: 800px; margin: 0 auto; padding: clamp(56px,8vh,80px) clamp(20px,6vw,72px); }
.ss-sg-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clr-accent2); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.ss-sg-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--clr-accent2); }
.ss-sg-title { font-size: clamp(22px,3vw,34px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 28px; }
.ss-sg-table { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.ss-sg-row { display: grid; grid-template-columns: 120px 160px 1fr; gap: 0; background: var(--clr-black); padding: 14px 20px; align-items: center; }
.ss-sg-row--header {
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,244,240,0.35);
}
.ss-sg-mat-name { font-size: 14px; font-weight: 700; }
.ss-sg-dim { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--clr-accent2); }
.ss-sg-use { font-size: 13px; color: rgba(245,244,240,0.55); }

/* Reviews */
.ss-reviews { background: #0e0e0f; border-top: 1px solid rgba(255,255,255,0.05); }
.ss-reviews-inner { max-width: 1100px; margin: 0 auto; padding: clamp(56px,8vh,80px) clamp(20px,6vw,72px); }
.ss-reviews-title { font-size: clamp(20px,3vw,30px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 28px; }
.ss-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 16px; }

/* FAQ */
.ss-faq { border-top: 1px solid rgba(255,255,255,0.05); }
.ss-faq-inner { max-width: 780px; margin: 0 auto; padding: clamp(56px,8vh,80px) clamp(20px,6vw,72px); }

/* Guarantee */
.ss-guarantee { background: rgba(217,61,16,0.05); border-top: 1px solid rgba(217,61,16,0.2); border-bottom: 1px solid rgba(217,61,16,0.2); }
.ss-guarantee-inner { max-width: 680px; margin: 0 auto; padding: clamp(48px,7vh,80px) clamp(20px,6vw,72px); text-align: center; }
.ss-guarantee-icon { font-size: 40px; margin-bottom: 16px; }
.ss-guarantee-title { font-size: clamp(22px,3vw,32px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px; }
.ss-guarantee-copy { font-size: 15px; color: rgba(245,244,240,0.6); line-height: 1.7; max-width: 500px; margin: 0 auto; }
.ss-guarantee-copy strong { color: var(--clr-white); font-weight: 700; }

/* Final CTA */
.ss-final-cta { background: radial-gradient(130% 90% at 50% 100%, #1c1c1f 0%, #08080a 70%); border-top: 1px solid rgba(255,255,255,0.05); }
.ss-final-inner { max-width: 620px; margin: 0 auto; padding: clamp(64px,9vh,100px) clamp(20px,6vw,72px); text-align: center; }
.ss-final-title { font-size: clamp(28px,4vw,46px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; }
.ss-final-btn { width: 100%; justify-content: center; height: 56px; font-size: 13px; margin-top: 20px; }
.ss-final-trust { list-style: none; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 18px; }
.ss-final-trust li { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(245,244,240,0.35); }

/* Upsell */
.ss-upsell { border-top: 1px solid rgba(255,255,255,0.05); }
.ss-upsell-inner { max-width: 1100px; margin: 0 auto; padding: clamp(48px,7vh,80px) clamp(20px,6vw,72px); }
.ss-upsell-title { font-size: clamp(18px,2.5vw,24px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 24px; }

/* ── Accessories row on collection page ── */
.prod-grid--accessories { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 20px; }
.coll-accessories-header { padding: clamp(32px,4vh,48px) 0 20px; max-width: 1400px; margin: 0 auto; }
.coll-accessories-title { font-size: clamp(18px,2.5vw,26px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.coll-accessories-sub { font-size: 14px; color: rgba(245,244,240,0.5); }
.cc-price-range {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--clr-accent2); margin-top: 6px;
}

/* ── ORDER BUMP ── */
.order-bump {
  background: rgba(217,61,16,0.06); border: 1px solid rgba(217,61,16,0.3);
  border-radius: 3px; padding: 16px;
}
.ob-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.ob-box {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 3px; margin-top: 2px;
  border: 2px solid rgba(217,61,16,0.5); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, border-color .18s;
}
.ob-check { position: absolute; opacity: 0; width: 0; height: 0; }
.ob-check:checked + .ob-box { background: var(--clr-accent); border-color: var(--clr-accent); }
.ob-tick { color: #fff; font-size: 13px; font-weight: 700; opacity: 0; transition: opacity .15s; }
.ob-check:checked + .ob-box .ob-tick { opacity: 1; }
.ob-content { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ob-tag {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clr-accent2); background: rgba(217,61,16,0.12);
  padding: 2px 8px; border-radius: 1px; align-self: flex-start;
}
.ob-title { font-size: 13px; font-weight: 700; color: var(--clr-white); }
.ob-desc { font-size: 11px; color: rgba(245,244,240,0.5); }
.ob-price { font-size: 14px; font-weight: 800; color: var(--clr-accent2); margin-top: 2px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .ss-hero { grid-template-columns: 1fr; min-height: auto; }
  .ss-hero-content { padding-top: clamp(100px,16vh,140px); }
  .ss-vs-grid { grid-template-columns: 1fr; }
  .ss-how-steps { grid-template-columns: 1fr; }
  .ss-sg-row { grid-template-columns: 100px 1fr; }
  .ss-sg-dim { display: none; }
}
@media (max-width: 600px) {
  .ss-vs-total { flex-direction: column; gap: 14px; }
  .ss-vs-total-row--price { margin-left: 0; }
  .ss-final-trust { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
   Uses --ann-h and --offset CSS vars set in theme.liquid <style> block.
   Nav sits at top: var(--ann-h). Page content offset by var(--offset).
══════════════════════════════════════════ */
.ann-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--ann-h);
  background: var(--clr-charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ann-bar-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 56px);
}
.ann-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(245,244,240,0.6);
  white-space: nowrap;
}
.ann-item--accent { color: var(--clr-accent2); }
.ann-divider {
  color: rgba(245,244,240,0.2);
  font-size: 14px;
}

/* Nav sits directly below the ann-bar */
.site-nav {
  top: var(--ann-h) !important;
}

/* All fixed/sticky elements offset by ann-h + nav-h */
.sticky-buy   { top: var(--offset) !important; }
.cat-bar      { top: var(--offset) !important; }
.cp-summary   { top: calc(var(--offset) + 20px) !important; }
.pol-sidebar  { top: calc(var(--offset) + 20px) !important; }
.gallery      { top: calc(var(--offset) + 16px) !important; }

/* Page body padding accounts for both bar + nav */
.page-body    { padding-top: var(--offset); }
.snap-section { padding-top: var(--offset); }

/* Mobile: hide middle and right messages */
@media (max-width: 700px) {
  .ann-divider { display: none; }
  .ann-item:not(:first-child) { display: none; }
}
