/* =============================================================
   CB 2.0 — cb-site.css  (Sprint 1: Foundation)
   Bootstrap 5.3.8 layer — design tokens, base, shared components
   ============================================================= */

/* ── 1. Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand palette */
  --cb-navy:        #0B1F33;
  --cb-navy-mid:    #1A2B3C;
  --cb-navy-card:   #16293C;
  --cb-navy-light:  #2A3F55;
  --cb-gunmetal:    #2F3A45;
  --cb-steel:       #AEB8C5;
  --cb-steel-dark:  #3A4A58;
  --cb-border:      #E2E6EA;
  --cb-lightgray:   #F2F4F6;
  --cb-text:        #1A1A2E;
  --cb-muted:       #6B7280;
  --cb-white:       #FFFFFF;

  /* Action + state */
  --cb-blue:        #1F3BFF;
  --cb-blue-hover:  #1530E0;
  --cb-brass:       #C49E5B;   /* eyebrows, active states ONLY */
  --cb-green:       #B3FF3B;   /* neon — dark surfaces only */
  --cb-green-dark:  #1B6B3A;
  --cb-red:         #C0392B;

  /* Surfaces */
  --cb-surface-light: #FFFFFF;
  --cb-surface-alt:   #F5F6F8;
  --cb-surface-dark:  #0B1F33;
  --cb-surface-darker:#0D1117;

  /* Typography */
  --cb-font:       'Satoshi', sans-serif;
  --cb-font-mono:  'Courier New', monospace;

  /* Spacing scale */
  --cb-space-1:  4px;
  --cb-space-2:  8px;
  --cb-space-3:  12px;
  --cb-space-4:  16px;
  --cb-space-5:  24px;
  --cb-space-6:  32px;
  --cb-space-7:  48px;
  --cb-space-8:  64px;
  --cb-space-9:  96px;
  --cb-space-10: 128px;

  /* Radius */
  --cb-radius-sm: 3px;
  --cb-radius:    6px;
  --cb-radius-lg: 12px;
  --cb-radius-xl: 20px;

  /* Transitions */
  --cb-transition: 0.15s ease;
  --cb-transition-md: 0.25s ease;

  /* Navbar */
  --cb-navbar-height: 68px;
  --cb-navbar-height-mobile: 60px;
}

/* ── 2. Base Reset & Typography ────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--cb-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* Zero out row negative margins when inside a zero-padding container */
.px-0 > .row { margin-left: 0; margin-right: 0; }

/* Bootstrap row negative margins overflow fix.
   .row.g-5 sets --bs-gutter-x:3rem → margin:-24px each side.
   .container-xl only has 12px padding → 12px bleed per side.
   Cap gutter-x on mobile so row margins never exceed container padding. */
@media (max-width: 991.98px) {
  .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
  .row.g-4, .row.gx-4 { --bs-gutter-x: 1.5rem; }
}

main {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

a {
  color: var(--cb-blue);
  text-decoration: none;
  transition: color var(--cb-transition);
}
a:hover { color: var(--cb-blue-hover); }

img, video { max-width: 100%; height: auto; display: block; }

/* Headings — font only, no color override (main.css owns colors on old pages) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--cb-font);
  margin-top: 0;
}

p { margin-top: 0; margin-bottom: var(--cb-space-4); }
p:last-child { margin-bottom: 0; }

/* ── Typography scale (from Jeremy's cb-site.css) ─────────── */
.t-eyebrow { font-size: 11px; font-weight: 700; line-height: 1.4; letter-spacing: 0.20em; text-transform: uppercase; }
.t-tier1 { font-size: clamp(52px, 7.5vw, 96px); font-weight: 900; line-height: 1.0; letter-spacing: -0.01em; text-transform: uppercase; }
.t-tier2 { font-size: clamp(38px, 5.5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: 0.01em; text-transform: uppercase; }
.t-body-lg { font-size: 17px; font-weight: 400; line-height: 1.7; }
.t-body    { font-size: 15px; font-weight: 400; line-height: 1.6; }

/* ── Buttons (from Jeremy's cb-site.css) ───────────────────── */
.btn { --bs-btn-font-family: 'Satoshi', sans-serif; --bs-btn-font-weight: 700; --bs-btn-font-size: 13px; --bs-btn-line-height: 1.2; --bs-btn-padding-y: 13px; --bs-btn-padding-x: 24px; --bs-btn-border-radius: 3px; --bs-btn-border-width: 0; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.08em; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.btn:focus-visible { outline: 2px solid var(--cb-white); outline-offset: 2px; box-shadow: none; }
.btn-lg { --bs-btn-padding-y: 15px; --bs-btn-padding-x: 32px; --bs-btn-font-size: 15px; letter-spacing: 0.10em; }
.btn-primary { --bs-btn-bg: var(--cb-blue); --bs-btn-border-color: var(--cb-blue); --bs-btn-color: var(--cb-white); --bs-btn-hover-bg: var(--cb-blue-hover); --bs-btn-hover-border-color: var(--cb-blue-hover); --bs-btn-hover-color: var(--cb-white); --bs-btn-active-bg: var(--cb-blue-hover); }
.btn-ghost-cb { --bs-btn-border-width: 2px; --bs-btn-padding-y: 11px; --bs-btn-padding-x: 22px; --bs-btn-bg: rgba(255,255,255,0.18); --bs-btn-color: var(--cb-white); --bs-btn-border-color: rgba(255,255,255,0.3); --bs-btn-hover-bg: rgba(255,255,255,0.28); --bs-btn-hover-border-color: rgba(255,255,255,0.6); --bs-btn-hover-color: var(--cb-white); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.btn-ghost-cb.btn-lg { --bs-btn-padding-y: 13px; --bs-btn-padding-x: 30px; }

/* ── Hero section (from Jeremy's cb-site.css) ──────────────── */
.hero-section { background: var(--cb-navy); min-height: min(780px, calc(85vh - 76px)); display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,31,51,0.92) 0%, rgba(11,31,51,0.80) 30%, rgba(11,31,51,0.45) 55%, transparent 75%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 56px 0 48px 64px; max-width: 600px; overflow-wrap: break-word; word-break: break-word; }
@media (max-width: 1199.98px) { .hero-content { padding: 48px 0 52px 48px; max-width: 540px; } }
@media (max-width: 991.98px)  { .hero-content { padding: 40px 0 44px 36px; max-width: 100%; } }
@media (max-width: 767.98px)  { .hero-content { padding: 32px 24px 36px 24px; max-width: 100%; } }
@media (max-width: 767.98px)  { .hero-content * { max-width: 100% !important; } }
@media (max-width: 767.98px)  { .hero-section { min-height: 520px; } }
.hero-anchor { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-anchor-price { font-size: 13px; font-weight: 700; color: var(--cb-white); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-anchor-ship  { font-size: 13px; font-weight: 600; color: var(--cb-steel); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-anchor-sep   { color: rgba(174,184,197,0.4); }
.hero-anchor-link  { font-size: 13px; font-weight: 700; color: var(--cb-blue); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-anchor-link:hover { color: var(--cb-white); }

/* ── Section eyebrow ────────────────────────────────────────── */
/* .section-eyebrow is the old class name, both get brass */
.section-eyebrow,
.cb-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cb-brass);
  margin-bottom: var(--cb-space-2);
}
.surface-dark .cb-eyebrow,
.surface-darker .cb-eyebrow { color: var(--cb-brass); }

/* ── 3. Layout ─────────────────────────────────────────────── */
.cb-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--cb-space-5);
}

@media (max-width: 767.98px) {
  .cb-container { padding-inline: var(--cb-space-4); }
}

/* Surface rhythm — alternate light/dark, never 3 darks */
.surface-light   { background: var(--cb-surface-light); color: var(--cb-text); }
.surface-alt     { background: var(--cb-surface-alt);   color: var(--cb-text); }
.surface-dark    { background: var(--cb-surface-dark);  color: var(--cb-white); }
.surface-darker  { background: var(--cb-surface-darker);color: var(--cb-white); }

.surface-dark  h1, .surface-dark  h2, .surface-dark  h3,
.surface-dark  h4, .surface-dark  h5, .surface-dark  h6,
.surface-darker h1, .surface-darker h2, .surface-darker h3,
.surface-darker h4, .surface-darker h5, .surface-darker h6 { color: var(--cb-white); }

.surface-dark  p, .surface-darker p { color: var(--cb-steel); }

/* Section padding defaults */
.cb-section      { padding-block: var(--cb-space-9); }
.cb-section-sm   { padding-block: var(--cb-space-7); }
.cb-section-lg   { padding-block: var(--cb-space-10); }

@media (max-width: 991.98px) {
  .cb-section    { padding-block: var(--cb-space-7); }
  .cb-section-sm { padding-block: var(--cb-space-6); }
  .cb-section-lg { padding-block: var(--cb-space-8); }
}

/* ── 4. Buttons ────────────────────────────────────────────── */
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cb-space-2);
  padding: 13px 28px;
  font-family: var(--cb-font);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  border-radius: var(--cb-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--cb-transition), color var(--cb-transition), border-color var(--cb-transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.cb-btn:focus-visible {
  outline: 2px solid var(--cb-blue);
  outline-offset: 3px;
}

/* Primary — blue fill */
.cb-btn-primary {
  background: var(--cb-blue);
  color: var(--cb-white);
  border-color: var(--cb-blue);
}
.cb-btn-primary:hover {
  background: var(--cb-blue-hover);
  border-color: var(--cb-blue-hover);
  color: var(--cb-white);
}

/* Ghost — white outline on dark */
.cb-btn-ghost {
  background: transparent;
  color: var(--cb-white);
  border-color: rgba(255,255,255,0.35);
}
.cb-btn-ghost:hover {
  border-color: var(--cb-white);
  color: var(--cb-white);
}

/* Secondary — outline on light */
.cb-btn-secondary {
  background: transparent;
  color: var(--cb-text);
  border-color: var(--cb-border);
}
.cb-btn-secondary:hover {
  border-color: var(--cb-text);
  color: var(--cb-text);
}

/* Green neon — dark surfaces only */
.cb-btn-green {
  background: var(--cb-green);
  color: var(--cb-navy);
  border-color: var(--cb-green);
}
.cb-btn-green:hover {
  background: #c5ff52;
  border-color: #c5ff52;
  color: var(--cb-navy);
}

/* Destructive */
.cb-btn-danger {
  background: var(--cb-red);
  color: var(--cb-white);
  border-color: var(--cb-red);
}

/* Sizes */
.cb-btn-sm { padding: 9px 18px; font-size: 0.75rem; }
.cb-btn-lg { padding: 17px 36px; font-size: 0.9375rem; }

/* ── 5. Announcement Bar — copied directly from Jeremy's pv-announce ── */
.pv-announce { display: none; background: var(--cb-lightgray); gap: 12px; padding: 11px 24px; font-size: 13px; font-weight: 600; color: var(--cb-text); }
.pv-announce.is-active { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; overflow: hidden; }
.pv-announce > span { min-width: 0; text-align: center; overflow-wrap: break-word; }
.pv-announce strong { font-weight: 800; }
.pv-announce a { color: var(--cb-blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.pv-code { font-family: inherit; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--cb-blue); background: rgba(31,59,255,.08); border: 1px dashed rgba(31,59,255,.45); border-radius: 4px; padding: 3px 10px; cursor: pointer; white-space: nowrap; transition: background 0.15s; border-width: 1px; }
.pv-code:hover { background: rgba(31,59,255,.16); }
.pv-code:focus-visible { outline: 2px solid var(--cb-blue); outline-offset: 2px; }
@media (max-width: 575.98px) { .pv-announce { padding: 8px 16px; font-size: 12px; } }

/* ── 6. Navbar ─────────────────────────────────────────────── */
.cb-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--cb-navy);
  border-bottom: 1px solid var(--cb-navy-light);
}

.cb-navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 26px;
}

/* Logo */
.cb-navbar-logo { display: flex; align-items: center; flex: none; text-decoration: none; }
.cb-navbar-logo img { width: 115px; height: auto; display: block; }
.cb-logo-fallback { font-family: 'Satoshi', sans-serif; font-weight: 800; font-size: 15px; color: var(--navy); letter-spacing: 0.02em; text-transform: uppercase; }

/* Product nav links — margin-left:auto pushes block right */
.cb-nav-products {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-left: auto;
}
.cb-nav-products > a,
.cb-nav-megawrap > a {
  color: var(--cb-steel);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--cb-transition), border-color var(--cb-transition);
  white-space: nowrap;
}
.cb-nav-products > a:hover,
.cb-nav-megawrap > a:hover { color: var(--cb-white); border-bottom-color: var(--cb-blue); }
.cb-nav-products > a.active,
.cb-nav-megawrap > a.active { color: var(--cb-white); border-bottom-color: rgba(255,255,255,.45); }

/* position:static — lets .cb-navbar (sticky) be the containing block for .pv-bmega */
.cb-nav-megawrap { position: static; display: flex; align-items: center; }

/* Divider */
.cb-nav-div {
  width: 1px;
  height: 20px;
  background: var(--cb-navy-light);
  flex: none;
}

/* Right cluster */
.cb-nav-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Resources link (has icon) */
.cb-nav-resources {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cb-steel);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--cb-transition);
  white-space: nowrap;
}
.cb-nav-resources svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cb-nav-resources:hover { color: var(--cb-white); }
.cb-nav-resources.active { color: var(--cb-white); border-bottom-color: rgba(255,255,255,.45); }

/* Medical link — Humimic purple, has arrow icon */
.cb-nav-medical {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9B7BFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--cb-transition);
  white-space: nowrap;
}
.cb-nav-medical svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cb-nav-medical:hover { color: #B79BFF; }

/* Icon buttons (search, account, cart, burger) */
.cb-nav-icon,
.cb-nav-bag,
.cb-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--cb-steel);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color var(--cb-transition);
}
.cb-nav-icon svg,
.cb-nav-bag svg,
.cb-menu-toggle svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cb-nav-icon:hover,
.cb-nav-bag:hover,
.cb-menu-toggle:hover { color: var(--cb-white); }

/* Cart badge */
.cb-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--cb-blue);
  color: var(--cb-white);
  font-size: 10px;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Mobile hamburger — hidden on desktop */
.cb-menu-toggle { display: none; }

@media (max-width: 767.98px) {
  .cb-nav-products,
  .cb-nav-resources,
  .cb-nav-medical,
  .cb-nav-div { display: none; }
  .cb-menu-toggle { display: flex; }
  .cb-navbar-inner { justify-content: space-between; padding: 14px 18px; }
  .cb-nav-cluster { margin-left: auto; }
}

/* ── 7. Megamenu (product dropdowns) ───────────────────────── */
.cb-bmega {
  position: absolute;
  top: calc(100% + 16px);
  right: 26px;
  left: auto;
  width: min(860px, calc(100vw - 52px));
  background: var(--cb-navy);
  display: none;
  z-index: 60;
  box-shadow: 0 24px 48px rgba(0,0,0,.45);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  border-top: 2px solid var(--cb-steel-dark);
}
.cb-bmega-lite { width: min(480px, calc(100vw - 52px)); }
.cb-nav-megawrap:hover > .cb-bmega { display: block; }

/* ── Jeremy's pv-mega system (ported from design handoff) ──── */
/* pv-megawrap: static so .cb-navbar (sticky) becomes containing block for the dropdown */
.pv-megawrap { position: static; display: flex; align-items: center; }
/* hover now handled by JS (initMegaMenus) for reliable cross-element tracking */
.pv-bmega { position: absolute; top: 100%; left: 26px; right: 26px; width: auto; background: var(--cb-navy); display: none; z-index: 60; box-shadow: 0 24px 48px rgba(0,0,0,.45); border-radius: 0 0 14px 14px; overflow: hidden; border-top: 2px solid var(--cb-steel-dark); text-transform: none; }
.pv-bmega-lite { left: auto; right: 26px; width: min(720px, calc(100vw - 52px)); }
.pv-bmegainner { padding: 20px 26px; }
.pv-cal { display: flex; align-items: center; gap: 7px; background: #0E2A1C; color: var(--cb-green); border-radius: 5px; padding: 6px 12px; font-size: 11px; margin-bottom: 16px; }
.pv-cal svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.pv-bmain { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: stretch; }
.pv-bleft { display: flex; flex-direction: column; }
.pv-bcols { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 24px; }
.pv-blabel { font-size: 10px; color: var(--cb-brass); font-weight: 700; letter-spacing: .13em; margin-bottom: 12px; text-transform: uppercase; }
.pv-std { line-height: 1.85; }
.pv-std .nm { font-size: 13px; color: var(--cb-white); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; text-decoration: none; display: inline-block; }
.pv-std .nm:hover { text-decoration: underline; text-decoration-color: var(--cb-blue); text-underline-offset: 3px; }
.pv-std .nm span { color: var(--cb-steel); font-weight: 600; }
.pv-spec { font-size: 13px; color: var(--cb-white); line-height: 2; }
.pv-mitem { display: block; font-size: 13px; color: var(--cb-white); text-decoration: none; line-height: 1.85; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.pv-mitem:hover { text-decoration: underline; text-decoration-color: var(--cb-blue); text-underline-offset: 3px; }
.pv-viewall { font-size: 12px; color: var(--cb-blue); font-weight: 700; text-decoration: none; display: inline-block; margin-top: 8px; }
.pv-viewall:hover { text-decoration: underline; }
.pv-more { display: inline-block; font-size: 11px; color: var(--cb-blue); font-weight: 700; text-decoration: none; margin-top: 8px; }
.pv-more:hover { text-decoration: underline; }
.pv-help { background: var(--cb-navy-card); border: 1px solid var(--cb-navy-light); border-radius: 6px; padding: 11px 13px; margin-bottom: 10px; }
.pv-help .need { font-size: 14px; color: var(--cb-white); font-weight: 700; margin: 3px 0 2px; text-transform: uppercase; letter-spacing: .03em; }
.pv-help .det { font-size: 11px; color: var(--cb-steel); }
.pv-starter { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--cb-navy-light); margin-top: 30px; padding-top: 16px; }
.pv-starter .ey { font-size: 10px; color: var(--cb-brass); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; }
.pv-starter .h { font-size: 14px; color: var(--cb-white); font-weight: 700; margin-top: 3px; text-transform: uppercase; letter-spacing: .03em; }
.pv-starter .d { font-size: 12px; color: var(--cb-steel); margin-top: 2px; }
.pv-starter .cta { font-size: 12px; color: var(--cb-white); font-weight: 700; text-decoration: none; border: 1px solid var(--cb-navy-light); border-radius: 6px; padding: 9px 16px; white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; flex: none; }
.pv-starter .cta:hover { border-color: var(--cb-steel-dark); }
.pv-bvisual { position: relative; border-radius: 6px; overflow: hidden; min-height: 248px; }
.pv-bvisual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-bvisual .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 14px 13px; background: linear-gradient(to top, rgba(11,31,51,.94), rgba(11,31,51,0)); }
.pv-bvisual .cap .t { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: .03em; }
.pv-bvisual .cap .s { font-size: 11px; color: #D6DCE3; margin-top: 2px; }
.pv-bvisual.ph { background: radial-gradient(120% 120% at 50% 30%, #24323f 0%, var(--cb-navy) 90%); }
.cl-prods { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px 22px; }
.pv-3dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 44px; max-width: 640px; }

.cb-bmegainner { padding: 20px 26px; }

.cb-blabel {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cb-steel-dark);
  margin-bottom: 8px;
}
.cb-bstd a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--cb-white);
  text-decoration: none;
  padding: 6px 0;
}
.cb-bstd a span { color: var(--cb-steel); font-weight: 500; }
.cb-bstd a:hover { color: var(--cb-blue); }

.cb-bspec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cb-bspec a {
  font-size: 13px;
  font-weight: 500;
  color: var(--cb-steel);
  text-decoration: none;
  padding: 4px 0;
}
.cb-bspec a:hover { color: var(--cb-white); }

.cb-bviewall {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cb-blue);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.cb-bviewall:hover { color: var(--cb-blue-hover); }

.cb-bmore {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cb-steel-dark);
  text-decoration: none;
}
.cb-bmore:hover { color: var(--cb-white); }


/* ── 8. Mobile Menu (Offcanvas) ────────────────────────────── */
.cb-mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1040;
}
.cb-mobile-menu-backdrop.is-open { display: block; }

.cb-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--cb-white);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform var(--cb-transition-md);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: var(--cb-space-5) var(--cb-space-5) var(--cb-space-8);
}
.cb-mobile-menu.is-open { transform: translateX(0); }
body.menu-open { overflow: hidden; }

.cb-mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--cb-muted);
  padding: 0 0 var(--cb-space-4);
  min-height: 44px;
}
.cb-mobile-menu-close:hover { color: var(--cb-text); }

.cb-mobile-menu__brand {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cb-navy);
  padding-bottom: var(--cb-space-4);
  border-bottom: 1px solid var(--cb-border);
  margin-bottom: var(--cb-space-4);
}

.cb-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cb-mobile-menu ul li { border-bottom: 1px solid var(--cb-border); }
.cb-mobile-menu ul li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cb-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cb-mobile-menu ul li a:hover { color: var(--cb-blue); }

/* Mobile accordion submenu */
.cb-mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cb-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cb-mobile-accordion-toggle .cb-icon-chevron {
  font-size: 0.75rem;
  transition: transform var(--cb-transition);
}
.cb-mobile-accordion-toggle.is-open .cb-icon-chevron { transform: rotate(180deg); }

.cb-mobile-submenu {
  display: none;
  padding-left: var(--cb-space-4);
  padding-bottom: var(--cb-space-2);
}
.cb-mobile-submenu.is-open { display: block; }
.cb-mobile-submenu li { border-bottom: none; }
.cb-mobile-submenu li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cb-muted);
  text-transform: none;
  letter-spacing: 0;
  min-height: 40px;
}

/* ── 9. Toast Notification ─────────────────────────────────── */
.cb-toast-container {
  position: fixed;
  bottom: var(--cb-space-5);
  right: var(--cb-space-5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--cb-space-2);
  pointer-events: none;
}
.cb-toast {
  min-width: 240px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: var(--cb-radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cb-white);
  background: var(--cb-navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  pointer-events: auto;
  animation: cbToastIn 0.2s ease;
}
.cb-toast.is-leaving { animation: cbToastOut 0.2s ease forwards; }
.cb-toast--success { background: var(--cb-green-dark); }
.cb-toast--error   { background: var(--cb-red); }
.cb-toast--warning { background: #92610c; }

@keyframes cbToastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cbToastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

/* ── 10. Footer ────────────────────────────────────────────── */
.cb-footer {
  background: var(--cb-navy);
  color: var(--cb-steel);
  padding-top: var(--cb-space-9);
  padding-bottom: var(--cb-space-6);
}

.cb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--cb-space-7);
  padding-bottom: var(--cb-space-7);
  border-bottom: 1px solid var(--cb-steel-dark);
}

@media (max-width: 1199.98px) {
  .cb-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--cb-space-5); }
}
@media (max-width: 767.98px) {
  .cb-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--cb-space-5); }
  .cb-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 479.98px) {
  .cb-footer-grid { grid-template-columns: 1fr; }
}

/* Brand column */
.cb-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--cb-steel);
  margin: var(--cb-space-4) 0;
  max-width: 280px;
}
.cb-footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}
.cb-footer-logo img { width: 115px; height: auto; display: block; filter: brightness(0) invert(1); }
.cb-footer-logo .cb-logo-fallback { font-size: 1rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cb-white); }
.cb-footer-tagline { font-size: 0.9375rem; font-weight: 600; color: var(--cb-white); margin: 0 0 16px; letter-spacing: 0.01em; }
.cb-footer-all-resources { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; letter-spacing: 0.02em; }
.cb-footer-all-resources:hover { color: var(--white); }

.cb-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cb-space-2);
  margin-bottom: var(--cb-space-4);
}
.cb-footer-badges span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cb-steel);
  border: 1px solid var(--cb-steel-dark);
  padding: 4px 10px;
  border-radius: 99px;
}

.cb-footer-social {
  display: flex;
  gap: var(--cb-space-3);
}
.cb-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--cb-steel);
  border: 1px solid var(--cb-steel-dark);
  border-radius: var(--cb-radius-sm);
  transition: color var(--cb-transition), border-color var(--cb-transition);
}
.cb-footer-social a:hover {
  color: var(--cb-white);
  border-color: var(--cb-white);
}

/* Link columns */
.cb-footer h5 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cb-white);
  margin-bottom: var(--cb-space-4);
}
.cb-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--cb-space-2);
}
.cb-footer-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cb-steel);
  transition: color var(--cb-transition);
}
.cb-footer-links li a:hover { color: var(--cb-white); }

/* Footer bottom bar */
.cb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--cb-space-3);
  padding-top: var(--cb-space-5);
}
.cb-footer-bottom p {
  font-size: 0.8125rem;
  color: var(--cb-steel-dark);
  margin: 0;
}
.cb-footer-bottom-links {
  display: flex;
  gap: var(--cb-space-4);
}
.cb-footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--cb-steel-dark);
}
.cb-footer-bottom-links a:hover { color: var(--cb-white); }

/* ── 11. Newsletter / CTA Banner ───────────────────────────── */
.cb-cta-banner {
  background: var(--cb-navy-mid);
  padding-block: var(--cb-space-8);
  text-align: center;
}
.cb-cta-banner h2 { color: var(--cb-white); margin-bottom: var(--cb-space-3); }
.cb-cta-banner p  { color: var(--cb-steel); max-width: 480px; margin-inline: auto; margin-bottom: var(--cb-space-5); }

.cb-newsletter-form {
  display: flex;
  max-width: 480px;
  margin-inline: auto;
  gap: 0;
}
.cb-newsletter-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  font-family: var(--cb-font);
  font-size: 0.9375rem;
  color: var(--cb-text);
  background: var(--cb-white);
  border: 2px solid var(--cb-border);
  border-right: none;
  border-radius: var(--cb-radius-sm) 0 0 var(--cb-radius-sm);
  outline: none;
  min-width: 0;
}
.cb-newsletter-form input[type="email"]:focus { border-color: var(--cb-blue); }
.cb-newsletter-form button {
  padding: 13px 24px;
  font-family: var(--cb-font);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--cb-blue);
  color: var(--cb-white);
  border: 2px solid var(--cb-blue);
  border-radius: 0 var(--cb-radius-sm) var(--cb-radius-sm) 0;
  cursor: pointer;
  transition: background var(--cb-transition);
  white-space: nowrap;
}
.cb-newsletter-form button:hover { background: var(--cb-blue-hover); border-color: var(--cb-blue-hover); }

@media (max-width: 479.98px) {
  .cb-newsletter-form { flex-direction: column; }
  .cb-newsletter-form input[type="email"] {
    border-right: 2px solid var(--cb-border);
    border-bottom: none;
    border-radius: var(--cb-radius-sm) var(--cb-radius-sm) 0 0;
  }
  .cb-newsletter-form button {
    border-radius: 0 0 var(--cb-radius-sm) var(--cb-radius-sm);
  }
}

/* ── 12. Scroll-to-Top ─────────────────────────────────────── */
.cb-scroll-top {
  position: fixed;
  bottom: var(--cb-space-5);
  right: var(--cb-space-5);
  width: 44px;
  height: 44px;
  background: var(--cb-navy);
  color: var(--cb-white);
  border: none;
  border-radius: var(--cb-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--cb-transition), background var(--cb-transition);
  z-index: 900;
  font-size: 0.875rem;
}
.cb-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.cb-scroll-top:hover { background: var(--cb-blue); }

/* ── 13. Cards ─────────────────────────────────────────────── */
.cb-card {
  background: var(--cb-white);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius);
  overflow: hidden;
}
.cb-card-dark {
  background: var(--cb-navy-card);
  border-color: var(--cb-navy-light);
}
.cb-card-body { padding: var(--cb-space-5); }

/* Badge */
.cb-badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--cb-radius-sm);
  border: 1px solid currentColor;
}
.cb-badge-brass { color: var(--cb-brass); border-color: rgba(196,158,91,0.35); }
.cb-badge-blue  { color: var(--cb-blue);  border-color: rgba(31,59,255,0.25); background: rgba(31,59,255,0.06); }
.cb-badge-green { color: var(--cb-green); border-color: rgba(179,255,59,0.3); }
.cb-badge-steel { color: var(--cb-steel); border-color: var(--cb-steel-dark); }

/* ── 14. Forms ─────────────────────────────────────────────── */
.cb-form-group { margin-bottom: var(--cb-space-4); }

.cb-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cb-text);
  margin-bottom: 6px;
}

.cb-input,
.cb-select,
.cb-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--cb-font);
  font-size: 0.9375rem;
  color: var(--cb-text);
  background: var(--cb-white);
  border: 1.5px solid var(--cb-border);
  border-radius: var(--cb-radius-sm);
  transition: border-color var(--cb-transition);
  outline: none;
  appearance: none;
}
.cb-input:focus,
.cb-select:focus,
.cb-textarea:focus { border-color: var(--cb-blue); }

.cb-input::placeholder,
.cb-textarea::placeholder { color: var(--cb-muted); }

.cb-input.is-error,
.cb-select.is-error,
.cb-textarea.is-error { border-color: var(--cb-red); }

.cb-field-error {
  display: block;
  font-size: 0.8125rem;
  color: var(--cb-red);
  margin-top: 4px;
}

/* ── 15. Utilities ─────────────────────────────────────────── */
.cb-text-brass  { color: var(--cb-brass) !important; }
.cb-text-blue   { color: var(--cb-blue)  !important; }
.cb-text-steel  { color: var(--cb-steel) !important; }
.cb-text-muted  { color: var(--cb-muted) !important; }
.cb-text-white  { color: var(--cb-white) !important; }
.cb-text-navy   { color: var(--cb-navy)  !important; }
.cb-text-green  { color: var(--cb-green) !important; }

.cb-uppercase   { text-transform: uppercase; }
.cb-tracking-wide { letter-spacing: 0.08em; }
.cb-tracking-wider { letter-spacing: 0.14em; }

.cb-divider {
  border: none;
  border-top: 1px solid var(--cb-border);
  margin-block: var(--cb-space-5);
}
.cb-divider-dark { border-top-color: var(--cb-steel-dark); }

/* Visually hidden (accessible) */
.cb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus ring override for Bootstrap */
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cb-blue);
  outline-offset: 3px;
}

/* Override Bootstrap primary color */
.btn-primary { --bs-btn-bg: var(--cb-blue); --bs-btn-border-color: var(--cb-blue); --bs-btn-hover-bg: var(--cb-blue-hover); --bs-btn-hover-border-color: var(--cb-blue-hover); }
.text-primary { color: var(--cb-blue) !important; }
.bg-primary   { background-color: var(--cb-blue) !important; }

/* ── Jeremy-system CSS variable aliases ──────────────────────
   Jeremy's component CSS uses unprefixed tokens (--navy, --blue…).
   These aliases map them to our --cb-* values so his CSS works without modification.
   ─────────────────────────────────────────────────────────── */
:root {
  --navy:        var(--cb-navy);
  --navy-mid:    var(--cb-navy-mid);
  --navy-card:   var(--cb-navy-card);
  --navy-light:  var(--cb-navy-light);
  --gunmetal:    var(--cb-gunmetal);
  --steel:       var(--cb-steel);
  --steel-dark:  var(--cb-steel-dark);
  --steel-light: #DCE2EA;
  --border:      var(--cb-border);
  --lightgray:   var(--cb-lightgray);
  --text:        var(--cb-text);
  --muted:       var(--cb-muted);
  --white:       var(--cb-white);
  --blue:        var(--cb-blue);
  --blue-hover:  var(--cb-blue-hover);
  --brass:       var(--cb-brass);
  --green:       var(--cb-green);
  --green-dark:  var(--cb-green-dark);
  --red:         var(--cb-red);
  --transition:  150ms ease;
  --humimic:     #7E4FF9;
  --humimic-dark:#2F0D51;
}

/* ── Shared text/bg helpers (Jeremy's shorthand) ──────────── */
.text-steel  { color: var(--steel); }
.text-white  { color: var(--white); }
.text-brass  { color: var(--brass); }
.text-green  { color: var(--green); }
.text-muted-cb { color: var(--muted); }
.bg-navy      { background-color: var(--navy); }
.bg-navy-mid  { background-color: var(--navy-mid); }
.bg-lightgray { background-color: var(--lightgray); }
.bg-white-cb  { background-color: var(--white); }

/* ── Section eyebrow label ─────────────────────────────────── */
.section-eyebrow { color: var(--brass); margin-bottom: 10px; }

/* ── t-tier3 (functional headlines) ───────────────────────── */
.t-tier3 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: 0.02em; text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS — CSS copied from Jeremy's cb-site.css
   ══════════════════════════════════════════════════════════════ */

/* ── Partner Marquee ───────────────────────────────────────── */
.marquee-section { background: var(--lightgray); padding: 20px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.2em; text-align: center; margin-bottom: 14px; }
.marquee-row { overflow: hidden; margin-bottom: 10px; }
.marquee-row:last-child { margin-bottom: 0; }
.marquee-track { display: flex; gap: 0; width: max-content; }
.marquee-ltr { animation: marquee-ltr 50s linear infinite; }
.marquee-rtl { animation: marquee-rtl 50s linear infinite; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-ltr { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-item { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; padding: 0 28px; white-space: nowrap; border-right: 1px solid var(--border); }

/* ── Shop By Product Type ──────────────────────────────────── */
.product-category-section { background: var(--navy); padding: 72px clamp(20px,3vw,48px); }
.product-category-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.product-category-head h2 { font-family: 'Satoshi', sans-serif; font-weight: 900; font-size: clamp(28px,4vw,44px); line-height: 1.05; color: #fff; letter-spacing: -0.01em; margin: 10px 0 14px; }
.product-category-head p { font-size: 15px; line-height: 1.6; color: var(--steel); margin: 0; }
.product-category-grid { width: 80%; max-width: none; margin: 0 auto; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.product-category-card { display: flex; flex-direction: column; min-width: 0; background: var(--navy-mid); border: 1px solid var(--navy-light); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform .25s ease; }
.product-category-card:hover { transform: translateY(-4px); }
.product-category-media { position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden; background: radial-gradient(120% 120% at 50% 30%,#24323f 0%,var(--navy) 90%); }
.product-category-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.product-category-card:hover .product-category-media img { transform: scale(1.04); }
.product-category-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; font-size: 11px; font-style: italic; color: #7d8a99; line-height: 1.5; }
.product-category-body { display: flex; flex-direction: column; flex: 1; padding: 20px 18px 22px; }
.product-category-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.product-category-title { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 8px; }
.product-category-desc { font-size: 13px; line-height: 1.5; color: var(--steel); margin-bottom: 14px; flex: 1; }
.product-category-cta { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-top: auto; }
.product-category-card:hover .product-category-cta { color: var(--blue); }
@media(max-width:991.98px) { .product-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); width: 100%; } }
@media(max-width:767.98px) { .product-category-section { padding: 48px clamp(16px,4vw,24px); } .product-category-desc { display: none; } }

/* ── Product Value Bridge ──────────────────────────────────── */
.value-bridge { background: var(--lightgray); border-top: 1px solid #E2E6EA; border-bottom: 1px solid #E2E6EA; }
.value-bridge-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.value-bridge-item { display: flex; align-items: center; gap: 9px; }
.value-bridge-item svg { color: var(--text); flex-shrink: 0; }
.value-bridge-label { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; color: var(--text); }
@media(max-width:575.98px) { .value-bridge-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; align-items: center; padding: 16px 20px; } }

/* ── Find Your Gel — Products carousel ────────────────────── */
.products-section { background: var(--lightgray); padding: 80px 0; }
.products-carousel { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; width: 100%; max-width: 100%; overscroll-behavior-x: contain; }
.products-carousel::-webkit-scrollbar { display: none; }
.products-track { display: flex; gap: 20px; width: max-content; padding: 4px; align-items: stretch; }
.fyg-reassure { font-size: 13px; color: var(--muted); margin: 0 0 18px; letter-spacing: .02em; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-btn-cb { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); }
.carousel-btn-cb:hover { border-color: var(--text); }
.carousel-btn-cb:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 50%; }

/* Product card */
.product-card-cb { --bs-card-bg: var(--white); --bs-card-border-color: var(--border); --bs-card-border-width: 1px; --bs-card-border-radius: 14px; --bs-card-spacer-x: 14px; --bs-card-spacer-y: 14px; width: 264px; flex-shrink: 0; scroll-snap-align: start; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.product-card-cb .card-body { display: flex; flex-direction: column; padding-bottom: 16px; }
.product-card-cb:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11,31,51,0.12); --bs-card-border-color: #d6dce2; }
.product-card-cb { overflow: hidden; }
.pc-link { text-decoration: none; color: inherit; display: block; }
.pc-tile { position: relative; aspect-ratio: 1/1; border-radius: 0; overflow: hidden; background: radial-gradient(120% 120% at 50% 30%, #24323f 0%, var(--navy) 85%); display: flex; align-items: center; justify-content: center; margin: calc(var(--bs-card-spacer-y, 1rem) * -1) calc(var(--bs-card-spacer-x, 1rem) * -1) 14px; }
.pc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-tile-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; padding: 0 16px; line-height: 1.5; color: #56657a; }
.pc-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--navy-mid); color: var(--white); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 10px; border-radius: 3px; }
.pc-pills { display: flex; gap: 6px; margin-bottom: 8px; }
.pc-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 100px; border: 1px solid; text-transform: uppercase; }
.pc-pill-10, .pc-pill-20 { color: var(--steel-dark); border-color: rgba(58,74,88,0.45); }
.pc-calib { font-size: 10px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.pc-name { font-size: 17px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.15; margin-bottom: 3px; }
.pc-dims { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.pc-reuse { font-size: 10px; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.pc-buy-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.pc-price { font-size: 18px; font-weight: 700; color: var(--text); }
.pc-price-from { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0; text-transform: none; }
.pc-buy { background: var(--blue); color: #fff; font-family: 'Satoshi', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 22px; border-radius: 3px; border: none; white-space: nowrap; cursor: pointer; transition: background var(--transition); text-decoration: none; display: inline-block; }
.product-card-cb:hover .pc-buy { background: var(--blue-hover); }
.product-card-cb.hidden { display: none; }

/* Formulation filter toggle */
.formulation-toggle { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.form-toggle-btn { font-family: 'Satoshi', sans-serif; padding: 7px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid var(--border); background: var(--white); color: var(--muted); border-radius: 3px; cursor: pointer; transition: all var(--transition); }
.form-toggle-btn:hover { border-color: var(--text); color: var(--text); }
.form-toggle-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.products-section .btn-ghost-cb { --bs-btn-color: var(--text); --bs-btn-border-color: rgba(11,31,51,0.25); }
.products-section .btn-ghost-cb:hover { --bs-btn-hover-border-color: var(--text); --bs-btn-hover-color: var(--text); }

/* Buy-moment trust strip */
.buy-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.buy-trust-item { display: flex; align-items: center; gap: 8px; color: var(--text); }
.buy-trust-item svg { color: var(--blue); flex-shrink: 0; }
.buy-trust-item span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.buy-trust-reviews { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); text-decoration: none; padding-left: 28px; border-left: 1px solid var(--border); }
.buy-trust-stars { color: var(--brass); letter-spacing: 1px; font-size: 13px; line-height: 1; }
.buy-trust-reviews:hover { color: var(--blue); }
@media(max-width:767.98px) { .buy-trust { gap: 12px 18px; } .buy-trust-reviews { padding-left: 0; border-left: none; } .products-section { padding-top: 52px; padding-bottom: 52px; } }

/* ── Problem Section ───────────────────────────────────────── */
.problem-section { padding: 0; overflow: hidden; }
.problem-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
@media(max-width:767.98px) { .problem-split { grid-template-columns: 1fr; } }
.problem-img-col { position: relative; overflow: hidden; min-height: 420px; }
.problem-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.problem-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,31,51,0.35) 0%, rgba(11,31,51,0.55) 60%, var(--navy) 100%); }
@media(max-width:767.98px) { .problem-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--navy) 100%); } }
.problem-copy-col { background: var(--navy); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
@media(max-width:991.98px) { .problem-copy-col { padding: 48px 36px; } }
@media(max-width:767.98px) { .problem-copy-col { padding: 40px 24px; } }

/* ── Quote + Video Section ─────────────────────────────────── */
.qv-section { background: var(--navy); padding: 80px 0; }
@media(max-width:767.98px) { .qv-section { padding: 48px 0; } }
.qv-quote-col { display: flex; flex-direction: column; justify-content: center; padding-right: 48px; }
@media(max-width:991.98px) { .qv-quote-col { padding-right: 24px; margin-top: 40px; order: 2; } }
@media(max-width:767.98px) { .qv-quote-col { padding-right: 0; } }
.qv-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brass); margin-bottom: 20px; }
.qv-mark { font-size: 56px; line-height: 0.8; color: var(--brass); font-family: 'Fraunces', Georgia, serif; font-style: italic; display: block; margin-bottom: 4px; }
.qv-quote { font-family: 'Fraunces', Georgia, serif; font-size: clamp(20px, 2vw, 27px); font-weight: 500; color: white; line-height: 1.3; letter-spacing: -0.01em; font-style: italic; margin: 0 0 22px; border: none; padding: 0; }
.qv-attr { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); font-family: 'Satoshi', sans-serif; }
.qv-logo { margin-top: 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--steel); text-transform: uppercase; opacity: 0.7; }
.qv-video-col { position: relative; }
@media(max-width:991.98px) { .qv-video-col { order: 1; } }
.qv-video-wrap { position: relative; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; background: var(--navy-mid); cursor: pointer; display: block; }
.qv-video-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Lifestyle Image Strip ─────────────────────────────────── */
.lifestyle-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.lifestyle-strip-item { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.lifestyle-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.lifestyle-strip-item:hover img { transform: scale(1.05); }
.lifestyle-strip-item-overlay { position: absolute; inset: 0; background: rgba(11,31,51,0.2); transition: background 0.3s; }
.lifestyle-strip-item:hover .lifestyle-strip-item-overlay { background: rgba(11,31,51,0.05); }
@media(max-width:767.98px) { .lifestyle-strip { grid-template-columns: repeat(2, 1fr); } }

/* ── Guide Section ─────────────────────────────────────────── */
.guide-section { background: var(--white); padding: 80px 0; }
.guide-card { background: var(--navy-mid); border: none; border-radius: 6px; padding: 24px; height: 100%; }
.guide-card-eyebrow { font-size: 10px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px; }
.guide-card-title { font-size: 17px; font-weight: 700; color: var(--white); text-transform: none; letter-spacing: 0; line-height: 1.4; margin-bottom: 10px; }
.guide-card-body { font-size: 13px; color: var(--steel); line-height: 1.6; }
.guide-steps { list-style: none; counter-reset: step; margin: 2px 0 10px; padding: 0; }
.guide-steps li { counter-increment: step; position: relative; padding-left: 28px; margin-bottom: 7px; font-size: 13px; line-height: 1.4; color: var(--steel); }
.guide-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 19px; height: 19px; border-radius: 50%; background: rgba(179,255,59,0.15); color: var(--green); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.guide-card-foot { font-size: 11.5px; color: #8a97a6; margin: 0; font-style: italic; }
@media(max-width:767.98px) { .guide-section { padding-top: 52px; padding-bottom: 52px; } }

/* ── Section Quotes ────────────────────────────────────────── */
.section-quote-cb { padding: 40px 0 8px; max-width: 780px; margin: 0 auto; text-align: center; }
.section-quote-mark { font-size: 48px; line-height: 0.8; color: var(--brass); font-family: 'Fraunces', Georgia, serif; font-style: italic; display: block; margin-bottom: 4px; }
.section-quote-text { font-family: 'Fraunces', Georgia, serif; font-size: clamp(24px, 1.5vw, 38px); font-weight: 500; color: inherit; line-height: 1.28; letter-spacing: -0.01em; font-style: italic; margin: 0 0 14px; border: none; padding: 0; -webkit-font-smoothing: antialiased; }
.section-quote-attr { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass); font-family: 'Satoshi', sans-serif; }
.guide-section .section-quote-text { color: var(--text); }
.usecase-section .section-quote-text { color: var(--white); }

/* ── Terminal Test Results (TTX) ───────────────────────────── */
.ttr-section { background: var(--navy); padding: 64px 0; }
@media(max-width:767.98px) { .ttr-section { padding: 40px 0; } }
.ttx-head { text-align: center; }
.ttx-eyebrow { color: var(--brass); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; margin: 0 0 8px; }
.ttx-readout { color: var(--steel); font-size: 14px; line-height: 1.5; max-width: 520px; margin: 0 auto 16px; }
.ttx-readout strong { color: var(--white); font-weight: 700; }
.ttx-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ttx-tab { background: var(--navy-mid); color: var(--steel); border: 1px solid rgba(174,184,197,0.12); border-radius: 999px; padding: 8px 18px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .18s; }
.ttx-tab:hover { border-color: rgba(179,255,59,0.4); color: var(--white); }
.ttx-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.ttx-cap { text-align: center; color: var(--steel); font-size: 12px; font-weight: 600; margin: 0 auto 18px; }
.ttx-cap b { color: var(--white); font-weight: 700; }
.ttx-cap .sep { opacity: .4; margin: 0 7px; }
.ttx-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media(max-width:991.98px) { .ttx-cards { grid-template-columns: repeat(2,1fr); } }
@media(max-width:575.98px) { .ttx-cards { grid-template-columns: 1fr; } }
.ttx-card { background: var(--navy-card); border: 1px solid rgba(174,184,197,0.12); border-radius: 10px; padding: 18px 18px 16px; opacity: 0; transform: translateY(10px); animation: ttxrise .5s cubic-bezier(.2,.7,.2,1) forwards; }
.ttx-card:nth-child(2){animation-delay:.06s;} .ttx-card:nth-child(3){animation-delay:.12s;} .ttx-card:nth-child(4){animation-delay:.18s;}
@keyframes ttxrise { to { opacity: 1; transform: translateY(0); } }
.ttx-lab { color: var(--steel); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0; }
.ttx-stat { display: flex; align-items: baseline; gap: 7px; margin: 8px 0 18px; }
.ttx-stat .num { color: var(--green); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -.02em; font-family: 'Satoshi', sans-serif; }
.ttx-stat .unit { color: var(--steel); font-size: 15px; font-weight: 600; }
.ttx-track { position: relative; height: 7px; background: var(--gunmetal); border-radius: 6px; margin: 4px 0 9px; }
.ttx-win { position: absolute; top: 0; height: 100%; background: rgba(179,255,59,0.28); border-radius: 6px; }
.ttx-mark { position: absolute; top: 50%; width: 4px; height: 16px; background: var(--white); border-radius: 3px; transform: translate(-50%,-50%); transition: left .5s cubic-bezier(.2,.7,.2,1); }
.ttx-scale { display: flex; justify-content: space-between; color: var(--steel); font-size: 10px; font-weight: 600; }
.ttx-w12 { margin-left: 50%; } .ttx-w18 { margin-right: 25%; }
.ttx-exp { display: flex; align-items: center; gap: 14px; margin: 2px 0 14px; height: 56px; }
.ttx-orig { border: 2px solid var(--steel); border-radius: 50%; flex-shrink: 0; transition: all .45s; }
.ttx-expc { background: var(--green); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 12px rgba(179,255,59,0.4); transition: all .45s; }
.ttx-expm { color: var(--steel); font-size: 13px; line-height: 1.5; } .ttx-expm b { color: var(--white); }
.ttx-bar { height: 9px; background: var(--gunmetal); border-radius: 6px; overflow: hidden; margin: 6px 0 11px; }
.ttx-barf { height: 100%; background: var(--green); border-radius: 6px; width: 0; transition: width .6s cubic-bezier(.2,.7,.2,1); box-shadow: 0 0 9px rgba(179,255,59,0.4); }
.ttx-velico { height: 40px; margin: 2px 0 12px; display: flex; align-items: center; }
.ttx-note { display: flex; align-items: center; gap: 8px; color: var(--steel); font-size: 12px; font-weight: 600; margin-top: 12px; }
.ttx-note .dot { width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid var(--green); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ttx-note .dot::after { content: ""; width: 4px; height: 8px; border-right: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(45deg) translateY(-1px); }
.ttx-credit { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 22px; }
.ttx-credit a { color: var(--blue); font-weight: 700; font-size: 13px; text-decoration: none; border-bottom: 1px solid rgba(31,59,255,0.6); padding-bottom: 1px; }
.ttx-credit span { color: var(--steel); font-size: 13px; font-weight: 600; }
.ttx-disc { text-align: center; color: var(--steel); font-size: 11.5px; line-height: 1.6; max-width: 820px; margin: 12px auto 0; opacity: .82; }
.ttx-disc a { color: var(--steel); text-decoration: underline; }

/* ── Pitch Quote Band ──────────────────────────────────────── */
.pitch-quote-band { background: var(--navy); padding: 56px 24px; margin-top: 48px; }
.pitch-band-mark { font-size: 56px; line-height: 0.8; color: var(--brass); font-family: 'Fraunces', Georgia, serif; font-style: italic; display: block; margin-bottom: 4px; }
.pitch-band-text { font-family: 'Fraunces', Georgia, serif; font-size: clamp(24px, 1.5vw, 38px); font-weight: 500; color: white; line-height: 1.28; letter-spacing: -0.01em; font-style: italic; margin: 0 0 18px; border: none; padding: 0; -webkit-font-smoothing: antialiased; }
.pitch-band-attr { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); font-family: 'Satoshi', sans-serif; }

/* ── Use Cases Section ─────────────────────────────────────── */
.usecase-section { background: var(--navy); padding: 40px 0 72px; border-top: 1px solid var(--navy-light); }
.usecase-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.uc-card { display: flex; flex-direction: column; min-width: 0; background: var(--navy-mid); border: 1px solid var(--navy-light); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform .25s ease; }
.uc-card:hover { transform: translateY(-4px); }
.uc-media { position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden; background: radial-gradient(120% 100% at 50% 30%,#24323f 0%,var(--navy) 90%); }
.uc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.uc-card:hover .uc-media img { transform: scale(1.05); }
.uc-body { display: flex; flex-direction: column; flex: 1; padding: 18px 16px 20px; }
.uc-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.uc-title { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.2; color: #fff; margin-bottom: 8px; }
.uc-desc { font-size: 12.5px; line-height: 1.5; color: var(--steel); margin-bottom: 14px; flex: 1; }
.uc-cta { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.uc-card:hover .uc-cta { color: var(--blue); }
.uc-cta svg { transition: transform var(--transition); }
.uc-card:hover .uc-cta svg { transform: translateX(3px); }
@media(max-width:1199.98px) { .usecase-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width:767.98px) { .usecase-section { padding-bottom: 48px; } .uc-desc { display: none; } }

/* ── Video Library Section ─────────────────────────────────── */
.video-section { background: var(--lightgray); padding: 80px 0; }
.vid-bento { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(2, clamp(150px, 14.5vw, 220px)); gap: 12px; }
.vid-feature, .vid-tile { position: relative; display: block; overflow: hidden; text-decoration: none; border-radius: 10px; background: var(--gunmetal); min-height: 0; }
.vid-feature { grid-column: span 2; grid-row: span 2; }
.vid-feature img, .vid-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vid-feature:hover img, .vid-tile:hover img { transform: scale(1.04); }
.vid-feature::after, .vid-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,51,0.85) 0%, rgba(11,31,51,0.12) 55%, rgba(11,31,51,0) 100%); pointer-events: none; }
.vid-cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 14px; }
.vid-feature .vid-cap { padding: 20px; }
.vid-cap-channel { font-family: 'Satoshi', sans-serif; font-size: 10px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.vid-feature .vid-cap-channel { font-size: 11px; }
.vid-cap-title { font-family: 'Satoshi', sans-serif; font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.25; }
.vid-feature .vid-cap-title { font-size: 18px; }
.vid-tile-cta { background: var(--navy-light); display: flex; align-items: center; justify-content: center; text-align: center; padding: 14px; transition: background var(--transition); }
.vid-tile-cta::after { display: none; }
.vid-tile-cta span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; }
.vid-tile-cta svg { transition: transform var(--transition); }
.vid-tile-cta:hover { background: var(--blue); }
.vid-tile-cta:hover svg { transform: translateX(3px); }
.vid-showcase-foot { display: flex; align-items: center; justify-content: center; text-align: center; gap: 16px; flex-wrap: wrap; margin-top: 16px; padding: 6px 6px 2px; }
.vid-foot-note { font-size: 14px; color: var(--muted); margin: 0; }
.vid-foot-note strong { color: var(--navy); font-weight: 700; }
.play-btn-cb { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; cursor: pointer; transition: background var(--transition), transform 0.2s; }
.play-btn-cb:hover { background: rgba(255,255,255,0.32); transform: scale(1.08); }
.vid-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 46px; height: 46px; pointer-events: none; background: rgba(255,255,255,0.18); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.vid-play svg { width: 16px; height: 16px; }
.vid-feature .vid-play { width: 64px; height: 64px; }
.vid-feature .vid-play svg { width: 22px; height: 22px; }
.vid-feature:hover .vid-play, .vid-tile:hover .vid-play { background: rgba(255,255,255,0.32); transform: translate(-50%,-50%) scale(1.08); }
@media(max-width:991.98px) { .vid-bento { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; gap: 10px; } .vid-bento .vid-feature { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/9; } .vid-bento .vid-tile { aspect-ratio: 16/9; } }
@media(max-width:767.98px) { .video-section { padding-top: 40px; padding-bottom: 40px; } .video-section .t-tier2 { font-size: clamp(22px, 7vw, 32px); line-height: 1.1; } .video-section .t-sub { font-size: 13px; } }
@media(max-width:575.98px) { .vid-bento { grid-template-columns: repeat(2, 1fr); gap: 6px; } .vid-cap { padding: 8px; } .vid-cap-channel { font-size: 9px; margin-bottom: 2px; } .vid-cap-title { font-size: 10px; } .vid-play { width: 34px; height: 34px; } .vid-play svg { width: 12px; height: 12px; } .vid-feature .vid-play { width: 44px; height: 44px; } .vid-feature .vid-play svg { width: 16px; height: 16px; } .vid-tile-cta span { font-size: 10px; gap: 4px; } .vid-tile-cta { padding: 10px 8px; } }

/* ── Split CTA Tiles ───────────────────────────────────────── */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 72px 12px; background: var(--navy); }
.split-tile { min-height: 320px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 48px; overflow: hidden; border-radius: 12px; }
.split-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,51,0.42) 0%, rgba(11,31,51,0.5) 60%, rgba(11,31,51,0.2) 100%); z-index: 1; }
.split-tile-content { position: relative; z-index: 2; }
.split-tile-eyebrow { font-size: 10px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; }
.split-tile-title { font-size: clamp(32px, 4vw, 56px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.05; margin-bottom: 16px; }
@media(max-width:767.98px) { .split-cta { grid-template-columns: 1fr; padding: 48px 12px; } .split-tile { min-height: 260px; padding: 32px 24px; } .split-tile-title { font-size: 30px; } }

/* ── Close Section ─────────────────────────────────────────── */
.close-section { background: var(--white); padding: 96px 0; }
@media(max-width:767.98px) { .close-section { padding: 48px 0; } }
.close-hero { position: relative; width: 100%; height: 540px; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px rgba(11,31,51,0.18); }
@media(max-width:991.98px) { .close-hero { height: 420px; } }
@media(max-width:767.98px) { .close-hero { height: 380px; } }
.close-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.close-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.9) 100%); }
.close-hero-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.close-hero-textleft { min-width: 0; }
@media(max-width:991.98px) { .close-hero-text { padding: 32px; } }
@media(max-width:767.98px) { .close-hero-text { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; } }
.close-label { font-size: 11px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 10px; }
.close-headline { font-family: 'Satoshi', sans-serif; font-size: clamp(30px, 5vw, 44px); font-weight: 700; color: var(--white); text-transform: uppercase; line-height: 1.02; margin-bottom: 0; }
.close-cta { display: inline-block; flex: none; background: var(--blue); color: var(--white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 34px; border-radius: 6px; text-decoration: none; transition: background var(--transition); }
.close-cta:hover { background: var(--blue-hover); color: var(--white); }
@media(max-width:767.98px) { .close-cta { display: block; width: 100%; text-align: center; } }
.close-promise { display: flex; gap: 56px; align-items: flex-start; max-width: 1080px; margin: 60px auto 0; padding: 0 24px; }
.close-promise-head { flex: 0 0 26%; }
.close-promise-title { font-family: 'Satoshi', sans-serif; font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1.0; letter-spacing: 0.01em; margin: 0; }
.close-promise-list { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.close-benefit { display: flex; flex-direction: column; align-items: flex-start; }
.close-benefit-icon { width: 28px; height: 28px; color: var(--navy); flex-shrink: 0; margin-bottom: 16px; }
.close-benefit-label { font-size: 15px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.25; margin-bottom: 8px; }
.close-benefit-desc { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.5; }
@media(max-width:991.98px) { .close-promise { flex-direction: column; gap: 32px; margin-top: 44px; } .close-promise-head { flex: none; } .close-promise-list { gap: 28px; } }
@media(max-width:575.98px) { .close-promise-list { grid-template-columns: 1fr; gap: 24px; } }

/* ── Scroll to Top (homepage version) ─────────────────────── */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-mid); border: 1px solid var(--navy-light); color: var(--steel); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s, background var(--transition), color var(--transition); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* Reduced motion */
@media(prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; } }

/* ══════════════════════════════════════════════════════════════
   CB 2.0 — COMPATIBILITY LAYER + PAGE COMPONENTS
   Maps legacy main.css token names → CB 2.0 values.
   Defines all shared components and page-specific CSS so
   main.css is no longer needed.
   ══════════════════════════════════════════════════════════════ */

/* ── Legacy token overrides ────────────────────────────────── */
:root {
  --cb-charcoal:       #16293C;
  --cb-black:          #0B1F33;
  --cb-dark-gray:      #0D1117;
  --cb-mid-gray:       #6B7280;
  --cb-light-gray:     #AEB8C5;
  --cb-silver:         #DCE2EA;
  --cb-off-white:      #F5F6F8;
  --cb-accent:         #1F3BFF;
  --cb-accent-hover:   #1530E0;
  --cb-brand:          #1F3BFF;
  --cb-danger:         #C0392B;
  --cb-military:       #1A2B3C;
  --cb-military-light: #2A3F55;
  --font-heading:      'Satoshi', sans-serif;
  --font-body:         'Satoshi', sans-serif;
  --font-mono:         'Courier New', monospace;
  --transition-fast:   0.15s ease;
}

/* ── Body base ─────────────────────────────────────────────── */
body { background-color: var(--cb-navy); color: var(--cb-white); font-family: var(--cb-font); }

/* ── Sections ──────────────────────────────────────────────── */
.cb-section--dark   { background: var(--cb-navy-mid); padding: 72px 0; }
.cb-section--darker { background: var(--cb-navy);     padding: 72px 0; }
.cb-section         { padding: 72px 0; }
@media (max-width: 767px) { .cb-section--dark, .cb-section--darker, .cb-section { padding: 48px 0; } }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-cb-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--cb-blue); color: var(--cb-white);
  font-family: var(--cb-font); font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border: none; cursor: pointer; text-decoration: none;
  transition: background var(--cb-transition);
  border-radius: 0;
}
.btn-cb-primary:hover { background: var(--cb-blue-hover); color: var(--cb-white); }
.btn-cb-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  background: transparent; color: var(--cb-white);
  font-family: var(--cb-font); font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; text-decoration: none;
  transition: all var(--cb-transition);
  border-radius: 0;
}
.btn-cb-ghost:hover { border-color: var(--cb-blue); color: var(--cb-blue); background: rgba(31,59,255,0.06); }

/* ── Forms ─────────────────────────────────────────────────── */
.cb-form-group label {
  display: block; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cb-steel); margin-bottom: 6px;
}
.cb-form-control {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cb-white); font-family: var(--cb-font); font-size: 0.9375rem;
  transition: border-color var(--cb-transition);
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.cb-form-control:focus { outline: none; border-color: var(--cb-blue); }
.cb-form-control::placeholder { color: rgba(255,255,255,0.3); }
.cb-form-control:disabled { opacity: 0.5; cursor: not-allowed; }
select.cb-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23AEB8C5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer;
  background-color: rgba(255,255,255,0.05);
}
textarea.cb-form-control { resize: vertical; min-height: 100px; }

/* ── Qty stepper ───────────────────────────────────────────── */
.cb-qty-stepper { display: inline-flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.15); height: 44px; }
.cb-qty-stepper button { width: 40px; background: var(--cb-navy-mid); border: none; color: var(--cb-white); font-size: 1.125rem; cursor: pointer; transition: background var(--cb-transition); }
.cb-qty-stepper button:hover { background: var(--cb-blue); }
.cb-qty-stepper input { width: 52px; text-align: center; background: rgba(255,255,255,0.05); border: none; border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); color: var(--cb-white); font-size: 1rem; font-weight: 700; }
.cb-qty-stepper input:focus { outline: none; }
.cb-qty-stepper input::-webkit-inner-spin-button,
.cb-qty-stepper input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.cb-breadcrumb { background: var(--cb-navy-mid); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cb-breadcrumb ul { display: flex; align-items: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.cb-breadcrumb li { font-size: 0.8125rem; color: var(--cb-steel); }
.cb-breadcrumb li + li::before { content: '/'; margin: 0 8px; opacity: 0.4; }
.cb-breadcrumb a { color: var(--cb-steel); text-decoration: none; transition: color var(--cb-transition); }
.cb-breadcrumb a:hover { color: var(--cb-white); }
.cb-breadcrumb .active { color: var(--cb-white); }

/* ── Pagination ────────────────────────────────────────────── */
.cb-pagination { display: flex; gap: 6px; align-items: center; margin-top: 36px; flex-wrap: wrap; }
.cb-pagination a,
.cb-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; background: var(--cb-navy-mid); border: 1px solid rgba(255,255,255,0.08); color: var(--cb-steel); font-size: 0.875rem; text-decoration: none; transition: all var(--cb-transition); }
.cb-pagination a:hover { background: var(--cb-blue); border-color: var(--cb-blue); color: #fff; }
.cb-pagination .active { background: var(--cb-blue); border-color: var(--cb-blue); color: #fff; font-weight: 700; }

/* ── Modal overlay ─────────────────────────────────────────── */
.cb-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.cb-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.cb-modal { background: var(--cb-navy-mid); border: 1px solid rgba(255,255,255,0.1); width: min(640px,calc(100vw - 32px)); max-height: 90vh; overflow-y: auto; position: relative; }
.cb-modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: var(--cb-steel); font-size: 1.5rem; cursor: pointer; line-height: 1; transition: color var(--cb-transition); }
.cb-modal-close:hover { color: var(--cb-white); }

/* ── Product card ──────────────────────────────────────────── */
.cb-product-card { position: relative; background: var(--cb-navy-card); border: 1px solid rgba(255,255,255,0.06); transition: transform var(--cb-transition), border-color var(--cb-transition); height: 100%; display: flex; flex-direction: column; }
.cb-product-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.cb-product-card-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cb-gunmetal); }
.cb-product-card-img a { display: block; height: 100%; }
.cb-product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.cb-product-card:hover .cb-product-card-img img { transform: scale(1.04); }
.cb-product-card-actions { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(11,31,51,0.78); opacity: 0; transition: opacity var(--cb-transition); }
.cb-product-card:hover .cb-product-card-actions { opacity: 1; }
.cb-product-card-actions button { width: 80%; padding: 9px 16px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border: none; cursor: pointer; font-family: var(--cb-font); transition: all var(--cb-transition); }
.cb-product-card-actions .btn-add-cart { background: var(--cb-blue); color: #fff; }
.cb-product-card-actions .btn-add-cart:hover { background: var(--cb-blue-hover); }
.cb-product-card-actions .btn-quick-view { background: rgba(255,255,255,0.1); color: var(--cb-white); border: 1px solid rgba(255,255,255,0.2); }
.cb-product-card-actions .btn-quick-view:hover { background: rgba(255,255,255,0.18); }
.cb-product-badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 0.625rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 8px; }
.cb-product-badge--sale { background: var(--cb-blue); color: #fff; }
.cb-product-badge--hot  { background: var(--cb-brass); color: #000; }
.cb-product-badge--new  { background: var(--cb-green); color: #000; }
.cb-product-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cb-product-card-category { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cb-brass); }
.cb-product-card-title { font-size: 0.9375rem; font-weight: 700; margin: 0; }
.cb-product-card-title a { color: var(--cb-white); text-decoration: none; transition: color var(--cb-transition); }
.cb-product-card-title a:hover { color: var(--cb-blue); }
.cb-product-card-price { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cb-product-card-price .current { font-size: 1.0625rem; font-weight: 800; color: var(--cb-white); }
.cb-product-card-price .original { font-size: 0.875rem; color: var(--cb-steel); text-decoration: line-through; }
.cb-product-card__wish { position: absolute; top: 8px; right: 8px; z-index: 2; background: rgba(11,31,51,0.7); border: 1px solid rgba(255,255,255,0.15); color: var(--cb-steel); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.875rem; transition: all var(--cb-transition); }
.cb-product-card__wish:hover { color: var(--cb-red); border-color: var(--cb-red); }

/* ── Fade-in animation ─────────────────────────────────────── */
.cb-fade-in { animation: cbFadeIn 0.4s ease both; }
@keyframes cbFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Section heading ───────────────────────────────────────── */
.cb-section-heading { margin-bottom: 40px; }
.cb-section-heading--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--cb-white); margin: 0; }
.cb-empty-panel { text-align: center; padding: 60px 20px; color: var(--cb-steel); }
.cb-empty-panel h3 { font-size: 1.25rem; color: var(--cb-white); margin-bottom: 8px; }

/* ── Shop listing page ─────────────────────────────────────── */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.shop-result-count { font-size: 0.875rem; color: var(--cb-steel); }
.shop-sort select { background: var(--cb-navy-mid); border: 1px solid rgba(255,255,255,0.12); color: var(--cb-white); padding: 8px 32px 8px 12px; font-size: 0.8125rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23AEB8C5' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; }
.shop-filters { background: var(--cb-navy-mid); padding: 20px; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 12px; }
.shop-filter-group { margin-bottom: 16px; }
.shop-filter-group:last-child { margin-bottom: 0; }
.shop-filter-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cb-brass); margin-bottom: 8px; }
.shop-filter-list { list-style: none; padding: 0; margin: 0; }
.shop-filter-list li a { display: block; padding: 6px 0; font-size: 0.8125rem; color: var(--cb-steel); transition: color var(--cb-transition); text-decoration: none; }
.shop-filter-list li a:hover, .shop-filter-list li a.active { color: var(--cb-white); }
.shop-filter-list li a.active::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--cb-blue); border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.shop-price-range { display: flex; gap: 8px; align-items: center; }
.shop-price-range input { width: 80px; padding: 6px 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--cb-white); font-size: 0.8125rem; }
.shop-price-range span { color: var(--cb-steel); font-size: 0.8125rem; }
.shop-empty { text-align: center; padding: 80px 20px; }
.shop-empty i { font-size: 3rem; color: var(--cb-steel); margin-bottom: 16px; }
/* Mobile filter drawer */
.shop-sidebar-header { display: none; }
.shop-filter-toggle  { display: none; }
.shop-filter-backdrop { display: none; }

@media (max-width: 991.98px) {
  /* Sidebar becomes a fixed right-side drawer */
  .shop-sidebar {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(320px, 88vw) !important;
    height: 100% !important;
    background: var(--cb-navy-mid);
    z-index: 1055;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 0 40px !important;
    flex: none !important;
    /* Never goes off-screen — animate with opacity+nudge only */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  .shop-sidebar.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* Drawer header with close button */
  .shop-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cb-white);
    position: sticky;
    top: 0;
    background: var(--cb-navy-mid);
    z-index: 1;
  }
  .shop-sidebar-close {
    background: none;
    border: none;
    color: var(--cb-steel);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
  }
  .shop-sidebar-close:hover { color: var(--cb-white); }

  /* Backdrop */
  .shop-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1054;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .shop-filter-backdrop.is-open { opacity: 1; visibility: visible; }

  /* Mobile toggle button — show in toolbar */
  .shop-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cb-navy-mid);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--cb-white);
    font-family: var(--cb-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
  }
  .shop-filter-toggle:hover { border-color: rgba(255,255,255,0.3); }
  .shop-filter-badge {
    background: var(--cb-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    padding: 1px 6px;
    line-height: 1.5;
  }

  /* Product col takes full width since sidebar is out of flow */
  .col-lg-9 { flex: 0 0 100%; max-width: 100%; }
}

/* ── Cart page ─────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead th { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cb-steel); padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }
.cart-table tbody td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.cart-item-img { width: 80px; height: 80px; background: var(--cb-navy-mid); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { display: flex; align-items: center; gap: 16px; }
.cart-item-name { font-size: 0.9375rem; font-weight: 600; color: var(--cb-white); }
.cart-item-name a { color: var(--cb-white); text-decoration: none; }
.cart-item-name a:hover { color: var(--cb-blue); }
.cart-item-price { font-size: 0.9375rem; color: var(--cb-steel); }
.cart-item-total { font-size: 1rem; font-weight: 700; color: var(--cb-white); }
.cart-item-remove { background: none; border: none; color: var(--cb-steel); cursor: pointer; font-size: 1rem; padding: 4px; transition: color var(--cb-transition); }
.cart-item-remove:hover { color: var(--cb-red); }
.cart-summary { background: var(--cb-navy-mid); padding: 24px; border: 1px solid rgba(255,255,255,0.06); }
.cart-summary-title { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; color: var(--cb-white); }
.cart-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.875rem; }
.cart-summary-row .label { color: var(--cb-steel); }
.cart-summary-row .value { color: var(--cb-white); font-weight: 600; }
.cart-summary-total { display: flex; justify-content: space-between; padding: 16px 0 0; margin-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.cart-summary-total .label { font-size: 1rem; font-weight: 700; color: var(--cb-white); }
.cart-summary-total .value { font-size: 1.25rem; font-weight: 800; color: var(--cb-blue); }
.coupon-form { display: flex; gap: 8px; margin-top: 16px; margin-bottom: 16px; }
.coupon-form input { flex: 1; padding: 10px 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--cb-white); font-size: 0.8125rem; }
.coupon-form button { padding: 10px 16px; background: var(--cb-navy-light); border: 1px solid rgba(255,255,255,0.12); color: var(--cb-white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: all var(--cb-transition); white-space: nowrap; }
.coupon-form button:hover { border-color: var(--cb-blue); color: var(--cb-blue); }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: rgba(31,59,255,0.08); border: 1px solid rgba(31,59,255,0.2); margin-bottom: 12px; }
.coupon-applied span { font-size: 0.8125rem; color: var(--cb-blue); font-weight: 600; }
.coupon-applied button { background: none; border: none; color: var(--cb-steel); cursor: pointer; font-size: 0.75rem; }
.coupon-applied button:hover { color: var(--cb-red); }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty i { font-size: 4rem; color: var(--cb-steel); margin-bottom: 16px; }
@media (max-width: 767px) {
  .cart-table thead { display: none; }
  .cart-table tbody td { display: block; padding: 8px 16px; border: none; }
  .cart-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; display: block; }
}

/* ── Checkout page ─────────────────────────────────────────── */
.checkout-section { background: var(--cb-navy-mid); padding: 24px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.06); }
.checkout-section-title { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cb-brass); margin-bottom: 16px; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-row.single { grid-template-columns: 1fr; }
.payment-methods { display: flex; flex-direction: column; gap: 8px; }
.payment-method-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all var(--cb-transition); }
.payment-method-option:hover, .payment-method-option.selected { border-color: var(--cb-blue); background: rgba(31,59,255,0.04); }
.payment-method-option input[type="radio"] { accent-color: var(--cb-blue); }
.payment-method-option label { cursor: pointer; font-size: 0.9375rem; font-weight: 600; color: var(--cb-white); margin: 0; }
.payment-method-option .pm-desc { font-size: 0.75rem; color: var(--cb-steel); }
.payment-detail { display: none; padding: 16px; margin-top: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.payment-detail.active { display: block; }
#card-element { padding: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.StripeElement--focus { border-color: var(--cb-blue); }
.order-review-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.order-review-item:last-child { border: none; }
.order-review-img { width: 50px; height: 50px; background: var(--cb-navy-light); overflow: hidden; flex-shrink: 0; }
.order-review-img img { width: 100%; height: 100%; object-fit: cover; }
.order-review-name { font-size: 0.8125rem; color: var(--cb-white); font-weight: 500; }
.order-review-qty { font-size: 0.75rem; color: var(--cb-steel); }
.order-review-price { font-size: 0.875rem; font-weight: 700; color: var(--cb-white); margin-left: auto; white-space: nowrap; }
@media (max-width: 767px) { .checkout-row { grid-template-columns: 1fr; } }

/* ── Account pages ─────────────────────────────────────────── */
.acct-sidebar { background: var(--cb-navy-mid); padding: 24px; border: 1px solid rgba(255,255,255,0.06); }
.acct-sidebar-name { font-size: 1.125rem; font-weight: 700; color: var(--cb-white); margin-bottom: 4px; }
.acct-sidebar-email { font-size: 0.8125rem; color: var(--cb-steel); margin-bottom: 20px; }
.acct-nav { list-style: none; padding: 0; margin: 0; }
.acct-nav li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; font-size: 0.875rem; color: var(--cb-steel); transition: all var(--cb-transition); text-decoration: none; border-left: 2px solid transparent; }
.acct-nav li a:hover, .acct-nav li a.active { color: var(--cb-white); background: rgba(255,255,255,0.03); border-left-color: var(--cb-blue); }
.acct-nav li a i { width: 18px; text-align: center; color: var(--cb-steel); }
.acct-nav li a:hover i, .acct-nav li a.active i { color: var(--cb-blue); }
.acct-card { background: var(--cb-navy-mid); padding: 24px; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; }
.acct-card-title { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cb-brass); margin-bottom: 16px; }
.acct-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.acct-stat { background: var(--cb-navy-mid); padding: 20px; border: 1px solid rgba(255,255,255,0.06); text-align: center; }
.acct-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--cb-white); }
.acct-stat-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cb-steel); margin-top: 4px; }
.acct-order-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.875rem; }
.acct-order-row:last-child { border: none; }
.acct-order-no { font-weight: 600; color: var(--cb-white); font-family: var(--cb-font-mono); }
.acct-order-status { font-size: 0.6875rem; font-weight: 700; padding: 3px 8px; text-transform: uppercase; }
.status-pending    { background: rgba(255,193,7,0.15);  color: #FFC107; }
.status-processing { background: rgba(31,59,255,0.15);  color: var(--cb-blue); }
.status-completed  { background: rgba(31,59,255,0.15);  color: var(--cb-blue); }
.status-shipped    { background: rgba(156,39,176,0.15); color: #9C27B0; }
.status-delivered  { background: rgba(31,59,255,0.15);  color: var(--cb-blue); }
.status-cancelled  { background: rgba(192,57,43,0.15);  color: var(--cb-red); }
@media (max-width: 767px) { .acct-stats { grid-template-columns: 1fr; } }

/* ── Product detail page ───────────────────────────────────── */
.cb-pdp-ar { background: var(--cb-navy-mid); border: 1px solid rgba(255,255,255,0.12); color: var(--cb-white); padding: 0 15px; height: 44px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--cb-font); transition: all var(--cb-transition); cursor: pointer; border-radius: 0; }
.cb-pdp-ar:hover { border-color: var(--cb-blue); color: var(--cb-blue); }
@media (min-width: 992px) { .cb-pdp-ar span { display: none; } }
.cb-lab-data-viz { background: rgba(255,255,255,0.03); padding: 24px; border: 1px solid rgba(255,255,255,0.06); }
.cb-viz-chart { display: grid; gap: 12px; margin-top: 20px; }
.cb-viz-bar { background: var(--cb-navy-mid); padding: 10px 15px; display: flex; justify-content: space-between; position: relative; border-left: 3px solid var(--cb-blue); }
.cb-viz-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; background: var(--cb-blue); opacity: 0.1; width: 100%; z-index: 0; }
.cb-viz-bar span, .cb-viz-bar strong { position: relative; z-index: 1; font-size: 0.8125rem; text-transform: uppercase; }
.cb-viz-bar strong { color: var(--cb-blue); }

/* ══════════════════════════════════════════════════════════════
   PDP — Jeremy Design System v10
   Light-background product detail page.
   Token aliases map Jeremy's short names → existing --cb-* tokens.
══════════════════════════════════════════════════════════════ */
:root {
  --navy:       var(--cb-navy);
  --navy-mid:   var(--cb-navy-mid);
  --navy-card:  var(--cb-navy-card);
  --navy-light: var(--cb-navy-light);
  --gunmetal:   var(--cb-gunmetal);
  --steel:      var(--cb-steel);
  --steel-dark: var(--cb-steel-dark);
  --steel-light:#DCE2EA;
  --border:     var(--cb-border);
  --lightgray:  var(--cb-lightgray);
  --text:       var(--cb-text);
  --muted:      var(--cb-muted);
  --white:      var(--cb-white);
  --blue:       var(--cb-blue);
  --blue-hover: var(--cb-blue-hover);
  --brass:      var(--cb-brass);
  --green-dark: var(--cb-green-dark);
  --red:        var(--cb-red);
  --transition: var(--cb-transition);
}

/* PDP page wrapper — light background */
.pdp-page-wrap { background: var(--white); color: var(--text); }
.pdp-page-wrap h1,.pdp-page-wrap h2,.pdp-page-wrap h3 { color: var(--text); }

/* Breadcrumb bar (light) */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-bar .breadcrumb { margin: 0; padding: 0; background: none; font-size: 12px; color: var(--muted); }
.breadcrumb-bar .breadcrumb-item a { color: var(--muted); text-decoration: none; }
.breadcrumb-bar .breadcrumb-item a:hover { color: var(--navy); }
.breadcrumb-bar .breadcrumb-item.active { color: var(--navy); font-weight: 600; }
.breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before { color: #DDD; }

/* Hero section */
.pdp-hero { padding: 40px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.pdp-gallery { position: sticky; top: 88px; max-width: 100%; }
.pdp-main-img { aspect-ratio: 4/3; margin-bottom: 12px; background: var(--lightgray); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pdp-main-img img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.pdp-thumb { aspect-ratio: 1/1; border: 2px solid var(--border); border-radius: 4px; overflow: hidden; cursor: pointer; transition: border-color var(--transition); background: var(--lightgray); padding: 0; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active,.pdp-thumb:hover { border-color: var(--blue); }

/* Purchase zone */
.pdp-info { padding-top: 4px; }
.pdp-description { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.pdp-dims { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.pdp-stock { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--green-dark); margin: 0 0 14px; }
.pdp-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-dark); flex-shrink: 0; }
.pdp-trustline { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin: 0 0 14px; line-height: 1.5; flex-wrap: wrap; }
.pdp-price-wrap { margin-bottom: 16px; }
.pdp-price { font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1; }

/* Variant selector */
.variant-option-wrap { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border: 2px solid var(--border); border-radius: 4px; cursor: pointer; margin-bottom: 8px; transition: border-color var(--transition), background var(--transition); }
.variant-option-wrap:hover { border-color: var(--steel); }
.variant-option-wrap.selected { border-color: var(--blue); background: #F5F7FF; }
.variant-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; margin-top: 3px; display: flex; align-items: center; justify-content: center; transition: border-color var(--transition); }
.variant-option-wrap.selected .variant-radio { border-color: var(--blue); }
.variant-radio-dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.variant-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.variant-desc { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.variant-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; }

/* Qty stepper */
.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.qty-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.qty-btn { width: 30px; height: 32px; background: var(--lightgray); border: none; font-size: 14px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--border); }
.qty-val { width: 38px; height: 32px; background: var(--white); border: none; text-align: center; font-family: 'Satoshi',sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); outline: none; }

/* Buy chips */
.pdp-buy-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 14px 0 0; }
.pdp-longdesc-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid rgba(58,74,88,0.25); border-radius: 999px; padding: 7px 11px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel-dark); }
.pdp-buy-chips .pdp-longdesc-chip { padding: 5px 10px; gap: 4px; font-size: 10px; justify-content: center; }
.pdp-longdesc-chip svg { width: 13px; height: 13px; color: var(--blue); stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Product details card */
.pdp-details-section { background: var(--white); padding: 40px 0; }
.pdp-longdesc-wrap.card { --bs-card-bg: var(--lightgray); --bs-card-border-color: var(--border); background: var(--lightgray); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 32px; overflow: hidden; }
.pdp-longdesc-wrap .card-body { padding: 32px; }
.pdp-longdesc-main { max-width: 640px; }
.pdp-longdesc-title { font-family: 'Satoshi',sans-serif; font-size: clamp(26px,3vw,36px); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; text-transform: uppercase; color: var(--text); margin: 0 0 16px; }
.pdp-longdesc-lead,.pdp-longdesc-body { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; max-width: 640px; }
.pdp-longdesc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ISO tech drawing card */
.pdp-techdraw-card { background: var(--navy); border: 1px solid var(--navy-light); border-radius: 8px; color: var(--white); width: 100%; aspect-ratio: 1/1; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 20px; overflow: hidden; }
.pdp-techdraw-card.has-iso { padding: 24px 22px; flex-direction: column; align-items: stretch; justify-content: space-between; text-align: left; gap: 0; }
.pdp-techdraw-card.has-iso .iso-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); display: block; text-align: center; }
.pdp-techdraw-card.has-iso .iso-wrap { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 8px 0; }
.pdp-techdraw-card.has-iso .face-top-iso { fill: #E8ECF0; }
.pdp-techdraw-card.has-iso .face-side-iso { fill: #D4D9DF; }
.pdp-techdraw-card.has-iso .face-front-iso { fill: #F2F4F6; }
.pdp-techdraw-card.has-iso .stroke-iso { stroke: #3A4A58; stroke-width: 1.5; fill: none; stroke-linejoin: round; stroke-linecap: round; }
.pdp-techdraw-card.has-iso .spec-strip { border-top: 1px solid var(--navy-light); padding-top: 14px; text-align: center; }
.pdp-techdraw-card.has-iso .spec-dims { font-family: 'Satoshi',sans-serif; font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.pdp-techdraw-card.has-iso .spec-dims .sep { color: var(--brass); margin: 0 10px; font-weight: 700; }

/* Trusted strip */
.trusted-strip { background: var(--navy); border-radius: 8px; padding: 48px 40px; text-align: center; }
.trusted-eyebrow { font-size: 11px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 12px; }
.trusted-title { font-family: 'Satoshi',sans-serif; font-size: clamp(22px,3vw,30px); font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 12px; }
.trusted-sub { font-size: 14px; color: var(--steel); line-height: 1.65; max-width: 620px; margin: 0 auto 32px; }
.trusted-logos { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; max-width: 760px; margin: 0 auto 24px; }
.trusted-logo { display: flex; align-items: center; justify-content: center; height: 64px; border: 1px solid var(--navy-light); border-radius: 6px; background: var(--navy-card); color: var(--steel); font-family: 'Satoshi',sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.trusted-segments { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* Zone 2 — related products */
.zone2-section { padding: 48px 0; }
.zone2-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.zone2-eyebrow { font-size: 11px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 4px; }
.zone2-title { font-size: 22px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.zone2-light { background: var(--lightgray); }
.zone2-view-all { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; }
.zone2-view-all:hover { color: var(--navy); }
.zone2-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 767.98px) { .zone2-grid { gap: 12px; } }

/* Product card (light zone2 variant) */
.zone2-grid .product-card-cb { width: 100%; flex-shrink: 1; }
.product-card-cb { --bs-card-bg: var(--white); --bs-card-border-color: var(--border); background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow var(--transition); }
.product-card-cb:hover { box-shadow: 0 8px 24px rgba(11,31,51,0.1); }
.product-card-cb .card-body { display: flex; flex-direction: column; padding: 10px 10px 12px; }
.pc-link { text-decoration: none; color: inherit; display: block; }
.pc-tile { aspect-ratio: 1/1; background: var(--lightgray); border-radius: 4px; overflow: hidden; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.pc-tile img { width: 100%; height: 100%; object-fit: contain; }
.pc-name { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 3px; line-height: 1.3; }
.pc-dims { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.pc-buy-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }
.pc-price { font-size: 15px; font-weight: 700; color: var(--navy); }
.pc-buy { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); background: var(--blue); border: none; padding: 7px 10px; border-radius: 3px; cursor: pointer; text-decoration: none; transition: background var(--transition); white-space: nowrap; }
.pc-buy:hover { background: var(--blue-hover); color: var(--white); }
@media (max-width: 400px) {
  .zone2-grid .pc-buy-row { flex-direction: column; align-items: stretch; gap: 6px; }
  .zone2-grid .pc-buy { text-align: center; width: 100%; }
}

/* FAQ */
.faq-section { background: var(--white); padding: 64px 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; padding: 18px 0; cursor: pointer; gap: 16px; text-align: left; }
.faq-q-btn span { font-size: 14px; font-weight: 700; color: var(--text); text-transform: none; letter-spacing: 0.01em; line-height: 1.4; }
.faq-toggle { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; transition: all var(--transition); }
.faq-q-btn[aria-expanded="true"] .faq-toggle { background: var(--blue); border-color: var(--blue); color: var(--white); }
.faq-answer { font-size: 13px; color: var(--muted); line-height: 1.7; padding-bottom: 16px; }

/* t-eyebrow token */
.t-eyebrow { font-size: 11px; font-weight: 700; color: var(--brass); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px; }

/* Responsive */
@media (max-width: 991.98px) {
  .pdp-gallery { position: static; }
  .pdp-techdraw-card { max-width: 420px; margin-left: auto; margin-right: auto; min-height: 320px; }
  .pdp-longdesc-wrap .card-body { padding: 24px; }
  /* Megamenu: collapse 3-col to 2-col on tablet */
  .pv-bcols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .zone2-grid { grid-template-columns: 1fr 1fr; }
  .trusted-logos { grid-template-columns: repeat(2,1fr); }
  .trusted-strip { padding: 36px 20px; }
  .pdp-buy-chips { grid-template-columns: 1fr 1fr; }
  /* Megamenu: fully stack on mobile */
  .pv-bmain { grid-template-columns: 1fr; }
  .pv-bcols { grid-template-columns: 1fr; }
  .pv-bvisual { display: none; }
  /* PDP thumbnails: 4 across on mobile */
  .pdp-thumbs { grid-template-columns: repeat(4,1fr); }
  /* Account order rows: stack on small screens */
  .acct-order-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .acct-order-row > div:last-child { width: 100%; justify-content: space-between; }
  /* Checkout sticky sidebar: remove sticky on mobile */
  .checkout-wrap .col-lg-5 > .checkout-section { position: static !important; }
}
@media (max-width: 575.98px) {
  /* PDP thumbnails: 3 across on small mobile */
  .pdp-thumbs { grid-template-columns: repeat(3,1fr); }
  /* Related products: keep 2-col on small mobile, single column is too big */
  .zone2-grid { grid-template-columns: 1fr 1fr; }
  /* Trusted logos: single column */
  .trusted-logos { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  /* Toast: keep within viewport */
  .cb-toast { max-width: calc(100vw - 32px); min-width: 0; }
  /* Product category: 2-col on small mobile */
  .product-category-grid { grid-template-columns: repeat(2,1fr); width: 100%; }
  /* FAQ layout: remove columns */
  .faq-section .row.g-5 > .col-lg-4,
  .faq-section .row.g-5 > .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
  /* PDP details: full width */
  .pdp-longdesc-wrap .col-lg-8,
  .pdp-longdesc-wrap .col-lg-4 { flex: 0 0 100%; max-width: 100%; order: unset !important; }
  /* Account stats: 3 across still, but smaller */
  .acct-stat-value { font-size: 1.5rem; }
}

/* ── Search Overlay ─────────────────────────────────────────── */
.cb-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,31,51,0.97);
  z-index: 1060;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.cb-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.cb-search-overlay__inner {
  width: 100%;
  max-width: 680px;
  position: relative;
}
.cb-search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cb-search-field-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.cb-search-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  stroke: rgba(174,184,197,0.6);
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}
.cb-search-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(174,184,197,0.2);
  border-radius: 8px;
  color: #fff;
  font-family: var(--cb-font);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 48px 14px 48px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cb-search-input::placeholder { color: rgba(174,184,197,0.45); }
.cb-search-input:focus {
  border-color: var(--cb-blue);
  background: rgba(255,255,255,0.1);
}
.cb-search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: rgba(174,184,197,0.6);
  display: flex;
  align-items: center;
}
.cb-search-clear svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.cb-search-clear:hover { color: #fff; }
.cb-search-submit {
  white-space: nowrap;
  flex-shrink: 0;
}
.cb-search-close {
  position: absolute;
  top: -56px;
  right: 0;
  background: none;
  border: none;
  color: rgba(174,184,197,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
}
.cb-search-close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.cb-search-close:hover { color: #fff; }
@media (max-width: 575.98px) {
  .cb-search-overlay { padding: 64px 16px 32px; }
  .cb-search-form { flex-direction: column; align-items: stretch; }
  .cb-search-input { font-size: 16px; }
  .cb-search-submit { width: 100%; }
}

/* ── Search Results Page ─────────────────────────────────────── */
.cb-search-results-section { background: var(--white); padding: 64px 0 80px; min-height: 60vh; }
.cb-sr-head { margin-bottom: 48px; }
.cb-sr-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.cb-sr-title em { font-style: normal; color: var(--blue); }
.cb-sr-empty-hint { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.cb-sr-empty-hint a { color: var(--blue); }
.cb-sr-form { display: flex; gap: 10px; max-width: 560px; margin-top: 24px; }
.cb-sr-form .cb-search-field-wrap { flex: 1; }
.cb-sr-form .cb-search-input { font-size: 15px; padding: 11px 16px 11px 44px; background: var(--lightgray); border-color: var(--border); color: var(--text); }
.cb-sr-form .cb-search-input::placeholder { color: var(--muted); }
.cb-sr-form .cb-search-input:focus { border-color: var(--blue); background: #fff; }
.cb-sr-form .cb-search-icon { stroke: var(--muted); }
.cb-sr-group { margin-bottom: 48px; }
.cb-sr-group-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.cb-sr-count { background: var(--lightgray); border-radius: 20px; padding: 1px 8px; font-size: 11px; color: var(--muted); }
.cb-sr-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.cb-sr-cat-chip { display: inline-flex; align-items: center; gap: 4px; padding: 7px 14px; background: var(--lightgray); border: 1px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 700; color: var(--text); text-decoration: none; transition: background 0.15s, border-color 0.15s; }
.cb-sr-cat-chip svg { width: 12px; height: 12px; stroke: var(--muted); stroke-width: 2; fill: none; }
.cb-sr-cat-chip:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.cb-sr-cat-chip:hover svg { stroke: #fff; }
.cb-sr-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cb-sr-product { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.cb-sr-product:hover { box-shadow: 0 8px 24px rgba(11,31,51,0.12); transform: translateY(-2px); }
.cb-sr-product__img { aspect-ratio: 1/1; overflow: hidden; background: var(--lightgray); }
.cb-sr-product__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cb-sr-product__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cb-sr-product__cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.cb-sr-product__name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.35; }
.cb-sr-product__desc { font-size: 12px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 2px; }
.cb-sr-product__price { font-size: 14px; font-weight: 700; color: var(--text); margin-top: auto; padding-top: 8px; }
.cb-sr-product__price--sale { color: var(--red); margin-right: 6px; }
.cb-sr-product__price--was { text-decoration: line-through; color: var(--muted); font-weight: 400; }
@media (max-width: 991.98px) { .cb-sr-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) { .cb-sr-products { grid-template-columns: repeat(2, 1fr); gap: 12px; } .cb-sr-form { max-width: 100%; } }
@media (max-width: 575.98px) { .cb-sr-products { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ── About Page ─────────────────────────────────────────────── */
.about-hero { position: relative; height: 320px; background: var(--gunmetal); display: flex; align-items: flex-end; overflow: hidden; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,51,0.85) 0%, rgba(11,31,51,0.2) 100%); z-index: 1; }
.about-hero-caption { position: relative; z-index: 2; padding: 32px; color: var(--steel); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.about-body { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 56px 0; }
.about-main h1 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 24px; line-height: 1.1; }
.about-main p { font-size: 15px; line-height: 1.75; color: var(--gunmetal); margin-bottom: 18px; }
.stats-row { display: flex; gap: 32px; margin: 32px 0; padding: 28px; background: var(--navy); border-radius: 10px; }
.stat-block { text-align: center; flex: 1; }
.stat-num { font-size: 36px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { font-size: 22px; color: var(--brass); }
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel); margin-top: 6px; }
.diff-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.diff-item { display: flex; gap: 16px; align-items: flex-start; }
.diff-icon { flex: none; width: 36px; height: 36px; background: var(--lightgray); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.diff-icon svg { width: 16px; height: 16px; stroke: var(--navy); }
.diff-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.diff-text p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }
.info-card, .calib-card { background: var(--lightgray); border-radius: 10px; padding: 20px; margin-bottom: 16px; }
.info-card h4, .calib-card h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 14px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--muted); }
.info-val { font-weight: 600; color: var(--navy); }
.calib-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 12px; }
.calib-item .sub { color: var(--muted); font-size: 11px; line-height: 1.5; margin-top: 4px; display: block; }
.about-sidebar-img { background: var(--gunmetal); border-radius: 10px; height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-sidebar-img svg { width: 40px; height: 40px; stroke: var(--steel); }
.about-guarantee { background: var(--navy); color: var(--white); text-align: center; padding: 56px 32px; margin-top: 0; }
.about-guarantee .t-eyebrow { color: var(--brass); }
.about-guarantee h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin: 8px 0 16px; }
.about-guarantee p { font-size: 15px; color: var(--steel); max-width: 560px; margin: 0 auto; line-height: 1.75; }
@media(max-width:991.98px) { .about-body { grid-template-columns: 1fr; gap: 32px; } }
@media(max-width:767.98px) { .about-hero { height: 200px; } .stats-row { flex-wrap: wrap; gap: 16px; } }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-hero { background: var(--navy); padding: 52px 0 40px; text-align: center; }
.contact-hero .t-eyebrow { color: var(--brass); }
.contact-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin: 8px 0 12px; }
.contact-hero .hero-sub { font-size: 16px; color: var(--steel); max-width: 520px; margin: 0 auto 16px; line-height: 1.6; }
.hero-response { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--steel); text-transform: uppercase; letter-spacing: 0.08em; }
.response-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex: none; }
.contact-body { padding: 56px 0; }
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 40px; }
.quick-stack { display: flex; flex-direction: column; gap: 8px; }
.quick-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--lightgray); border-radius: 8px; text-decoration: none; transition: background var(--transition); }
.quick-card:hover { background: #e5e8ed; }
.quick-icon { width: 36px; height: 36px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex: none; }
.quick-icon svg { width: 16px; height: 16px; stroke: var(--navy); }
.quick-text { flex: 1; }
.quick-label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.quick-sub { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.quick-arrow { font-size: 14px; color: var(--muted); }
.contact-hours { background: var(--navy); border-radius: 10px; padding: 20px; color: var(--white); margin-top: 16px; }
.hours-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); margin-bottom: 12px; }
.hours-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--steel); }
.hours-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex: none; }
.hours-phone { display: block; margin-top: 12px; font-size: 18px; font-weight: 800; color: var(--white); text-decoration: none; }
.hours-phone:hover { color: var(--blue); }
.hours-email { display: block; margin-top: 6px; font-size: 13px; color: var(--steel); text-decoration: none; }
.hours-email:hover { color: var(--white); }
.contact-form-card { background: var(--white); border: 1px solid #e5e8ed; border-radius: 12px; padding: 36px; }
.form-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.form-sub a { color: var(--blue); font-weight: 700; text-decoration: none; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form-card .form-group { margin-bottom: 16px; }
.contact-form-card label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 6px; }
.contact-form-card .required { color: var(--blue); }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #d1d5db; border-radius: 6px; font-family: 'Satoshi', sans-serif; font-size: 14px; color: var(--navy); background: var(--white); transition: border-color 0.15s; }
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus { outline: none; border-color: var(--blue); }
.contact-form-card textarea { resize: vertical; min-height: 120px; }
.contact-form-card .btn-submit { width: 100%; background: var(--blue); color: var(--white); font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 14px; border: none; border-radius: 6px; cursor: pointer; transition: opacity 0.15s; }
.contact-form-card .btn-submit:hover { opacity: 0.88; }
.form-privacy { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--blue); }
@media(max-width:991.98px) { .contact-layout { grid-template-columns: 1fr; } }
@media(max-width:767.98px) { .contact-body { padding: 36px 0; } .contact-form-card { padding: 24px; } .form-row-2 { grid-template-columns: 1fr; } }

/* ── 404 Page ────────────────────────────────────────────────── */
.nf { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; background: var(--lightgray); }
.nf-inner { text-align: center; max-width: 520px; }
.nf-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); margin-bottom: 16px; }
.nf-title { font-size: clamp(36px, 6vw, 64px); font-weight: 900; color: var(--navy); line-height: 1.05; margin-bottom: 16px; }
.nf-sub { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 36px; }
.nf-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.nf-btn { display: inline-block; padding: 12px 24px; border-radius: 4px; font-family: 'Satoshi', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; transition: opacity 0.15s; }
.nf-btn-primary { background: var(--blue); color: var(--white); }
.nf-btn-ghost { background: var(--white); color: var(--navy); border: 1.5px solid #d1d5db; }
.nf-btn:hover { opacity: 0.85; }
.nf-links { font-size: 13px; color: var(--muted); }
.nf-links a { color: var(--navy); font-weight: 600; text-decoration: none; }
.nf-links a:hover { color: var(--blue); }
.nf-sep { margin: 0 10px; color: #d1d5db; }

/* ── Category Hero ───────────────────────────────────────────── */
.cat-hero { background: var(--navy); color: var(--white); padding: 64px 0 52px; text-align: center; }
.cat-hero h1 { font-size: clamp(36px,5vw,56px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; margin: 8px 0 14px; }
.cat-hero p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto; line-height: 1.65; }
@media(max-width:767.98px) { .cat-hero { padding: 44px 0 36px; } .cat-hero p { font-size: 14px; } }

/* ── PDP Reviews ─────────────────────────────────────────────── */
.pdp-reviews-section { padding: 72px 0; background: var(--lightgray); }
.pdp-reviews-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.pdp-write-review-wrap { flex-shrink: 0; padding-top: 8px; }
.pdp-stars-lg { font-size: 18px; color: var(--brass); margin: 6px 0 16px; }
.pdp-rating-breakdown { max-width: 280px; }
.pdp-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.pdp-rating-label { font-size: 12px; font-weight: 700; color: var(--navy); min-width: 36px; }
.pdp-rating-bar { flex: 1; height: 6px; background: #e2e5e9; border-radius: 3px; overflow: hidden; }
.pdp-rating-fill { height: 100%; background: var(--brass); border-radius: 3px; transition: width 0.3s; }
.pdp-rating-count { font-size: 12px; color: var(--muted); min-width: 20px; text-align: right; }

.pdp-review-form-wrap { margin-bottom: 40px; }
.pdp-review-form-card { background: var(--white); border: 1.5px solid #e2e5e9; border-radius: 10px; padding: 32px; max-width: 680px; }
.pdp-form-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 6px; }
.pdp-star-picker { display: flex; gap: 6px; margin-bottom: 4px; }
.pdp-star-pick { background: none; border: none; cursor: pointer; font-size: 24px; color: var(--brass); padding: 2px; transition: transform 0.1s; }
.pdp-star-pick:hover { transform: scale(1.15); }
.pdp-star-pick:hover ~ .pdp-star-pick i { color: transparent; }

.pdp-review-list { display: flex; flex-direction: column; gap: 24px; }
.pdp-review-item { background: var(--white); border: 1.5px solid #e2e5e9; border-radius: 10px; padding: 24px; }
.pdp-review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.pdp-review-stars { font-size: 13px; color: var(--brass); }
.pdp-review-date { font-size: 12px; color: var(--muted); margin-left: auto; }
.pdp-review-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.pdp-review-author { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.pdp-review-body { font-size: 14px; color: var(--steel-dark); line-height: 1.7; margin: 0; }
.pdp-review-response { margin-top: 16px; background: #f0f4ff; border-left: 3px solid var(--blue); border-radius: 0 6px 6px 0; padding: 12px 16px; }
.pdp-review-response-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 4px; }
.pdp-review-response p { font-size: 13px; color: var(--navy); line-height: 1.6; margin: 0; }
@media(max-width:767.98px) { .pdp-reviews-header { flex-direction: column; gap: 16px; } .pdp-review-form-card { padding: 20px; } }

/* ── Compare Button on Product Cards ────────────────────────── */
.cb-compare-btn { display: flex; align-items: center; gap: 5px; width: 100%; margin-top: 6px; padding: 7px 12px; background: var(--white); border: 1.5px solid #d1d5db; border-radius: 4px; font-family: 'Satoshi', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.cb-compare-btn:hover { border-color: var(--blue); color: var(--blue); }
.cb-compare-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ── Compare Bar ─────────────────────────────────────────────── */
.compare-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); z-index: 1040; padding: 14px 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.18); }
.compare-bar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.compare-bar-slots { display: flex; gap: 10px; flex: 1; min-width: 0; }
.compare-slot { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 10px; max-width: 200px; }
.compare-slot img { width: 36px; height: 36px; object-fit: contain; border-radius: 4px; background: var(--white); flex-shrink: 0; }
.compare-slot span { font-size: 11px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.compare-slot button { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 16px; cursor: pointer; padding: 0 2px; flex-shrink: 0; line-height: 1; }
.compare-slot button:hover { color: var(--white); }
.compare-bar-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Compare Modal ───────────────────────────────────────────── */
.compare-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1060; display: flex; align-items: center; justify-content: center; padding: 20px; }
.compare-modal { background: var(--white); border-radius: 12px; width: 100%; max-width: 900px; max-height: 90vh; overflow-y: auto; }
.compare-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid #e2e5e9; }
.compare-modal-header h2 { font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--navy); margin: 0; }
.compare-modal-close { background: none; border: none; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; padding: 0; }
.compare-modal-close:hover { color: var(--navy); }
.compare-modal-body { padding: 28px; }
.cmp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.cmp-col { text-align: center; }
.cmp-img { width: 100%; max-height: 180px; object-fit: contain; border-radius: 8px; background: #f7f8fa; padding: 12px; margin-bottom: 12px; }
.cmp-name { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; }
.cmp-price { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 12px; text-align: left; margin-bottom: 16px; }
.cmp-table th { color: var(--muted); font-weight: 600; padding: 6px 0; border-bottom: 1px solid #f0f0f0; width: 45%; }
.cmp-table td { color: var(--navy); font-weight: 700; padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.cmp-atc { display: block; text-align: center; text-decoration: none; }

/* ── PDP Spec Card (non-block PDPs) ─────────────────────────── */
.pdp-spec-card { padding: 24px; border: 1.5px solid #e2e5e9; border-radius: 10px; }
.pdp-spec-card-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass); margin-bottom: 16px; }
.pdp-spec-list { list-style: none; padding: 0; margin: 0 0 20px; }
.pdp-spec-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
.pdp-spec-list li span:first-child { color: var(--muted); font-weight: 600; }
.pdp-spec-list li span:last-child { color: var(--navy); font-weight: 700; text-align: right; }
.pdp-spec-card-cta { display: block; font-size: 12px; font-weight: 700; color: var(--blue); text-decoration: none; }
.pdp-spec-card-cta:hover { text-decoration: underline; }
@media(max-width:767.98px) { .compare-bar-slots { display: none; } .compare-bar-inner { justify-content: center; } }
