:root {
  color-scheme: light;
  --bg: #fbfbfa;
  --ink: #1a1a1a;
  --ink-soft: #343434;
  --muted: #555555;
  --panel: rgba(255, 255, 255, 0.76);
  --line: rgba(113, 113, 122, 0.2);
  --gold: #c89b30;
  --gold-soft: #8c6820;
  --green: #0d7f5a;
  --shadow: 0 28px 90px rgba(26, 26, 26, 0.08);
  --cursor-x: 68%;
  --cursor-y: 24%;
  --wind-wdth: 96;
  --spring: cubic-bezier(0.18, 0.9, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: #fbfbfa;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(199, 163, 91, 0.2), transparent 28vw),
    linear-gradient(90deg, rgba(199, 163, 91, 0.08) 0 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(199, 163, 91, 0.055) 0 1px, transparent 1px) 0 0 / 96px 96px,
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" on, "cv11" on;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(199, 163, 91, 0.13) 47.2% 47.5%, transparent 47.8% 100%),
    radial-gradient(circle at 50% 20%, rgba(232, 226, 214, 0.5), transparent 34%),
    #fbfbfa;
  pointer-events: none;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  background: var(--gold);
  color: #000;
  box-shadow: inset 0 0 0 1px rgba(199, 163, 91, 0.45);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.top-nav a {
  text-decoration: none;
}

.nav-action,
.primary-button,
.secondary-button,
.copy-button {
  min-height: 44px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-action {
  padding: 0 18px;
  border: 1px solid rgba(199, 163, 91, 0.62);
  background: rgba(199, 163, 91, 0.92);
  color: #000;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  min-height: calc(100vh - 75px);
  padding: clamp(50px, 7vw, 98px) clamp(18px, 4vw, 58px) 46px;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  container-type: inline-size;
  container-name: showroom;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(199, 163, 91, 0.07) 50% 100%),
    radial-gradient(circle at 82% 42%, rgba(199, 163, 91, 0.25), transparent 34%);
}

.hero-copy {
  max-width: 790px;
}

.overline {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: var(--hero-title, clamp(48px, 6.4vw, 84px));
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  font-variation-settings: "wdth" 92, "wght" 880, "opsz" 60;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: var(--hero-body, clamp(18px, 1.8vw, 21px));
  line-height: 1.5;
  text-wrap: pretty;
  font-variation-settings: "wdth" 100, "wght" 430, "opsz" 16;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0 22px;
  text-decoration: none;
}

.primary-button {
  border: 1px solid rgba(199, 163, 91, 0.72);
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 0 rgba(199, 163, 91, 0);
  animation: restingPulse 1s ease-in-out infinite;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 18px 18px 18px 0;
}

.hero-stats dt {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-visual::before {
  position: absolute;
  inset: 38px 8% auto auto;
  width: 74%;
  height: 72%;
  content: "";
  border: 1px solid rgba(199, 163, 91, 0.34);
  background:
    linear-gradient(135deg, rgba(7, 9, 12, 0.86), rgba(27, 30, 36, 0.45)),
    repeating-linear-gradient(90deg, rgba(199, 163, 91, 0.08) 0 1px, transparent 1px 28px);
  box-shadow: var(--shadow);
}

.showroom-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.media-card {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(232, 211, 158, 0.24);
  border-radius: 0;
  background: rgba(9, 9, 11, 0.18);
  box-shadow: var(--shadow);
}

.media-card picture,
.product-media picture {
  display: contents;
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-card-bike {
  inset: 66px 0 auto auto;
  width: min(92%, 630px);
  height: 410px;
  padding: 26px;
}

.media-card-device {
  left: 0;
  bottom: 62px;
  width: 240px;
  height: 240px;
  padding: 18px;
}

.deal-tile {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 72px;
  display: grid;
  gap: 8px;
  width: 250px;
  padding: 22px;
  border: 1px solid rgba(199, 163, 91, 0.56);
  border-radius: 0;
  background: rgba(10, 11, 13, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.deal-tile span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-tile strong {
  font-size: 26px;
  line-height: 1.02;
}

.deal-strip {
  margin: 0 clamp(18px, 4vw, 58px) 18px;
  padding: 18px clamp(18px, 3vw, 32px);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.deal-strip p {
  max-width: 980px;
  margin: 0;
  font-size: 18px;
  font-weight: 740;
}

.experience {
  display: grid;
  scroll-snap-align: start;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 34px;
  padding: 58px clamp(18px, 4vw, 58px) 34px;
}

.experience-copy {
  max-width: 660px;
}

.experience h2,
.toolbar h2,
.conditions h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 0.96;
}

.experience p,
.toolbar p,
.conditions p {
  margin-bottom: 0;
  color: var(--muted);
}

.experience-points {
  display: grid;
  gap: 12px;
}

.experience-points div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 4px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.experience-points span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-weight: 950;
}

.experience-points strong {
  font-size: 20px;
}

.experience-points p {
  color: var(--muted);
}

.toolbar {
  display: flex;
  scroll-snap-align: start;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 56px clamp(18px, 4vw, 58px) 22px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(190px, 250px);
  gap: 12px;
}

.search-box,
.select-box {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input,
.select-box select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.025);
}

.search-box input:focus,
.select-box select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 163, 91, 0.16);
}

.featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 58px) 20px;
}

.featured::before,
.product-grid::before {
  content: "";
  display: none;
}

.featured-card {
  container-type: inline-size;
  container-name: opportunity-card;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(5, 6, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.22);
}

.featured-card span {
  color: var(--gold);
  font-size: var(--text-sm, 11px);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-variation-settings: "wdth" 122, "wght" 760;
}

.featured-card h3 {
  margin: 14px 0 10px;
  font-size: var(--text-xl, 22px);
  line-height: 1.1;
  text-wrap: balance;
  font-variation-settings: "wdth" 92, "wght" 840, "opsz" 36;
}

.featured-card p {
  min-height: 52px;
  color: var(--muted);
  font-size: var(--text-base, 14px);
  text-wrap: pretty;
  font-variation-settings: "wdth" 100, "wght" 420, "opsz" 14;
}

.featured-card strong {
  font-size: var(--text-lg, 28px);
  font-variation-settings: "wdth" 108, "wght" 900;
}

.product-grid {
  scroll-margin-top: 150px;
  scroll-snap-align: start;
  container-type: inline-size;
  container-name: catalog-grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 58px) 72px;
  transition: opacity 260ms var(--spring), transform 260ms var(--spring);
  perspective: 1200px;
}

.product-grid.is-updating {
  opacity: 0.42;
  transform: translateY(6px);
}

.product-card {
  position: relative;
  container-type: inline-size;
  container-name: opportunity-card;
  scroll-margin-top: 150px;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(1.28);
  transform-style: preserve-3d;
  transition:
    transform 520ms var(--spring),
    box-shadow 520ms var(--spring),
    border-color 520ms var(--spring),
    filter 520ms var(--spring);
  animation: productReveal 280ms ease both;
}

@container opportunity-card (min-width: 0) {
  .product-card,
  .featured-card {
    --text-base: clamp(0.92rem, 0.82rem + 0.42cqw, 1.08rem);
    --text-sm: calc(var(--text-base) / 1.24);
    --text-md: calc(var(--text-base) * 1.22);
    --text-lg: calc(var(--text-md) * 1.33);
    --text-xl: calc(var(--text-lg) * 1.26);
    --text-2xl: calc(var(--text-xl) * 1.18);
  }
}

@container catalog-grid (min-width: 0) {
  .product-card {
    --text-base: clamp(0.82rem, 0.76rem + 0.18cqw, 0.96rem);
    --text-sm: calc(var(--text-base) / 1.24);
    --text-md: calc(var(--text-base) * 1.18);
    --text-lg: calc(var(--text-md) * 1.22);
    --text-xl: calc(var(--text-lg) * 1.16);
    --text-2xl: calc(var(--text-xl) * 1.12);
  }
}

@container showroom (min-width: 0) {
  .hero {
    --hero-title: clamp(3rem, 2.1rem + 5.2cqw, 5.25rem);
    --hero-body: clamp(1.05rem, 0.92rem + 0.52cqw, 1.31rem);
  }
}

.product-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 42%, transparent 52%),
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(199, 163, 91, 0.18), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
}

.product-card > * {
  position: relative;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-6px) rotateX(0.6deg);
  border-color: rgba(199, 163, 91, 0.5);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.68), 0 0 70px rgba(199, 163, 91, 0.22);
}

.product-grid:has(.product-card.is-focused) .product-card:not(.is-focused) {
  opacity: 0.48;
  filter: blur(1.2px) saturate(0.7);
  transform: scale(0.992);
}

.product-card.is-focused {
  border-color: rgba(199, 163, 91, 0.82);
  box-shadow: 0 40px 118px rgba(0, 0, 0, 0.78), 0 0 90px rgba(199, 163, 91, 0.3);
}

.product-card:nth-child(1) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
  min-height: 520px;
}

.product-card:nth-child(1) .product-media {
  grid-column: 1;
  grid-row: 1 / span 8;
  height: 100%;
  min-height: 520px;
  border-right: 1px solid var(--line);
}

.product-card:nth-child(1) > :not(.product-media) {
  grid-column: 2;
}

.product-card:nth-child(1) .product-media img {
  max-width: 82%;
  max-height: 82%;
}

.product-card:nth-child(1) .card-top {
  align-self: start;
  margin-top: 32px;
}

.product-card:nth-child(1) h3 {
  max-width: 560px;
  font-size: min(var(--text-2xl, clamp(25px, 2.2vw, 32px)), 32px);
  line-height: 1.08;
  min-height: auto;
  font-variation-settings: "wdth" 88, "wght" 880, "opsz" 54;
}

.product-card:nth-child(1) .promo-price {
  font-size: min(var(--text-xl, clamp(27px, 2.3vw, 34px)), 34px);
}

.product-card:nth-child(1) .curation-line {
  max-width: 500px;
  font-size: 15px;
}

.product-card:nth-child(1) .copy-button {
  align-self: end;
}

.product-media {
  display: grid;
  height: 360px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(199, 163, 91, 0.34), transparent 36%),
    radial-gradient(circle at 50% 48%, rgba(199, 163, 91, 0.12), transparent 38%),
    transparent;
}

.product-media img {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 84%;
  padding: 0;
  object-fit: contain;
  filter:
    drop-shadow(0 32px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 26px rgba(199, 163, 91, 0.14));
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 22px 12px;
}

.category {
  color: var(--gold);
  font-size: var(--text-sm, 11px);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-variation-settings: "wdth" 122, "wght" 760;
}

.discount {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(200, 155, 48, 0.1);
  color: var(--gold-soft);
  font-size: var(--text-sm, 11px);
  font-weight: 950;
  font-variation-settings: "wdth" 112, "wght" 820;
}

.product-card h3 {
  min-height: 58px;
  margin: 0 22px 12px;
  font-size: var(--text-xl, clamp(22px, 2vw, 27px));
  line-height: 1.08;
  text-wrap: balance;
  font-variation-settings: "wdth" 92, "wght" 840, "opsz" 38;
}

.sku {
  display: grid;
  gap: 4px;
  margin: 0 22px 14px;
  color: var(--muted);
  font-size: var(--text-sm, 11px);
  font-weight: 720;
  font-variation-settings: "wdth" 110, "wght" 680;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 22px 14px;
}

.curation-line {
  min-height: 42px;
  margin: 0 22px 14px;
  color: var(--ink-soft);
  font-size: var(--text-base, 13px);
  line-height: 1.45;
  text-wrap: pretty;
  font-variation-settings: "wdth" 100, "wght" 430, "opsz" 14;
}

.promo-price {
  font-size: var(--text-lg, clamp(27px, 2.4vw, 31px));
  line-height: 1;
  font-weight: 950;
  font-variation-settings: "wdth" 108, "wght" 920;
}

.old-price {
  color: #9296a0;
  font-size: var(--text-sm, 13px);
  text-decoration: line-through;
}

.stock {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 22px 14px;
}

.stock div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 280ms var(--spring), background 280ms var(--spring), transform 280ms var(--spring);
}

.product-card:hover .stock div {
  border-color: rgba(199, 163, 91, 0.45);
  background: rgba(199, 163, 91, 0.09);
  transform: translateY(-1px);
}

.stock span {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm, 11px);
  font-weight: 900;
  text-transform: uppercase;
}

.stock strong {
  font-size: var(--text-md, 20px);
  font-variation-settings: "wdth" 110, "wght" 880;
}

.note {
  min-height: 38px;
  margin: 0 22px 16px;
  color: #d2b878;
  font-size: var(--text-sm, 12px);
  font-weight: 740;
  text-wrap: pretty;
}

.copy-button {
  width: calc(100% - 44px);
  margin-left: 22px;
  margin-right: 22px;
  margin-top: auto;
  margin-bottom: 22px;
  border: 1px solid rgba(199, 163, 91, 0.62);
  background: rgba(199, 163, 91, 0.95);
  color: #000;
  box-shadow: 0 0 0 rgba(199, 163, 91, 0);
  animation: restingPulse 1s ease-in-out infinite;
}

.copy-button:hover,
.primary-button:hover {
  box-shadow: 0 0 28px rgba(199, 163, 91, 0.4);
}

.copy-button:hover,
.secondary-button:hover,
.nav-action:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover,
.nav-action:hover {
  background: #e1bf73;
}

.copy-button:active,
.primary-button:active,
.secondary-button:active,
.nav-action:active {
  transform: translateY(1px) scale(0.985);
}

.product-card[data-sku="WFBIKE3"] h3,
.product-card[data-sku="WFBKTR123"] h3,
.product-card[data-sku="WFBKTR122"] h3,
.product-card[data-sku="WFBKTR125"] h3 {
  font-weight: 980;
  font-variation-settings: "wdth" 90, "wght" 920, "opsz" 48;
}

.product-card[data-sku^="WFCC"] h3,
.product-card[data-sku="WFPODCAD2"] h3,
.product-card[data-sku="WFRPMC"] h3,
.product-card[data-sku="WFTRACKRSPD1"] h3 {
  font-weight: 760;
  font-variation-settings: "wdth" 96, "wght" 720, "opsz" 34;
}

/* Elite showroom catalog pass: restrained scale, bento rhythm, tactile glass. */
.toolbar,
.featured,
.product-grid {
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
  padding-inline: 0;
}

.toolbar {
  padding-top: 68px;
  padding-bottom: 24px;
}

.toolbar h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.featured {
  gap: 18px;
  padding-bottom: 24px;
}

.featured-card {
  min-height: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 12%, rgba(199, 163, 91, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #09090b;
}

.featured-card h3 {
  max-width: 30ch;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.16;
}

.featured-card p {
  min-height: 0;
  max-width: 42ch;
  font-size: 13px;
}

.featured-card strong {
  display: block;
  margin-top: 30px;
  color: var(--gold);
  font-size: clamp(22px, 2vw, 28px);
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(188px, auto);
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 96px;
}

.product-card {
  grid-column: span 4;
  min-height: 0;
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    #09090b;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.38);
}

.product-card::before {
  opacity: 0.18;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 50%, transparent 59%),
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(199, 163, 91, 0.1), transparent 30%);
}

.product-card:hover {
  border-color: rgba(199, 163, 91, 0.34);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.48), 0 0 42px rgba(199, 163, 91, 0.1);
}

.product-card > * {
  margin-left: 0;
  margin-right: 0;
}

.product-media {
  height: 220px;
  margin: -6px 0 34px;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.045), transparent 34%),
    radial-gradient(ellipse at 50% 78%, rgba(199, 163, 91, 0.055), transparent 40%),
    transparent;
}

.product-media img {
  max-width: 86%;
  max-height: 86%;
  filter:
    drop-shadow(0 30px 28px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 22px rgba(199, 163, 91, 0.1));
}

.card-top {
  margin: 0 0 22px;
}

.category,
.discount,
.stock span {
  font-size: 10px;
  letter-spacing: 0.13em;
}

.discount {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--gold-soft);
}

.product-card h3 {
  min-height: 0;
  margin: 0 0 18px;
  max-width: 24ch;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.16;
}

.sku {
  margin: 0 0 24px;
  font-size: 10px;
  opacity: 0.76;
}

.price-row {
  margin: 0 0 24px;
}

.promo-price {
  color: var(--gold);
  font-size: clamp(21px, 1.8vw, 26px);
}

.old-price {
  font-size: 11px;
}

.curation-line {
  min-height: 0;
  margin: 0 0 26px;
  max-width: 42ch;
  font-size: 12.5px;
  line-height: 1.58;
}

.stock {
  gap: 10px;
  margin: 0 0 24px;
}

.stock div {
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
}

.stock strong {
  font-size: 18px;
}

.note {
  min-height: 0;
  margin: 0 0 28px;
  font-size: 11.5px;
}

.copy-button {
  width: 100%;
  min-height: 42px;
  margin: auto 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  animation: none;
}

.copy-button:hover,
.primary-button:hover {
  border-color: rgba(199, 163, 91, 0.62);
  background: rgba(199, 163, 91, 0.16);
  box-shadow: 0 0 28px rgba(199, 163, 91, 0.18);
  color: var(--gold-soft);
}

.primary-button,
.nav-action {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  animation: none;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.035);
}

@media (min-width: 1121px) {
  .product-card[data-sku="WFBIKE3"] {
    grid-column: span 8;
    grid-row: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    column-gap: clamp(34px, 4vw, 58px);
    align-items: center;
    min-height: 560px;
  }

  .product-card[data-sku="WFBIKE3"] .product-media {
    grid-column: 1;
    grid-row: 1 / span 8;
    height: 100%;
    min-height: 430px;
    margin: 0;
    border-right: 0;
  }

  .product-card[data-sku="WFBIKE3"] > :not(.product-media) {
    grid-column: 2;
  }

  .product-card[data-sku="WFBIKE3"] .product-media img {
    max-width: 94%;
    max-height: 94%;
  }

  .product-card[data-sku="WFBIKE3"] h3 {
    font-size: clamp(25px, 2.7vw, 34px);
    line-height: 1.08;
  }

  .product-card[data-sku="WFBIKE3"] .promo-price {
    font-size: clamp(26px, 2.6vw, 34px);
  }

  .product-card[data-sku="WFBKTR123"],
  .product-card[data-sku="WFBKTR122"],
  .product-card[data-sku="WFBKTR125"],
  .product-card[data-sku="WFCC9"],
  .product-card[data-sku="WFCC6"],
  .product-card[data-sku="WFCC7"],
  .product-card[data-sku="WFPRX2S55"],
  .product-card[data-sku="WFPRX2L55"] {
    grid-column: span 6;
  }

  .product-card[data-sku="WFPODCAD2"],
  .product-card[data-sku="WFRPMC"],
  .product-card[data-sku="WFTRACKRSPD1"],
  .product-card[data-sku="WFBTHR03"],
  .product-card[data-sku="WFBTHR05W"],
  .product-card[data-sku="WFBTHRO4"],
  .product-card[data-sku="WFPRC1S53"],
  .product-card[data-sku="WFPRZ1S53"] {
    grid-column: span 3;
    padding: 28px;
  }

  .product-card[data-sku="WFPODCAD2"] .product-media,
  .product-card[data-sku="WFRPMC"] .product-media,
  .product-card[data-sku="WFTRACKRSPD1"] .product-media,
  .product-card[data-sku="WFBTHR03"] .product-media,
  .product-card[data-sku="WFBTHR05W"] .product-media,
  .product-card[data-sku="WFBTHRO4"] .product-media,
  .product-card[data-sku="WFPRC1S53"] .product-media,
  .product-card[data-sku="WFPRZ1S53"] .product-media {
    height: 150px;
    margin-bottom: 28px;
  }

  .product-card[data-sku="WFPODCAD2"] h3,
  .product-card[data-sku="WFRPMC"] h3,
  .product-card[data-sku="WFTRACKRSPD1"] h3,
  .product-card[data-sku="WFBTHR03"] h3,
  .product-card[data-sku="WFBTHR05W"] h3,
  .product-card[data-sku="WFBTHRO4"] h3,
  .product-card[data-sku="WFPRC1S53"] h3,
  .product-card[data-sku="WFPRZ1S53"] h3 {
    font-size: clamp(15px, 1.1vw, 18px);
  }
}

.empty-state {
  margin: 0 clamp(18px, 4vw, 58px) 60px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  backdrop-filter: blur(18px);
}

.conditions {
  display: grid;
  scroll-snap-align: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  margin: 0 clamp(18px, 4vw, 58px) 58px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    #000;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.conditions p,
.conditions li {
  color: var(--ink-soft);
}

.conditions ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.88);
  color: var(--ink);
  font-weight: 850;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms var(--spring), transform 260ms var(--spring);
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes productReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes restingPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(199, 163, 91, 0.16);
  }

  50% {
    box-shadow: 0 0 24px rgba(199, 163, 91, 0.34);
  }
}

@media (max-width: 1120px) {
  .hero,
  .deal-strip,
  .experience,
  .conditions {
    width: min(calc(100% - 48px), 920px);
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero,
  .experience,
  .conditions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 48px), 760px);
  }

  .product-card,
  .product-card[data-sku="WFBIKE3"],
  .product-card[data-sku="WFBKTR123"],
  .product-card[data-sku="WFBKTR122"],
  .product-card[data-sku="WFBKTR125"],
  .product-card[data-sku="WFCC9"],
  .product-card[data-sku="WFCC6"],
  .product-card[data-sku="WFCC7"],
  .product-card[data-sku="WFPRX2S55"],
  .product-card[data-sku="WFPRX2L55"],
  .product-card[data-sku="WFPODCAD2"],
  .product-card[data-sku="WFRPMC"],
  .product-card[data-sku="WFTRACKRSPD1"],
  .product-card[data-sku="WFBTHR03"],
  .product-card[data-sku="WFBTHR05W"],
  .product-card[data-sku="WFBTHRO4"],
  .product-card[data-sku="WFPRC1S53"],
  .product-card[data-sku="WFPRZ1S53"] {
    grid-column: 1 / -1;
  }

  .product-card:nth-child(1) {
    display: flex;
    grid-column: auto;
    min-height: auto;
  }

  .product-card[data-sku="WFBIKE3"] {
    display: flex;
    min-height: 0;
  }

  .product-card[data-sku="WFBIKE3"] .product-media,
  .product-card[data-sku="WFBIKE3"] > :not(.product-media) {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card:nth-child(1) .product-media {
    height: 360px;
    min-height: 0;
    border-right: 0;
  }

  .product-card:nth-child(1) .product-media img {
    max-width: 84%;
    max-height: 84%;
  }

  .product-card:nth-child(1) h3 {
    font-size: 26px;
  }

  .product-card:nth-child(1) .promo-price {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .hero,
  .deal-strip,
  .experience,
  .conditions,
  .toolbar,
  .featured,
  .product-grid {
    width: min(calc(100% - 32px), 100%);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
  }

  .nav-action {
    padding: 0 10px;
  }

  .hero {
    padding-top: 24px;
    gap: 22px;
  }

  h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 16px;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    order: -1;
    min-height: 300px;
    margin-top: 4px;
  }

  .media-card-bike {
    width: 100%;
    height: 218px;
    padding: 16px;
  }

  .media-card-device {
    width: 138px;
    height: 138px;
  }

  .deal-tile {
    right: 8px;
    bottom: 12px;
    width: 196px;
    padding: 16px;
  }

  .deal-tile strong {
    font-size: 21px;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filters,
  .product-grid,
  .featured {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    padding: 26px;
  }

  .product-media {
    height: 220px;
  }

  .product-card:nth-child(1) .product-media {
    height: 240px;
  }

  .product-card h3 {
    min-height: auto;
    font-size: 19px;
  }

  .promo-price {
    font-size: 23px;
  }
}

/* Catalog v13: compact world-tour bento, six-across rhythm, floating media. */
.toolbar,
.featured,
.product-grid {
  width: min(calc(100% - 48px), 1440px);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.media-card {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse at 50% 82%, rgba(199, 163, 91, 0.1), transparent 44%),
    rgba(9, 9, 11, 0.18);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 26px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 18px rgba(199, 163, 91, 0.12));
}

.product-grid {
  grid-template-columns: repeat(30, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(0, auto);
  align-items: start;
  gap: 14px;
  padding-top: 22px;
  padding-bottom: 92px;
}

.product-card,
.product-card:nth-child(1),
.product-card[data-sku="WFBIKE3"] {
  display: flex;
  flex-direction: column;
  grid-column: span 5;
  grid-row: auto;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 2%, rgba(255, 255, 255, 0.035), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.014)),
    #09090b;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.product-card::before {
  opacity: 0.16;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(199, 163, 91, 0.11), transparent 30%),
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.055) 50%, transparent 58%);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 163, 91, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 30px rgba(199, 163, 91, 0.09);
}

.product-media,
.product-card:nth-child(1) .product-media,
.product-card[data-sku="WFBIKE3"] .product-media {
  width: 100%;
  height: 132px;
  min-height: 0;
  margin: 0 0 18px;
  overflow: visible;
  border-right: 0;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.035), transparent 34%),
    radial-gradient(ellipse at 50% 80%, rgba(199, 163, 91, 0.07), transparent 42%),
    transparent;
}

.product-media img,
.product-card:nth-child(1) .product-media img,
.product-card[data-sku="WFBIKE3"] .product-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 18px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 14px rgba(199, 163, 91, 0.11));
}

.card-top,
.product-card:nth-child(1) .card-top {
  align-self: auto;
  margin: 0 0 12px;
}

.category,
.discount,
.stock span {
  font-size: 9px;
  letter-spacing: 0.12em;
}

.discount {
  padding: 6px 8px;
}

.product-card h3,
.product-card:nth-child(1) h3,
.product-card[data-sku="WFBIKE3"] h3 {
  min-height: 0;
  max-width: 22ch;
  margin: 0 0 10px;
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 1.18;
  letter-spacing: 0;
  font-variation-settings: "wdth" 92, "wght" 760, "opsz" 22;
}

.sku {
  gap: 4px;
  margin: 0 0 12px;
  font-size: 8.5px;
  opacity: 0.62;
}

.price-row {
  gap: 8px;
  margin: 0 0 12px;
}

.promo-price,
.product-card:nth-child(1) .promo-price,
.product-card[data-sku="WFBIKE3"] .promo-price {
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1;
}

.old-price {
  font-size: 9px;
}

.curation-line,
.product-card:nth-child(1) .curation-line {
  min-height: 0;
  max-width: 38ch;
  margin: 0 0 14px;
  color: rgba(238, 239, 232, 0.62);
  font-size: 10.5px;
  line-height: 1.46;
}

.stock {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 14px;
}

.stock div {
  padding: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.stock strong {
  font-size: 13px;
}

.note {
  min-height: 0;
  margin: 0 0 16px;
  font-size: 9.5px;
  line-height: 1.35;
}

.copy-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 10px;
  letter-spacing: 0.01em;
}

@media (min-width: 1180px) {
  .product-card[data-sku] {
    grid-column: span 5;
    padding: 18px;
  }

  .product-card[data-sku] h3 {
    font-size: clamp(13px, 0.82vw, 15px);
    line-height: 1.18;
  }

  .product-card[data-sku="WFBIKE3"] {
    grid-column: span 6;
    grid-row: auto;
    display: flex;
    min-height: 0;
    padding: 18px;
  }

  .product-card[data-sku="WFBIKE3"] .product-media {
    grid-column: auto;
    grid-row: auto;
    height: 150px;
    margin-bottom: 18px;
  }

  .product-card[data-sku="WFBIKE3"] > :not(.product-media) {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card[data-sku="WFBIKE3"] .product-media img {
    max-width: 100%;
    max-height: 100%;
  }

  .product-card[data-sku="WFBIKE3"] h3 {
    font-size: clamp(13px, 0.82vw, 15px);
    line-height: 1.18;
  }

  .product-card[data-sku="WFBIKE3"] .promo-price {
    font-size: clamp(17px, 1.05vw, 20px);
  }

  .product-card[data-sku="WFBKTR123"],
  .product-card[data-sku="WFBKTR122"],
  .product-card[data-sku="WFBKTR4"],
  .product-card[data-sku="WFBKTR125"],
  .product-card[data-sku="WFCC9"],
  .product-card[data-sku="WFCC6"],
  .product-card[data-sku="WFCC7"],
  .product-card[data-sku="WFPRX2S55"],
  .product-card[data-sku="WFPRX2L55"] {
    grid-column: span 6;
  }

  .product-card[data-sku="WFBKTR123"] .product-media,
  .product-card[data-sku="WFBKTR122"] .product-media,
  .product-card[data-sku="WFBKTR4"] .product-media,
  .product-card[data-sku="WFBKTR125"] .product-media,
  .product-card[data-sku="WFCC9"] .product-media,
  .product-card[data-sku="WFCC6"] .product-media,
  .product-card[data-sku="WFCC7"] .product-media,
  .product-card[data-sku="WFPRX2S55"] .product-media,
  .product-card[data-sku="WFPRX2L55"] .product-media {
    height: 150px;
  }
}

@media (min-width: 761px) and (max-width: 1179px) {
  .product-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card[data-sku="WFBIKE3"] {
    grid-column: span 4;
  }

  .product-card[data-sku="WFBIKE3"],
  .product-card[data-sku="WFBKTR123"],
  .product-card[data-sku="WFBKTR122"],
  .product-card[data-sku="WFBKTR125"] {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .toolbar,
  .featured,
  .product-grid {
    width: min(calc(100% - 32px), 100%);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card[data-sku="WFBIKE3"] {
    grid-column: 1 / -1;
    padding: 20px;
  }

  .product-media,
  .product-card:nth-child(1) .product-media,
  .product-card[data-sku="WFBIKE3"] .product-media {
    height: 190px;
  }

  .product-card h3,
  .product-card:nth-child(1) h3,
  .product-card[data-sku="WFBIKE3"] h3 {
    font-size: 18px;
  }

  .promo-price,
  .product-card:nth-child(1) .promo-price,
  .product-card[data-sku="WFBIKE3"] .promo-price {
    font-size: 22px;
  }
}

/* Catalog v19: high-key boutique gallery for Wahoo. */
body.highkey-gallery {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 42%, #f6f4ef 100%);
  color: #1a1a1a;
}

body.highkey-gallery::before {
  background:
    radial-gradient(circle at 18% 8%, rgba(232, 228, 218, 0.8), transparent 30vw),
    radial-gradient(circle at 82% 18%, rgba(200, 155, 48, 0.08), transparent 26vw),
    linear-gradient(90deg, rgba(26, 26, 26, 0.035) 0 1px, transparent 1px) 0 0 / 120px 120px,
    #fbfbfa;
}

body.highkey-gallery .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: none;
}

body.highkey-gallery .brand,
body.highkey-gallery .top-nav,
body.highkey-gallery .hero,
body.highkey-gallery .experience,
body.highkey-gallery .conditions {
  color: #1a1a1a;
}

body.highkey-gallery .brand-mark {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

body.highkey-gallery .top-nav a,
body.highkey-gallery .nav-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body.highkey-gallery .top-nav span,
body.highkey-gallery .nav-action span {
  color: rgba(17, 17, 17, 0.36);
  font-size: 11px;
  font-weight: 760;
}

body.highkey-gallery .nav-action span {
  color: rgba(255, 255, 255, 0.54);
}

body.highkey-gallery .nav-action,
body.highkey-gallery .primary-button {
  border-color: rgba(26, 26, 26, 0.92);
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

body.highkey-gallery .secondary-button,
body.highkey-gallery .copy-button {
  border-color: rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #1a1a1a;
  box-shadow: none;
}

body.highkey-gallery .hero {
  background: #ffffff;
  min-height: 700px;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

body.highkey-gallery .hero::before,
body.highkey-gallery .hero-visual::before {
  opacity: 0;
}

body.highkey-gallery h1,
body.highkey-gallery .experience h2,
body.highkey-gallery .toolbar h2,
body.highkey-gallery .conditions h2 {
  color: #1a1a1a;
}

body.highkey-gallery h1 {
  max-width: 13ch;
  font-size: clamp(46px, 5.8vw, 88px);
  line-height: 0.96;
  text-wrap: balance;
  font-variation-settings: "wdth" var(--wind-wdth), "wght" 820, "opsz" 72;
  transition: font-variation-settings 240ms cubic-bezier(0.18, 0.9, 0.24, 1);
}

body.highkey-gallery .hero-lead,
body.highkey-gallery .experience p,
body.highkey-gallery .toolbar p,
body.highkey-gallery .conditions p,
body.highkey-gallery .conditions li {
  color: #555555;
}

body.highkey-gallery .hero-lead {
  max-width: 590px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.45;
}

body.highkey-gallery .hero-stats {
  border-color: rgba(26, 26, 26, 0.12);
}

body.highkey-gallery .hero-stats dt,
body.highkey-gallery .featured-card strong,
body.highkey-gallery .promo-price {
  color: #c89b30;
}

body.highkey-gallery .media-card {
  border: 1px solid rgba(26, 26, 26, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 251, 250, 0.48)),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 28px 80px rgba(26, 26, 26, 0.08);
}

.has-three-hero body.highkey-gallery .showroom-canvas {
  opacity: 1;
  mix-blend-mode: normal;
}

.has-three-hero body.highkey-gallery .media-card {
  opacity: 0;
  pointer-events: none;
}

.has-three-hero body.highkey-gallery .deal-tile {
  right: 7%;
  bottom: 12%;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.has-three-hero body.highkey-gallery .deal-tile span {
  color: #8c6820;
}

.has-three-hero body.highkey-gallery .deal-tile strong {
  color: #1a1a1a;
}

body.highkey-gallery .media-card img {
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.1));
}

body.highkey-gallery .deal-tile,
body.highkey-gallery .deal-strip,
body.highkey-gallery .featured-card,
body.highkey-gallery .conditions,
body.highkey-gallery .empty-state {
  border: 1px solid rgba(113, 113, 122, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: #1a1a1a;
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.07);
}

body.highkey-gallery .deal-tile span,
body.highkey-gallery .featured-card span,
body.highkey-gallery .category,
body.highkey-gallery .experience-points span {
  color: #8c6820;
}

body.highkey-gallery .search-box,
body.highkey-gallery .select-box {
  color: #555555;
}

body.highkey-gallery .search-box input,
body.highkey-gallery .select-box select {
  border-color: rgba(113, 113, 122, 0.22);
  background: rgba(255, 255, 255, 0.84);
  color: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

body.highkey-gallery .toolbar,
body.highkey-gallery .featured,
body.highkey-gallery .product-grid {
  width: min(calc(100% - 112px), 1680px);
}

body.highkey-gallery .toolbar {
  align-items: flex-start;
  padding-top: 92px;
  padding-bottom: 34px;
}

body.highkey-gallery .toolbar h2 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.94;
}

body.highkey-gallery .toolbar p {
  max-width: 560px;
  line-height: 1.6;
}

body.highkey-gallery .featured {
  gap: clamp(26px, 3vw, 44px);
  padding-bottom: 32px;
}

body.highkey-gallery .featured-card {
  min-height: 250px;
  padding: clamp(30px, 3vw, 44px);
}

body.highkey-gallery .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(48px, 4.4vw, 72px) clamp(34px, 2.8vw, 44px);
  padding-top: 58px;
  padding-bottom: 140px;
}

body.highkey-gallery .product-card,
body.highkey-gallery .product-card:nth-child(1),
body.highkey-gallery .product-card[data-sku] {
  grid-column: auto;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(113, 113, 122, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 34px 88px rgba(26, 26, 26, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(1.06);
}

body.highkey-gallery .product-card::before {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 34%),
    radial-gradient(ellipse at 50% 31%, rgba(236, 233, 224, 0.42), transparent 42%);
  mix-blend-mode: normal;
}

body.highkey-gallery .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 155, 48, 0.34);
  box-shadow: 0 30px 84px rgba(26, 26, 26, 0.1);
}

body.highkey-gallery .product-media,
body.highkey-gallery .product-card:nth-child(1) .product-media,
body.highkey-gallery .product-card[data-sku] .product-media {
  position: relative;
  height: 188px;
  margin-bottom: 34px;
  background: transparent;
}

body.highkey-gallery .product-media::after {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 18px;
  height: 16px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0.07) 34%, transparent 72%);
  filter: blur(14px);
  transform: scaleX(0.76);
}

body.highkey-gallery .product-media img,
body.highkey-gallery .product-card:nth-child(1) .product-media img,
body.highkey-gallery .product-card[data-sku] .product-media img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.1));
}

body.highkey-gallery .card-top,
body.highkey-gallery .product-card:nth-child(1) .card-top {
  margin-bottom: 16px;
}

body.highkey-gallery .category,
body.highkey-gallery .stock span {
  font-size: 9px;
  color: #777777;
  letter-spacing: 0.14em;
}

body.highkey-gallery .discount {
  border-color: rgba(200, 155, 48, 0.24);
  background: rgba(200, 155, 48, 0.08);
  color: #8c6820;
}

body.highkey-gallery .product-card h3,
body.highkey-gallery .product-card:nth-child(1) h3,
body.highkey-gallery .product-card[data-sku] h3 {
  max-width: 24ch;
  margin-bottom: 14px;
  color: #1a1a1a;
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.2;
  font-weight: 760;
}

body.highkey-gallery .sku,
body.highkey-gallery .old-price,
body.highkey-gallery .note {
  color: #777777;
}

body.highkey-gallery .curation-line,
body.highkey-gallery .product-card:nth-child(1) .curation-line {
  color: #555555;
  font-size: 11.5px;
  line-height: 1.62;
}

body.highkey-gallery .stock div {
  border-color: rgba(113, 113, 122, 0.16);
  background: rgba(251, 251, 250, 0.72);
}

body.highkey-gallery .stock strong {
  color: #1a1a1a;
}

body.highkey-gallery .copy-button:hover,
body.highkey-gallery .primary-button:hover {
  border-color: rgba(200, 155, 48, 0.48);
  background: #c89b30;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(200, 155, 48, 0.18);
}

@media (min-width: 1180px) {
  body.highkey-gallery .product-card[data-sku="WFBIKE3"],
  body.highkey-gallery .product-card[data-sku="WFBKTR123"],
  body.highkey-gallery .product-card[data-sku="WFBKTR122"],
  body.highkey-gallery .product-card[data-sku="WFBKTR4"],
  body.highkey-gallery .product-card[data-sku="WFBKTR125"],
  body.highkey-gallery .product-card[data-sku="WFCC9"],
  body.highkey-gallery .product-card[data-sku="WFCC6"],
  body.highkey-gallery .product-card[data-sku="WFCC7"],
  body.highkey-gallery .product-card[data-sku="WFPRX2S55"],
  body.highkey-gallery .product-card[data-sku="WFPRX2L55"] {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body.highkey-gallery .toolbar,
  body.highkey-gallery .featured,
  body.highkey-gallery .product-grid {
    width: min(calc(100% - 32px), 100%);
  }

  body.highkey-gallery .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.highkey-gallery .product-card,
  body.highkey-gallery .product-card:nth-child(1),
  body.highkey-gallery .product-card[data-sku] {
    grid-column: 1 / -1;
    padding: 24px;
  }

  body.highkey-gallery .product-media,
  body.highkey-gallery .product-card:nth-child(1) .product-media,
  body.highkey-gallery .product-card[data-sku] .product-media {
    height: 210px;
  }
}

/* AERO-GALLERY-HERO 2026: luminous local Three.js showroom. */
body.highkey-gallery .hero {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 100svh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #090a0f;
  overflow: hidden;
}

body.highkey-gallery .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

body.highkey-gallery .hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

body.highkey-gallery .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    linear-gradient(to right, rgba(5, 6, 9, 0.78) 0%, rgba(5, 6, 9, 0.38) 36%, rgba(5, 6, 9, 0.06) 64%, transparent 100%),
    linear-gradient(to top, #fbfbfa 0%, rgba(251, 251, 250, 0.55) 8%, rgba(251, 251, 250, 0) 25%);
}

body.highkey-gallery .wind-tunnel-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  pointer-events: none;
  mix-blend-mode: screen;
}

body.highkey-gallery .hero-head {
  position: absolute;
  top: clamp(24px, 4vw, 44px);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 4;
}

body.highkey-gallery .hero-head-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition:
    background 0.3s var(--spring),
    border-color 0.3s var(--spring),
    transform 0.3s var(--spring);
}

body.highkey-gallery .hero-head-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

body.highkey-gallery .hero-head-link .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: badgePulse 2s infinite;
}

body.highkey-gallery .hero-head-link .badge-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.highkey-gallery .home-hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6.6vw, 126px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: 100%;
}

body.highkey-gallery .hero-copy {
  grid-column: 1 / span 2;
  width: auto;
  max-width: none;
  padding: 0;
  text-align: left;
}

body.highkey-gallery .hero-copy .overline {
  display: inline-block;
  color: var(--gold);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

body.highkey-gallery h1.hero-title {
  color: #ffffff;
  font-size: clamp(48px, 6.2vw, 102px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-variation-settings: "wdth" var(--wind-wdth), "wght" 800, "opsz" 72;
  transition: font-variation-settings 360ms cubic-bezier(0.16, 1, 0.3, 1);
  text-wrap: balance;
}

body.highkey-gallery h1.hero-title span {
  display: block;
}

body.highkey-gallery .hero-copy .hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.58;
  max-width: 480px;
  margin-bottom: 40px;
}

body.highkey-gallery .hero-category-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 580px;
}

body.highkey-gallery .hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition:
    background 0.25s var(--spring),
    border-color 0.25s var(--spring),
    color 0.25s var(--spring),
    transform 0.25s var(--spring);
  cursor: pointer;
}

body.highkey-gallery .hero-pill:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #090a0f;
  transform: translateY(-2px);
}

body.highkey-gallery .hero-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #090a0f;
  box-shadow: 0 8px 24px rgba(200, 155, 48, 0.25);
}

body.highkey-gallery .hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--spring);
}

body.highkey-gallery .hero-scroll-indicator:hover {
  color: #ffffff;
}

body.highkey-gallery .scroll-arrow {
  width: 28px;
  height: 28px;
  animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes badgePulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 960px) {
  body.highkey-gallery .hero {
    height: 100svh;
    min-height: 620px;
    padding: 0;
  }

  body.highkey-gallery .home-hero-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    align-items: center;
  }

  body.highkey-gallery .hero-copy {
    grid-column: 1;
    width: 100%;
    padding-top: 80px;
    text-align: center;
  }

  body.highkey-gallery .hero-copy .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  body.highkey-gallery .hero-category-wrapper {
    justify-content: center;
  }

  body.highkey-gallery .hero-overlay {
    background: 
      linear-gradient(to top, #fbfbfa 0%, rgba(251, 251, 250, 0.85) 12%, rgba(9, 10, 15, 0.42) 42%, rgba(9, 10, 15, 0.84) 100%),
      linear-gradient(to right, rgba(5, 6, 9, 0.68), rgba(5, 6, 9, 0.18));
  }

  body.highkey-gallery .hero-photo img {
    object-position: 62% 50%;
  }

  body.highkey-gallery .wind-tunnel-canvas {
    opacity: 0.2;
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  }

  body.highkey-gallery h1.hero-title {
    font-size: clamp(40px, 9vw, 64px);
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) {
  body.highkey-gallery .hero-copy {
    padding-top: 60px;
  }

  body.highkey-gallery h1.hero-title {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 16px;
  }

  body.highkey-gallery .hero-copy .hero-lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  body.highkey-gallery .hero-pill {
    height: 38px;
    padding: 0 16px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
