/* ====================================================================
   EMPIRE CLUB US — modernized luxury stylesheet
   Palette: warm charcoal + off-white + bronze accent
   Typography: Cormorant Garamond (display) + Inter (body)
   ==================================================================== */

:root {
  /* Core neutrals — warmer than pure black/white */
  --ink: #1a1a1a;
  --ink-soft: #2c2c2c;
  --paper: #faf9f6;
  --paper-warm: #f3f1ec;
  --line: #e8e6e0;
  --line-soft: #f0eee8;
  --muted: #8a857a;
  --muted-soft: #b5b0a5;

  /* Accent — bronze/champagne, used sparingly */
  --bronze: #b8956a;
  --bronze-deep: #8c6f4a;
  --bronze-soft: #ebdcc6;

  /* Functional colors */
  --trustpilot-green: #00b67a;
  --error: #c0392b;
  --success: #1f5a2a;
  --link-blue: #2e6bff;

  /* Layout */
  --max-w: 1280px;
  --max-content: 980px;

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--bronze-deep); opacity: 1; }

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

button { font-family: inherit; }

::selection { background: var(--bronze-soft); color: var(--ink); }

/* Reveal animation for scroll fade-in */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANNOUNCEMENT / COUNTDOWN BAR (kept but softened)
   ============================================================ */
.announcement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 10px 16px;
  font-size: 10.5px;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.announcement-title {
  white-space: nowrap;
  font-weight: 600;
}
.announcement-title small {
  display: block;
  font-size: 8.5px;
  opacity: 0.55;
  letter-spacing: 0.15em;
  margin-top: 2px;
  font-weight: 400;
}
.countdown {
  display: flex;
  gap: 5px;
}
.countdown-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 9px;
  min-width: 36px;
  text-align: center;
  border-radius: 3px;
}
.countdown-box .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  display: block;
  color: var(--paper);
  letter-spacing: 0;
}
.countdown-box .lbl {
  font-size: 8px;
  opacity: 0.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 28px;
  gap: 16px;
}
.header-left { display: flex; align-items: center; gap: 18px; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.header-icon-btn {
  background: none;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s var(--ease);
  min-width: 32px;
  min-height: 32px;
}
.header-icon-btn:hover { color: var(--bronze); opacity: 1; }
.header-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; }
.brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper);
}
.brand:hover { color: var(--paper); opacity: 0.85; }
.brand .crown {
  font-size: 13px;
  opacity: 0.8;
  transform: translateY(-4px);
  color: var(--bronze);
}

/* Nav (desktop) */
.main-nav {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.main-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.main-nav-inner a,
.main-nav-inner .nav-drop > span {
  color: var(--paper);
  cursor: pointer;
  padding: 8px 0;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s var(--ease);
}
.main-nav-inner a::after,
.main-nav-inner .nav-drop > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.main-nav-inner a:hover::after,
.main-nav-inner .nav-drop:hover > span::after {
  width: 100%;
  left: 0;
}
.nav-drop { position: relative; }
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 22px;
  min-width: 240px;
  z-index: 100;
  white-space: nowrap;
  border-radius: 4px;
}
.nav-drop-menu a {
  display: block;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Mobile menu toggle */
.menu-toggle { display: none; }

/* Mobile drawer — fullscreen takeover */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  padding: 28px 28px 80px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .close-x {
  background: none;
  border: 0;
  color: var(--paper);
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 28px;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
.mobile-drawer .drawer-brand {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.mobile-drawer .drawer-section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--bronze);
  text-transform: uppercase;
  margin: 20px 0 10px;
  font-weight: 500;
}
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: var(--font-display);
}
.mobile-drawer a:last-child { border-bottom: 0; }

/* ============================================================
   SECTIONS — generous spacing
   ============================================================ */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 28px;
}
.section--narrow { max-width: 920px; }
.section--tight { padding: 36px 28px; }
.section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 36px;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.section h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  text-align: center;
  margin: 24px 0 40px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  width: 100%;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.hero img {
  width: 100%;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

/* ============================================================
   BRAND CIRCLES
   ============================================================ */
.brand-circles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 18px;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 16px;
}
.brand-circles a {
  display: block;
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.brand-circles a:hover {
  transform: translateY(-3px);
}
.brand-circles img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-warm);
  transition: box-shadow 0.4s var(--ease);
  border: 1px solid var(--line);
}
.brand-circles a:hover img {
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.18);
}

/* ============================================================
   TILE TRIO (classic / bestseller / modern)
   ============================================================ */
.tile-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  background: var(--ink);
}
.tile-trio a {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tile-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.tile-trio a:hover img { transform: scale(1.06); }
.tile-trio .tile-label {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}
.product-card {
  text-align: center;
  display: block;
}
.product-card .img-wrap {
  background: var(--paper);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}
.product-card:hover .img-wrap {
  background: var(--paper-warm);
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.product-card:hover img { transform: scale(1.05); }
.product-card .name {
  font-size: 13px;
  font-weight: 500;
  margin: 8px 0 6px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--ink);
}
.product-card .price {
  font-size: 12px;
  color: var(--muted);
  font-feature-settings: "tnum" 1;
}
.product-card .price .sale {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.product-card .price .regular {
  text-decoration: line-through;
  margin-left: 8px;
  color: var(--muted-soft);
}

/* ============================================================
   PAGINATION (Shopify-style 1 / N + arrows)
   ============================================================ */
.paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 50px 0 12px;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  font-family: var(--font-display);
}
.paginator .page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-weight: 400;
}
.paginator .page-arrow:hover {
  background: var(--ink);
  color: var(--paper);
}
.paginator .page-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.paginator .page-current,
.paginator .page-total {
  font-size: 22px;
  font-weight: 400;
  min-width: 24px;
  text-align: center;
  font-feature-settings: "tnum" 1;
}
.paginator .page-sep { color: var(--muted-soft); }

/* ============================================================
   ABOUT BLOCK
   ============================================================ */
.about-block {
  background: var(--paper-warm);
  padding: 80px 28px;
}
.about-block .inner {
  max-width: 1020px;
  margin: 0 auto;
}
.about-block h2 {
  font-family: var(--font-display);
  font-size: 38px;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.about-block img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 28px;
}
.about-block details {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 26px;
  margin-top: 14px;
  border-radius: 4px;
}
.about-block summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-block summary::-webkit-details-marker { display: none; }
.about-block summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--bronze);
  transition: transform 0.3s var(--ease);
}
.about-block details[open] summary::after { content: "−"; }
.about-block details p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--paper-warm);
  max-width: 920px;
  margin: 60px auto;
  padding: 48px 36px;
  border-radius: 4px;
}
.faq h2 {
  font-family: var(--font-display);
  text-align: center;
  margin: 0 0 32px;
  font-size: 28px;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  display: inline-flex;
  background: transparent;
  color: var(--bronze);
  border: 1px solid var(--bronze);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "−";
  background: var(--bronze);
  color: var(--paper);
}
.faq .faq-body {
  padding: 16px 0 6px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.faq .faq-body p { margin: 0 0 10px; }

/* ============================================================
   VIDEO CAROUSEL
   ============================================================ */
.video-carousel-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 28px 80px;
}
.vc-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 32px;
  color: var(--ink);
  font-weight: 400;
}
.video-carousel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.vc-card {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.vc-card:hover { transform: translateY(-3px); }
.vc-card video,
.vc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vc-handle {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 24px;
  white-space: nowrap;
  z-index: 2;
}

/* ============================================================
   LOGO STRIP (footer top)
   ============================================================ */
.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 28px;
  background: var(--paper);
}
.logo-strip img {
  max-height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.logo-strip img:hover { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper-warm);
  padding: 60px 28px 32px;
  color: var(--ink-soft);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  padding: 6px 0;
  font-size: 13px;
}
.site-footer a {
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.site-footer a:hover {
  color: var(--bronze-deep);
  padding-left: 4px;
}
.site-footer .contact p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
}

.trustpilot-row {
  max-width: var(--max-w);
  margin: 36px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.trustpilot-row .star {
  color: var(--trustpilot-green);
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.trustpilot-row strong { font-weight: 600; }

.payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 30px 0 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  opacity: 0.65;
}
.payments img {
  height: 20px;
  width: auto;
  filter: grayscale(0.3);
}

.copyright {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  padding-top: 16px;
  letter-spacing: 0.08em;
}

/* ============================================================
   PAGE BODY (static legal pages)
   ============================================================ */
.page-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}
.page-body h1 {
  font-family: var(--font-display);
  font-size: 44px;
  text-align: center;
  margin: 16px 0 40px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}
.page-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 40px 0 14px;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.page-body h3 {
  font-size: 14px;
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--bronze-deep);
}
.page-body p {
  margin: 0 0 16px;
  line-height: 1.75;
  font-size: 14px;
  color: var(--ink-soft);
}
.page-body ul,
.page-body ol {
  margin: 0 0 16px 22px;
  line-height: 1.75;
  font-size: 14px;
  color: var(--ink-soft);
}
.page-body li { margin: 5px 0; }
.page-body a {
  color: var(--bronze-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-body .note {
  background: var(--bronze-soft);
  border-left: 3px solid var(--bronze);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 13px;
  border-radius: 0 4px 4px 0;
}

/* ============================================================
   TRACKING WIDGET
   ============================================================ */
.tracker-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 540px;
  margin: 36px auto;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.06);
}
.tracker-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.tracker-tab {
  background: var(--paper-warm);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  flex: 0 1 auto;
  letter-spacing: 0.03em;
  transition: all 0.2s var(--ease);
}
.tracker-tab.active {
  background: var(--ink);
  color: var(--paper);
}
.tracker-card input[type="text"],
.tracker-card input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 16px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.tracker-card input:focus {
  outline: none;
  border-color: var(--bronze);
}
.tracker-card button.track {
  width: 100%;
  background: var(--ink);
  border: 0;
  color: var(--paper);
  padding: 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}
.tracker-card button.track:hover { background: var(--ink-soft); }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 540px;
  margin: 36px auto;
  padding: 36px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.04);
}
.contact-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 500;
}
.contact-card .email {
  font-weight: 600;
  display: inline-block;
  margin: 10px 0;
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ============================================================
   PDP — Product Detail Page
   ============================================================ */
.pdp {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

/* Gallery */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pdp-main-image {
  background: var(--paper);
  border: 1px solid var(--line);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.pdp-main-image:hover img { transform: scale(1.04); }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pdp-thumb {
  aspect-ratio: 1/1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s var(--ease);
}
.pdp-thumb:hover,
.pdp-thumb.active {
  border-color: var(--bronze);
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp-zoom-hint {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

/* Info column */
.pdp-info { padding-left: 8px; }

/* Trustpilot-style green star badge */
.pdp-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
}
.tp-stars { display: flex; gap: 2px; }
.tp-star {
  width: 22px;
  height: 22px;
  background: var(--trustpilot-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.pdp-trust .trust-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}
.pdp-trust .trust-text {
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
}
.pdp-trust .trust-text strong {
  color: var(--ink);
  font-weight: 700;
}

.pdp-info h1 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
  font-feature-settings: "tnum" 1;
}
.pdp-price-row .sale {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}
.pdp-price-row .regular {
  font-size: 16px;
  color: var(--muted-soft);
  text-decoration: line-through;
}

/* Packaging dropdown */
.pdp-variant { margin: 18px 0; }
.pdp-variant-label {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pdp-variant select {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8956a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.2s var(--ease);
}
.pdp-variant select:focus,
.pdp-variant select:hover {
  outline: none;
  border-color: var(--bronze);
}

/* USPS badges */
.pdp-badges {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 18px 0;
  background: var(--paper);
}
.pdp-badges img { height: 28px; width: auto; object-fit: contain; }
.pdp-badges .badge-block {
  text-align: center;
  border-left: 1px solid var(--line-soft);
  padding: 0 10px;
}
.pdp-badges .badge-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pdp-badges .badge-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.pdp-badges .badge-value .green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--trustpilot-green);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Bundle widget */
.bundle { margin: 30px 0 18px; }
.bundle-title {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 18px;
  color: var(--ink);
  position: relative;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.bundle-title::before,
.bundle-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: var(--line);
}
.bundle-title::before { left: 0; }
.bundle-title::after { right: 0; }
.bundle-option {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: var(--paper-warm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
}
.bundle-option:hover {
  background: var(--line-soft);
}
.bundle-option.selected {
  background: var(--paper);
  border-color: var(--ink);
}
.bundle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.bundle-option .b-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--muted-soft);
  flex-shrink: 0;
  position: relative;
  background: var(--paper);
  transition: all 0.2s var(--ease);
}
.bundle-option.selected .b-radio {
  border-color: var(--ink);
  border-width: 6px;
}
.bundle-option .b-info { flex: 1; min-width: 0; margin-left: 4px; }
.bundle-option .b-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.bundle-option .b-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.bundle-option .b-prices {
  text-align: right;
  flex-shrink: 0;
  font-feature-settings: "tnum" 1;
}
.bundle-option .b-sale {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  letter-spacing: 0.01em;
}
.bundle-option .b-reg {
  font-size: 12px;
  color: var(--muted-soft);
  text-decoration: line-through;
}
.save-pill {
  background: var(--bronze-soft);
  color: var(--bronze-deep);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bundle-option .popular-tag {
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  background: var(--bronze);
  color: var(--paper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 3px;
  text-transform: uppercase;
}
.bundle-option .b-expand {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.bundle-option.selected .b-expand { display: block; }
.bundle-option .b-product-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bundle-option .b-thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.bundle-option .b-prod-content { flex: 1; min-width: 0; }
.bundle-option .b-prod-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--ink);
}
.bundle-option select {
  width: 100%;
  padding: 10px 13px;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8956a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.bundle-option .b-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.bundle-option .b-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.bundle-option .b-plus:hover { background: var(--bronze-deep); }
.bundle-option .b-choose {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 11px 28px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}
.bundle-option .b-choose:hover { background: var(--bronze-deep); }

/* CTA */
.pdp-cta {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: 19px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 18px;
  transition: all 0.25s var(--ease);
  font-family: inherit;
}
.pdp-cta:hover {
  background: var(--bronze-deep);
  transform: translateY(-1px);
}

/* "1:1 Design" block */
.pdp-design-block {
  margin-top: 36px;
  background: var(--paper-warm);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
}
.pdp-design-block .text {
  padding: 22px 26px;
  font-family: var(--font-display);
}
.pdp-design-block .text .accent {
  color: var(--bronze-deep);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}
.pdp-design-block .text .sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}
.pdp-design-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Meta */
.pdp-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pdp-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
}
.pdp-meta li {
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.pdp-meta li::before {
  content: "✓";
  color: var(--bronze);
  font-weight: 700;
  margin-right: 8px;
}

/* Specs */
.pdp-specs {
  max-width: 1000px;
  margin: 60px auto 60px;
  padding: 0 28px;
}
.pdp-specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pdp-specs th,
.pdp-specs td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.pdp-specs tr:last-child th,
.pdp-specs tr:last-child td { border-bottom: 0; }
.pdp-specs th {
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 30%;
  background: var(--paper-warm);
  text-transform: uppercase;
  font-size: 11px;
  color: var(--bronze-deep);
}
.pdp-specs td {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

/* Block (Shipping & Returns, Package Contents) */
.pdp-block {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 28px;
}
.pdp-block h2 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}
.pdp-block .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pdp-block .card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: 6px;
  transition: border-color 0.3s var(--ease);
}
.pdp-block .card:hover {
  border-color: var(--bronze-soft);
}
.pdp-block .card h3 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--bronze-deep);
}
.pdp-block .card p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 6px;
  color: var(--ink-soft);
}
.pdp-block .card p:last-child { margin-bottom: 0; }
.pdp-block .intro {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 740px;
  margin: -14px auto 26px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

/* Trustpilot link */
.pdp-trustpilot-link {
  text-align: center;
  margin: 40px auto;
  padding: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 820px;
}
.pdp-trustpilot-link a {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.pdp-trustpilot-link .star {
  color: var(--trustpilot-green);
  font-size: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.pdp-trustpilot-link strong { font-weight: 700; color: var(--ink); }

/* Trustpilot reviews block */
.tp-reviews {
  background: var(--paper-warm);
  padding: 64px 28px;
  margin: 40px 0;
}
.tp-reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.tp-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.tp-reviews-header .rating-label { color: var(--ink-soft); }
.tp-reviews-header .rating-num { font-weight: 700; color: var(--ink); }
.tp-reviews-header .based-on {
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.tp-reviews-header .reviews-count {
  color: var(--trustpilot-green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tp-review-card {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tp-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
}
.tp-review-card .photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--paper-warm);
}
.tp-review-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tp-review-card:hover .photo img { transform: scale(1.05); }
.tp-review-card .body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tp-review-card .mini-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 10px;
}
.tp-review-card .mini-stars span {
  width: 14px;
  height: 14px;
  background: var(--trustpilot-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
}
.tp-review-card .quote {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex: 1;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 14px;
}
.tp-review-card .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.tp-review-card .name {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.tp-review-card .verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--trustpilot-green);
  font-weight: 600;
  font-size: 10px;
}
.tp-review-card .verified::before {
  content: "✓";
  background: var(--trustpilot-green);
  color: #fff;
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

/* Frequently bought together */
.fbt-section {
  max-width: var(--max-w);
  margin: 40px auto 70px;
  padding: 0 28px;
}
.fbt-section h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.fbt-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
}
.fbt-scroll .product-card {
  scroll-snap-align: start;
}
.fbt-scroll .product-card .img-wrap { aspect-ratio: 1/1; }
.fbt-scroll .product-card .name { font-size: 12px; }
.fbt-scroll .product-card .price { font-size: 11px; }
.fbt-scroll::-webkit-scrollbar { height: 6px; }
.fbt-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

/* Care/Manual cards */
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.care-card {
  border: 1px solid var(--line);
  padding: 24px 26px;
  border-radius: 6px;
  background: var(--paper);
  transition: border-color 0.3s var(--ease);
}
.care-card:hover { border-color: var(--bronze-soft); }
.care-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.care-card p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: var(--ink-soft);
}

.manual-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
  margin: 20px 0;
  background: var(--paper);
}
.manual-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.manual-card .sub-card {
  border: 1px solid var(--line-soft);
  padding: 16px 18px;
  margin: 16px 0;
  border-radius: 8px;
  background: var(--paper-warm);
}
.manual-card .sub-card h4 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bronze-deep);
}
.manual-card ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ============================================================
   HERO EDITORIAL OVERLAY
   ============================================================ */
.hero--editorial {
  position: relative;
  overflow: hidden;
}
.hero--editorial img {
  display: block;
  width: 100%;
}
/* Scrim gradient — hides any baked-in banner text on the left,
   gives overlay clean dark area to sit on */
.hero--editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 15, 15, 0.92) 0%,
    rgba(15, 15, 15, 0.78) 28%,
    rgba(15, 15, 15, 0.5) 50%,
    rgba(15, 15, 15, 0.05) 75%,
    rgba(15, 15, 15, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: var(--paper);
  max-width: 540px;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  color: var(--paper);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 28px;
  color: rgba(250, 249, 246, 0.85);
  letter-spacing: 0.02em;
  font-weight: 300;
}
.hero-cta {
  display: inline-block;
  padding: 16px 38px;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--bronze);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.hero-cta:hover {
  background: var(--bronze);
  color: var(--ink);
  opacity: 1;
}

/* ============================================================
   LANDING PAGE (may-exclusive ad traffic)
   ============================================================ */

/* Hero overlay for landing */
.hero--landing .hero-overlay--landing {
  text-align: left;
  left: 6%;
}
.hero--landing .hero-title {
  font-size: 64px;
  line-height: 1.05;
}
.hero--landing .hero-sub {
  font-size: 15px;
  max-width: 460px;
}
.hero--landing .hero-cta {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
  font-weight: 700;
}
.hero--landing .hero-cta:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

/* Trust strip — 4 cells */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.ts-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.ts-cell:last-child { border-right: 0; }
.ts-icon {
  flex-shrink: 0;
  color: var(--bronze-deep);
}
.ts-icon-svg svg {
  width: 32px;
  height: 32px;
}
.ts-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.ts-text span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Mini ambassador band */
.amb-mini {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.amb-mini-label {
  color: var(--bronze);
  font-weight: 700;
}
.amb-mini-list {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 249, 246, 0.85);
  font-weight: 500;
}
.amb-mini-list .dot {
  color: var(--bronze);
  font-size: 6px;
}

/* Value props — Why Empire Club */
.value-props {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 28px;
}
.vp-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.vp-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  font-weight: 600;
}
.vp-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vp-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px 26px;
  background: var(--paper);
  transition: all 0.3s var(--ease);
}
.vp-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}
.vp-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--bronze);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.vp-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.vp-card p {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink-soft);
}

/* Landing grid header */
.landing-grid-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.lgh-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  font-weight: 600;
}
.landing-grid-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.landing-grid-header p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Landing inline FAQ */
.landing-faq {
  max-width: 1000px;
  margin: 60px auto 80px;
  padding: 0 28px;
}
.landing-faq h2 {
  font-family: var(--font-display);
  font-size: 36px;
  text-align: center;
  margin: 0 0 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.landing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.landing-faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 22px;
  transition: border-color 0.25s var(--ease);
}
.landing-faq details:hover { border-color: var(--bronze-soft); }
.landing-faq details[open] { border-color: var(--bronze); }
.landing-faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.landing-faq summary::-webkit-details-marker { display: none; }
.landing-faq summary::after {
  content: "+";
  color: var(--bronze);
  font-size: 22px;
  font-weight: 300;
  margin-left: 12px;
}
.landing-faq details[open] summary::after { content: "−"; }
.landing-faq p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   PRESS STRIP — "As Featured In"
   ============================================================ */
.press-strip {
  background: var(--paper);
  padding: 36px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.press-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.press-logo {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-size: 18px;
  opacity: 0.65;
  transition: all 0.3s var(--ease);
  cursor: default;
  font-family: var(--font-display);
}
.press-logo:hover { color: var(--bronze-deep); opacity: 1; }
.press-gq { font-family: "Times New Roman", serif; font-size: 24px; letter-spacing: 0; }
.press-forbes { font-family: "Times New Roman", serif; font-size: 20px; letter-spacing: 0; font-style: italic; font-weight: 800; }
.press-esq { font-family: var(--font-display); font-style: italic; font-size: 22px; letter-spacing: 0.04em; }
.press-robb { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.25em; }
.press-hodinkee { font-family: var(--font-body); font-weight: 800; font-size: 14px; letter-spacing: 0.2em; }

/* ============================================================
   AMBASSADORS — "Worn by Icons"
   ============================================================ */
.ambassadors {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 28px;
  margin: 0;
}
.amb-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.amb-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  font-weight: 500;
}
.amb-header h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  color: var(--paper);
  line-height: 1.1;
}
.amb-header p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 249, 246, 0.7);
  margin: 0;
}
.amb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.amb-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--paper);
  transition: all 0.4s var(--ease);
  position: relative;
}
.amb-card:hover {
  background: rgba(184, 149, 106, 0.08);
  border-color: var(--bronze);
  transform: translateY(-4px);
  color: var(--paper);
}
.amb-card:hover .amb-cta { color: var(--bronze); padding-left: 4px; }
.amb-img {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.amb-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.amb-card:hover .amb-img img { transform: scale(1.08); }
.amb-body { padding: 24px 26px 28px; }
.amb-sport {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 8px;
}
.amb-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  color: var(--paper);
}
.amb-sub {
  font-size: 12px;
  color: rgba(250, 249, 246, 0.55);
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}
.amb-watch {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  margin-bottom: 14px;
}
.amb-watch-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.45);
  display: block;
  margin-bottom: 4px;
}
.amb-watch-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.amb-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.7);
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.tp-carousel {
  position: relative;
}
.tp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.08);
  font-family: var(--font-body);
  line-height: 1;
  padding: 0;
}
.tp-arrow:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tp-prev { left: -22px; }
.tp-next { right: -22px; }
.tp-reviews-grid {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.tp-reviews-grid .tp-review-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
}
.tp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.tp-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-soft);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.tp-dots button.active {
  background: var(--bronze);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CART DRAWER (slide-out)
   ============================================================ */
.cart-icon-btn {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--bronze);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  font-feature-settings: "tnum" 1;
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}
.cart-badge.visible { opacity: 1; }
.cart-badge.bump { transform: scale(1.4); }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(2px);
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--paper);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  background: var(--paper-warm);
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: 0;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.cart-close:hover { background: var(--paper-warm); }

.cart-free-bar {
  background: var(--bronze-soft);
  color: var(--bronze-deep);
  padding: 11px 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-align: center;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Empty state */
.cart-empty {
  padding: 60px 32px;
  text-align: center;
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.cart-empty-icon svg { width: 36px; height: 36px; }
.cart-empty-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 500;
}
.cart-empty-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 30px;
  letter-spacing: 0.02em;
}
.cart-empty-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s var(--ease);
}
.cart-empty-cta:hover { background: var(--bronze-deep); color: var(--paper); opacity: 1; }

/* Items list */
.cart-items { padding: 16px 26px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-img {
  background: var(--paper-warm);
  border-radius: 4px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.cart-item-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: fit-content;
  margin-top: 6px;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: none;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 500;
}
.cart-item-qty button:hover { background: var(--paper-warm); }
.cart-item-qty .q-val {
  width: 28px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  font-feature-settings: "tnum" 1;
}
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
}
.cart-item-remove {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s var(--ease);
}
.cart-item-remove:hover { color: var(--error); }

/* Footer */
.cart-foot {
  border-top: 1px solid var(--line);
  padding: 22px 26px 26px;
  padding-bottom: calc(26px + env(safe-area-inset-bottom));
  background: var(--paper);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.cart-subtotal {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.cart-subtotal span:last-child {
  font-feature-settings: "tnum" 1;
}
.cart-shipping {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.cart-free-label {
  background: var(--bronze-soft);
  color: var(--bronze-deep);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}
.cart-checkout {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 17px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease);
  font-family: inherit;
}
.cart-checkout:hover { background: var(--bronze-deep); }
.cart-trust {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* Hide footer when cart is empty (toggled by JS) */
.cart-drawer.is-empty .cart-foot { display: none; }
.cart-drawer:not(.is-empty) .cart-empty { display: none; }
.cart-drawer.is-empty .cart-items { display: none; }

/* ============================================================
   STICKY MOBILE CTA BAR (PDP only)
   ============================================================ */
.mobile-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 100;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -4px 20px rgba(26, 26, 26, 0.08);
}
.mobile-buy-bar .mbb-price {
  font-feature-settings: "tnum" 1;
  flex-shrink: 0;
}
.mobile-buy-bar .mbb-sale {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.mobile-buy-bar .mbb-reg {
  font-size: 11px;
  color: var(--muted-soft);
  text-decoration: line-through;
  display: block;
  margin-top: 2px;
}
.mobile-buy-bar button {
  flex: 1;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  /* Trust strip → 2x2 grid */
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 8px 0; }
  .ts-cell { padding: 8px 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .ts-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .ts-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .ts-text strong { font-size: 12px; }
  .ts-text span { font-size: 10px; }
  .ts-icon-svg svg { width: 26px; height: 26px; }
  /* Value props 2x2 */
  .vp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vp-header h2 { font-size: 32px; }
  .value-props { padding: 56px 22px; }
  /* Mini ambassador band */
  .amb-mini { padding: 12px 16px; font-size: 10px; gap: 8px; }
  .amb-mini-list { gap: 8px; }
  /* Landing FAQ */
  .landing-faq-grid { grid-template-columns: 1fr; }
  .landing-faq h2 { font-size: 28px; }
  /* Landing hero */
  .hero--landing .hero-title { font-size: 42px; }
  .hero--landing .hero-sub { font-size: 13px; }
  .landing-grid-header h2 { font-size: 32px; }

  /* Hero overlay mobile — gradient covers more uniformly */
  .hero--editorial::before {
    background: linear-gradient(
      to right,
      rgba(15, 15, 15, 0.85) 0%,
      rgba(15, 15, 15, 0.75) 60%,
      rgba(15, 15, 15, 0.5) 100%
    );
  }
  .hero-overlay { left: 5%; right: 5%; max-width: none; }
  .hero-title { font-size: 48px; }
  .hero-sub { font-size: 14px; }
  /* Ambassadors */
  .amb-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .amb-header h2 { font-size: 36px; }
  .ambassadors { padding: 64px 22px; }
  /* Press strip */
  .press-strip { gap: 16px; padding: 24px 22px; }
  .press-logos { gap: 26px; }
  .press-gq { font-size: 20px; }
  .press-forbes { font-size: 17px; }
  .press-esq { font-size: 19px; }
  /* Reviews carousel — show 2 cards */
  .tp-reviews-grid .tp-review-card { flex: 0 0 calc((100% - 16px) / 2); }
  .tp-prev { left: -10px; }
  .tp-next { right: -10px; }
  .tp-arrow { width: 38px; height: 38px; font-size: 20px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner > div { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .footer-inner > div:last-child { border-bottom: 0; }
  .video-carousel-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 1fr; gap: 28px; padding: 24px 18px; }
  .pdp-info { padding-left: 0; }
  .pdp-block .grid { grid-template-columns: 1fr; }
  .pdp-badges { grid-template-columns: 56px 1fr 1fr; gap: 8px; padding: 10px 14px; }
  .brand-circles { grid-template-columns: repeat(4, 1fr); }
  .care-grid { grid-template-columns: 1fr; }
  .tile-trio { grid-template-columns: 1fr; }
  .main-nav-inner { display: none; }
  .menu-toggle { display: inline-flex; }
  .section h1 { font-size: 36px; }
  .section h2 { font-size: 28px; }
  .pdp-info h1 { font-size: 26px; }
  .tp-reviews-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile sticky bar appears */
  body.is-pdp { padding-bottom: 88px; }
  body.is-pdp .mobile-buy-bar { display: flex; }

  /* Mobile swipeable thumbs */
  .pdp-thumbs {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .pdp-thumb {
    flex: 0 0 22%;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  /* Hero mobile */
  .hero-title { font-size: 36px; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: 0.28em; }
  .hero-cta { padding: 14px 28px; font-size: 11px; }
  /* Landing hero mobile */
  .hero--landing .hero-title { font-size: 32px; line-height: 1.05; }
  .hero--landing .hero-sub { font-size: 12px; max-width: 100%; }
  .hero--landing .hero-overlay--landing { top: 50%; left: 5%; right: 5%; }
  /* Trust strip 1 column on small */
  .trust-strip { grid-template-columns: 1fr; padding: 12px 16px; }
  .ts-cell { border-right: 0 !important; padding: 10px 4px; }
  .ts-cell:not(:last-child) { border-bottom: 1px solid var(--line); }
  /* Value props 1 col */
  .vp-grid { grid-template-columns: 1fr; }
  .vp-card { padding: 22px 18px; }
  .vp-header h2 { font-size: 26px; }
  .landing-grid-header h2 { font-size: 26px; }
  /* Landing FAQ */
  .landing-faq { padding: 0 18px; margin: 40px auto 60px; }
  .landing-faq summary { font-size: 13px; }
  /* Amb mini wrap nicely */
  .amb-mini { font-size: 9.5px; letter-spacing: 0.15em; padding: 10px 12px; }
  .amb-mini-list { gap: 6px; }
  .amb-mini-list .dot { font-size: 5px; }
  /* Ambassadors single column */
  .amb-grid { grid-template-columns: 1fr; gap: 12px; }
  .amb-header h2 { font-size: 28px; }
  .amb-header p { font-size: 13px; }
  /* Reviews — 1 card */
  .tp-reviews-grid .tp-review-card { flex: 0 0 100%; }
  .tp-arrow { width: 34px; height: 34px; font-size: 18px; }
  /* Cart drawer full width */
  .cart-drawer { width: 100%; }
  .cart-head h3 { font-size: 22px; }
  .cart-head { padding: 18px 22px 14px; }
  .cart-items { padding: 12px 22px; }
  .cart-foot { padding: 18px 22px 22px; }
  .cart-item { grid-template-columns: 70px 1fr auto; gap: 12px; padding: 14px 0; }

  body { font-size: 14.5px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .section { padding: 56px 18px; }
  .section--tight { padding: 24px 18px; }
  .section h1 { font-size: 30px; letter-spacing: 0.04em; }
  .section h2 { font-size: 24px; }
  .video-carousel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vc-handle { font-size: 10px; padding: 5px 12px; }
  .brand-circles { grid-template-columns: repeat(3, 1fr); padding: 28px 8px; }
  .header-inner { grid-template-columns: auto 1fr auto; padding: 14px 18px; gap: 8px; }
  .brand { font-size: 22px; }
  .announcement-inner { gap: 12px; }
  .announcement { padding: 8px 12px; font-size: 9.5px; }
  .announcement-title small { font-size: 7.5px; }
  .countdown-box { padding: 3px 7px; min-width: 30px; }
  .countdown-box .num { font-size: 11px; }
  .countdown-box .lbl { font-size: 7px; }
  .paginator {
    gap: 12px;
    font-size: 18px;
    padding: 36px 0 8px;
  }
  .paginator .page-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Trustpilot reviews single column */
  .tp-reviews-grid { grid-template-columns: 1fr; }
  .tp-reviews { padding: 40px 18px; }
  .tp-reviews-header { font-size: 13px; gap: 12px; }

  /* Bundle widget mobile */
  .bundle-option { padding: 14px 16px; }
  .bundle-option .b-label { font-size: 14px; gap: 8px; }
  .bundle-option .b-sale { font-size: 16px; }
  .save-pill { font-size: 9px; padding: 3px 8px; }
  .bundle-option .popular-tag { font-size: 8px; padding: 4px 9px; right: 14px; }

  /* PDP mobile */
  .pdp { padding: 18px 14px; gap: 22px; }
  .pdp-info h1 { font-size: 22px; line-height: 1.25; }
  .pdp-price-row .sale { font-size: 22px; }
  .pdp-design-block { grid-template-columns: 1fr; }
  .pdp-design-block img { aspect-ratio: 16/9; }
  .pdp-specs { padding: 0 14px; }
  .pdp-specs th { width: 38%; font-size: 10px; padding: 12px 14px; }
  .pdp-specs td { font-size: 12px; padding: 12px 14px; }
  .pdp-block { padding: 0 14px; }
  .pdp-block h2 { font-size: 24px; }
  .pdp-trust { gap: 12px; padding-bottom: 12px; margin-bottom: 14px; }
  .tp-star { width: 18px; height: 18px; font-size: 11px; }
  .pdp-trust .trust-text { font-size: 10px; }

  /* FAQ mobile */
  .faq { padding: 32px 22px; margin: 32px auto; }
  .faq h2 { font-size: 22px; }
  .faq summary { font-size: 11px; min-height: 48px; padding: 10px 0; }

  /* Footer mobile */
  .site-footer { padding: 44px 22px 24px; }
  .footer-inner h4 {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    padding: 14px 0;
    align-items: center;
  }
  .footer-inner h4::after {
    content: "+";
    font-size: 18px;
    color: var(--bronze);
    transition: transform 0.3s var(--ease);
  }
  .footer-inner > div.expanded h4::after { content: "−"; }
  .footer-inner ul,
  .footer-inner .contact p {
    display: none;
  }
  .footer-inner > div.expanded ul,
  .footer-inner > div.expanded .contact p { display: block; }
  .footer-inner > div.contact { /* contact always shown */ }
  .footer-inner > div.contact ul,
  .footer-inner > div.contact p { display: block; }

  /* Page-body mobile */
  .page-body h1 { font-size: 32px; margin: 8px 0 28px; }
  .page-body h2 { font-size: 22px; }
}

@media (max-width: 420px) {
  .product-card .name { font-size: 12px; }
  .product-card .price { font-size: 11px; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
