/** Shopify CDN: Minification failed

Line 7026:19 The "+" operator only works if there is whitespace on both sides

**/
/* PL Decals — Main Stylesheet */

/* NAV + MEGA MENU */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--red);
  z-index: 999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(223, 4, 46, 0.6);
}
/* ══ ANNOUNCE ════════════════════════════════ */
.announce {
  background: #0a0a0a;
  border-bottom: 1px solid var(--b);
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}
.at {
  display: flex;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
.at:hover {
  animation-play-state: paused;
}
.ai {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.ai span.dot {
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.7;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ══ NAVBAR ══════════════════════════════════ */
.nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 150;
  height: 72px; /* +20% from 60px */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  transition:
    background 0.4s,
    top 0.35s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(28px);
  border-bottom-color: var(--b);
  top: 0;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-ph {
  width: 130px;
  height: 42px;
  border: 1px dashed #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FU);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3a3a3a;
  transition: border-color 0.2s;
}
.logo-ph:hover {
  border-color: #444;
}
/* Center menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.nmi {
  position: static;
  display: flex;
  align-items: center;
}
.nmi > a {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 72px;
  padding: 0 18px;
  font-family: var(--FU);
  font-size: 17px; /* +20% from 14px */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
}
.nmi > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nmi > a:hover,
.nmi.active > a {
  color: #fff;
}
.nmi > a:hover::after,
.nmi.active > a::after {
  transform: scaleX(1);
}
.nav-arr {
  display: flex;
  align-items: center;
  transition: transform 0.25s;
}
.nav-arr svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  opacity: 0.6;
}
.nmi.active .nav-arr {
  transform: rotate(180deg);
}
/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.nav-ib {
  background: none;
  border: none;
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px 10px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-ib:hover {
  color: #fff;
}
.nav-ib svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  margin-left: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}
/* ══ MEGA MENU ═══════════════════════════════ */
.mega-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  pointer-events: none;
}
.mega {
  position: absolute;
  top: 104px;
  left: 0;
  right: 0;
  background: #0b0b0b;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.mega.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 36px;
  display: flex;
  gap: 48px;
}
.mega-feat {
  flex-shrink: 0;
  width: 260px;
}
.mega-feat a {
  display: block;
  position: relative;
  overflow: hidden;
}
.mega-feat-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  position: relative;
}
.mega-feat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition:
    transform 0.5s,
    filter 0.4s;
}
.mega-feat a:hover .mega-feat-img img {
  transform: scale(1.04);
  filter: brightness(0.72);
}
.mega-feat-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
}
.mega-feat-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px;
  font-family: var(--FD);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mf-ph-i {
  font-size: 26px;
  opacity: 0.07;
}
.mf-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #222;
}
.mega-sec {
  flex: 1;
}
.mega-sec-hd {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--b);
}
.mega-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-links-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mlink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.mlink::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s;
}
.mlink:hover {
  background: var(--bg3);
  border-color: var(--b);
}
.mlink:hover::before {
  transform: scaleY(1);
}
.ml-img {
  width: 52px;
  height: 38px;
  background: var(--bg3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.3;
}
.ml-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ml-sub {
  font-family: var(--FU);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.ml-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.mlink:hover .ml-title {
  color: #fff;
}
.mega-simple {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ms-link {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 0;
  border-bottom: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    color 0.2s,
    padding-left 0.25s;
}
.ms-link:hover {
  color: #fff;
  padding-left: 8px;
}
/* ══ MOBILE MENU ═════════════════════════════ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
}
.mob-menu.open {
  transform: translateX(0);
}
.mob-top {
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--b);
  flex-shrink: 0;
}
.mob-lph {
  width: 110px;
  height: 36px;
  border: 1px dashed #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a3a3a;
}
.mob-close {
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mob-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 5%;
}
.mob-it {
  border-bottom: 1px solid var(--b);
}
.mob-it > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--FD);
  font-size: clamp(28px, 5.5vw, 42px);
  padding: 14px 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.mob-it > button span {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.25s;
}
.mob-it.open > button span {
  transform: rotate(180deg);
}
.mob-sub {
  display: none;
  padding: 6px 0 14px;
}
.mob-it.open .mob-sub {
  display: block;
}
.mob-sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--b);
  font-family: var(--FU);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.mob-sub a:hover {
  color: #fff;
}
.mob-sub-img {
  width: 40px;
  height: 28px;
  background: var(--bg3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  opacity: 0.35;
}
/* ══ HERO ════════════════════════════════════ */

/* HOMEPAGE */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.vid-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed #181818;
  pointer-events: none;
}
.vid-ph-i {
  font-size: 32px;
  opacity: 0.08;
}
.vid-ph-t {
  font-family: var(--FU);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #252525;
}
/* vignette + gradient */
.hero-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(223, 4, 46, 0.06) 0%, transparent 55%),
    linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.3) 0%,
      rgba(8, 8, 8, 0.05) 30%,
      rgba(8, 8, 8, 0.6) 72%,
      rgba(8, 8, 8, 0.98) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}
/* animated eyebrow */
.hero-ey {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  clip-path: inset(0 100% 0 0);
  animation: reveal-right 0.8s 0.2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.hero-ey::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
/* headline with word-split animation */
.hero-h1 {
  font-family: var(--FD);
  font-size: clamp(72px, 11vw, 156px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 48px;
  overflow: hidden;
}
.hero-h1 .word {
  display: block;
  overflow: hidden;
}
.hero-h1 .word-inner {
  display: block;
  transform: translateY(110%);
  animation: word-up 0.8s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.hero-h1 .w1 .word-inner {
  animation-delay: 0.3s;
}
.hero-h1 .w2 .word-inner {
  animation-delay: 0.48s;
}
.hero-h1 .strk {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.22);
  color: transparent;
}
@keyframes word-up {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes reveal-right {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
/* hero buttons */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s 0.8s forwards;
}
/* ══ BUTTON SYSTEM ════════════════════════════ */
.btn {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 40px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s;
}
/* Magnetic push effect */
.btn:active {
  transform: scale(0.97) !important;
}
/* White */
.btn-w {
  background: #fff;
  color: #000;
}
.btn-w .btn-arr {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-w:hover {
  transform: translateY(-3px);
}
.btn-w:hover .btn-arr {
  transform: translateX(5px);
}
/* Red */
.btn-r {
  background: var(--red);
  color: #fff;
}
.btn-r::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  animation: sheen 3.5s 1.5s ease infinite;
}
.btn-r:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(223, 4, 46, 0.45);
}
.btn-r .btn-arr {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-r:hover .btn-arr {
  transform: translateX(5px);
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
/* Dark (on red/white bg) */
.btn-d {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-d:hover {
  transform: translateY(-3px);
  background: #111;
}
.btn-d .btn-arr {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-d:hover .btn-arr {
  transform: translateX(5px);
}
/* Outline */
.btn-o {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-o:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.65);
}
/* Ghost link */
.btn-ghost {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.2s,
    gap 0.25s;
  padding: 0;
}
.btn-ghost:hover {
  color: #fff;
  gap: 14px;
}
/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-in 1s 1.4s forwards;
}
.cue-ln {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(223, 4, 46, 0.7) 0%, transparent 100%);
  animation: cue-pulse 1.8s ease-in-out infinite;
}
.cue-tx {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes cue-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ══ SECTIONS COMMON ═════════════════════════ */
section {
  padding: 100px 0;
}
.container {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}
.s-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-lbl::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--red);
}
.s-ttl {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.9;
  text-transform: uppercase;
}
.s-ttl .strk {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
}
/* ══ MAIN CATS ═══════════════════════════════ */
.main-cats {
  background: var(--bg);
  padding: 0;
  border-top: 1px solid var(--b);
}
.mc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mcat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px;
  min-height: 600px;
  border-right: 1px solid var(--b);
  cursor: pointer;
}
.mcat:last-child {
  border-right: none;
}
/* image */
.mcat-img {
  position: absolute;
  inset: 0;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mcat:hover .mcat-img {
  transform: scale(1.05);
}
.mcat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transition: filter 0.5s;
}
.mcat:hover .mcat-img img {
  filter: brightness(0.62);
}
.ph-i {
  font-size: 28px;
  opacity: 0.06;
}
.ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1e1e1e;
}
/* gradient overlay */
.mcat-grd {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.14) 55%, transparent 100%);
}
/* red side accent line */
.mcat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.mcat:hover::before {
  transform: scaleY(1);
}
.mcat:last-child::before {
  left: auto;
  right: 0;
}
.mcat-body {
  position: relative;
  z-index: 2;
}
.mcat-badge {
  display: inline-block;
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--bm);
  padding: 5px 11px;
  margin-bottom: 14px;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.mcat:hover .mcat-badge {
  border-color: var(--red);
  color: rgba(255, 255, 255, 0.7);
}
.mcat-nm {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 14px;
  transition: letter-spacing 0.4s;
}
.mcat:hover .mcat-nm {
  letter-spacing: 0.01em;
}
.mcat-dc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 28px;
  transition: color 0.3s;
}
.mcat:hover .mcat-dc {
  color: rgba(255, 255, 255, 0.55);
}
/* ══ SEC CATS ════════════════════════════════ */
.sec-cats {
  background: var(--bg2);
  padding: 0;
  border-top: 1px solid var(--b);
}
.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.scat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  min-height: 360px;
  border-right: 1px solid var(--b);
  cursor: pointer;
}
.scat:last-child {
  border-right: none;
}
.scat-img {
  position: absolute;
  inset: 0;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scat:hover .scat-img {
  transform: scale(1.05);
}
.scat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
  transition: filter 0.4s;
}
.scat:hover .scat-img img {
  filter: brightness(0.6);
}
.scat-grd {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}
.scat-body {
  position: relative;
  z-index: 2;
}
.scat-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.scat-nm {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 42px);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 14px;
}
.btn-scat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.25s,
    gap 0.25s,
    background 0.25s,
    color 0.25s;
}
.scat:hover .btn-scat {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.1);
  color: #fff;
  gap: 14px;
}
/* ══ TOP PICKS ═══════════════════════════════ */
.top-picks {
  background: var(--bg);
}
.picks-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.pick {
  background: var(--card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pick:hover {
  background: var(--bg3);
  transform: translateY(-4px);
}
.pick-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--b);
}
.pick-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.pick:hover .pick-img img {
  transform: scale(1.06);
}
.pick-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pick-model {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.pick-nm {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}
.pick-price {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 30px;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--b);
}
.pick-price small {
  font-family: var(--FU);
  font-size: 12px;
  color: var(--muted);
  margin-left: 5px;
}
/* Pick CTA — animated */
.pick-cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pick-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.pick:hover .pick-cta {
  transform: none; /* card already moves */
  box-shadow: 0 0 0 1px var(--red);
}
.pick:hover .pick-cta::before {
  left: 130%;
}
/* ══ BRANDS ══════════════════════════════════ */
.brands {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 40px 0;
  overflow: hidden;
}
.brands-lbl {
  text-align: center;
  font-family: var(--FU);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}
.brands-row {
  overflow: hidden;
}
.bt {
  display: flex;
  gap: 60px;
  animation: mq 22s linear infinite;
  white-space: nowrap;
}
.bt:hover {
  animation-play-state: paused;
}
.bn {
  font-family: var(--FD);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #252525;
  flex-shrink: 0;
  transition: color 0.3s;
}
.bn:hover {
  color: rgba(255, 255, 255, 0.35);
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ══ FEATURES ════════════════════════════════ */
.features {
  background: var(--bg2);
  border-top: 1px solid var(--b);
}
.feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  margin-top: 52px;
}
.feat {
  background: var(--bg2);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
/* animated red bottom bar */
.feat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.feat:hover {
  background: var(--bg3);
}
.feat:hover::after {
  transform: scaleX(1);
}
/* red number on hover */
.feat-n {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 44px;
  color: var(--dim);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.feat:hover .feat-n {
  color: var(--red);
}
.feat-t {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feat-d {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
/* ══ CTA STRIP ═══════════════════════════════ */
.cta-strip {
  background: var(--red);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
/* animated diagonal lines in bg */
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.06) 40px,
    rgba(0, 0, 0, 0.06) 41px
  );
}
.cta-in {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-ey {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.cta-ttl {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
}
/* ══ REVIEWS ═════════════════════════════════ */
.reviews {
  background: var(--bg);
  border-top: 1px solid var(--b);
}
.rev-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.rev-stars {
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 4px;
  color: #fff;
}
.rev-avg {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
}
.rev-cnt {
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.rev-card {
  background: var(--card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}
.rev-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.rev-card:hover {
  background: var(--bg3);
  transform: translateY(-3px);
}
.rev-card:hover::before {
  transform: scaleX(1);
}
.rev-s {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: #fff;
}
.rev-t {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}
.rev-a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-av {
  width: 32px;
  height: 32px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.rev-nm {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rev-lc {
  font-size: 12px;
  color: var(--muted);
}
/* ══ INSTAGRAM ═══════════════════════════════ */
.ig-sec {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--b);
}
.ig-lbl {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ig-lbl a {
  color: #fff;
  transition: color 0.2s;
}
.ig-lbl a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.ig-cell {
  aspect-ratio: 1;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--b);
  transition: border-color 0.3s;
}
.ig-cell:hover {
  border-color: var(--red);
}
.ig-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition:
    transform 0.5s,
    filter 0.3s;
}
.ig-cell:hover img {
  transform: scale(1.07);
  filter: brightness(0.8);
}
.ig-ov {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--FU);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ig-cell:hover .ig-ov {
  opacity: 1;
}
.ig-ph-i {
  font-size: 20px;
  opacity: 0.07;
}
.ig-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e1e1e;
}
/* ══ FOOTER ══════════════════════════════════ */

/* PRODUCT SHARED */
.product-page {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  border-top: 1px solid var(--b);
}
/* ── LEFT: GALLERY — sticky ── */
.gallery-col {
  position: sticky;
  top: calc(72px); /* sticks below nav */
  height: calc(100vh - 72px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 32px 0px 32px 0;
  border-right: 1px solid var(--b);
  /* hide scrollbar */
  scrollbar-width: none;
}
.gallery-col::-webkit-scrollbar {
  display: none;
}
/* thumbnail rail — vertical, left side of main image */
.gallery-inner {
  display: flex;
  gap: 10px;
  flex: 1;
}
.thumb-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  width: 64px;
}
.thumb {
  width: 64px;
  height: 64px;
  background: var(--bg3);
  border: 1px solid var(--b);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0.35;
  transition:
    border-color 0.2s,
    opacity 0.2s;
  flex-shrink: 0;
}
.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb.active {
  border-color: var(--red);
  opacity: 1;
}
.thumb:hover:not(.active) {
  border-color: var(--bm);
  opacity: 0.7;
}
/* main image */
.gallery-main-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--b);
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-main:hover img {
  transform: scale(1.05);
}
.gm-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  inset: 0;
}
.gm-ph-i {
  font-size: 38px;
  opacity: 0.06;
}
.gm-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1e1e1e;
}
.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
}
/* zoom hint */
.zoom-hint {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-top: 6px;
}
/* ── RIGHT: INFO COLUMN ── */
.info-col {
  padding: 32px 0 80px 40px;
  min-width: 0;
}
/* ── META ── */
.p-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.p-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-tag::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.p-rev {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--FU);
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.p-rev:hover {
  color: #fff;
}
.stars {
  color: #fff;
  letter-spacing: 2px;
  font-size: 12px;
}
/* ── TITLE ── */
.p-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
/* ── PRICE ── */
.p-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--b);
}
.price-main {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
}
.price-cur {
  font-family: var(--FU);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.price-note {
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
/* ══ FORM SECTIONS ══ */
.form-section {
  margin-bottom: 24px;
}
.fs-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-label .chosen {
  color: #fff;
  font-weight: 700;
}
/* Select dropdown */
.fs-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 42px 14px 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.fs-select:focus {
  outline: none;
  border-color: var(--red);
}
.fs-select:hover {
  border-color: var(--bm);
}
/* ── UPGRADES & FINISHES SECTION ── */
.upgrades-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.upgrades-head:hover {
  color: #fff;
}
.upgrades-head-icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
/* Material / Finish option cards */
.option-group {
  margin-bottom: 20px;
}
.option-group-label {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.option-group-label span {
  color: #fff;
}
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.opt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--b);
  background: var(--bg3);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
}
.opt-card.selected {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.06);
}
.opt-card:hover:not(.selected) {
  border-color: var(--bm);
  background: var(--bg2);
}
/* radio indicator */
.opt-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--bm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.opt-card.selected .opt-radio {
  border-color: var(--red);
}
.opt-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.opt-card.selected .opt-radio-dot {
  opacity: 1;
}
/* swatch preview */
.opt-swatch {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--b);
  overflow: hidden;
}
.opt-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opt-swatch-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.3;
}
.opt-info {
  flex: 1;
  min-width: 0;
}
.opt-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2px;
}
.opt-sub {
  display: none;
  font-size: 12px;
  color: var(--muted);
}
.opt-price {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
}
.opt-card.selected .opt-price {
  color: var(--red);
}
.opt-price.free {
  color: rgba(255, 255, 255, 0.4);
}
/* ── UPLOAD ── */
.upload-box {
  border: 1px dashed var(--bm);
  background: var(--bg3);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
  overflow: hidden;
}
.upload-box:hover {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.04);
}
.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon {
  font-size: 28px;
  opacity: 0.25;
  margin-bottom: 10px;
}
.upload-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.upload-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.upload-preview {
  display: none;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.upload-preview.visible {
  display: flex;
}
.upload-thumb {
  width: 48px;
  height: 48px;
  background: var(--bg3);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-file-name {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  word-break: break-all;
}
.upload-file-size {
  font-size: 11px;
  color: var(--muted);
}
.upload-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s;
  margin-left: auto;
  flex-shrink: 0;
}
.upload-remove:hover {
  color: #fff;
}
/* ── PRODUCT ADD-ONS ── */
.addons-head {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.addons-head::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.addon-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--b);
  background: var(--bg3);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.addon-card.selected {
  border-color: rgba(223, 4, 46, 0.5);
  background: rgba(223, 4, 46, 0.05);
}
.addon-card:hover:not(.selected) {
  border-color: var(--bm);
  background: var(--bg2);
}
/* checkbox */
.addon-cb {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--bm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--red);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.addon-card.selected .addon-cb {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.12);
}
.addon-img {
  width: 52px;
  height: 40px;
  background: var(--bg2);
  border: 1px solid var(--b);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.3;
}
.addon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.addon-info {
  flex: 1;
  min-width: 0;
}
.addon-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.addon-card.selected .addon-name {
  color: #fff;
}
.addon-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.addon-price {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.addon-card.selected .addon-price {
  color: var(--red);
}
/* ── ORDER NOTES ── */
.notes-area,
.fs-textarea {
  width: 100%;
  min-height: 90px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color 0.2s;
  line-height: 1.6;
}
.notes-area::placeholder,
.fs-textarea::placeholder {
  color: var(--muted);
}
.notes-area:focus,
.fs-textarea:focus {
  outline: none;
  border-color: var(--red);
}
/* ── ORDER TOTAL ── */
.order-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  margin-bottom: 14px;
}
.ot-label {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ot-value {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 36px;
}
/* ── ADD TO CART ── */
.btn-atc {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-atc::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  animation: sheen 3.5s 1s ease infinite;
}
.btn-atc:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(223, 4, 46, 0.45);
}
.btn-atc:active {
  transform: scale(0.98);
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
.btn-atc svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-atc:hover svg {
  transform: translateX(4px);
}
/* ── TRUST ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  margin-top: 10px;
  margin-bottom: 28px;
}
.ti {
  background: var(--bg3);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.ti-icon {
  font-size: 16px;
}
.ti-text {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
/* ══ ACCORDION SECTIONS (below ATC) ══ */
.acc-list {
  border-top: 1px solid var(--b);
  margin-top: 28px;
}
.acc-item {
  border-bottom: 1px solid var(--b);
}
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.acc-btn:hover {
  color: #fff;
}
.acc-arr {
  font-size: 20px;
  color: var(--muted);
  transition:
    transform 0.3s,
    color 0.3s;
  line-height: 1;
  flex-shrink: 0;
}
.acc-item.open .acc-arr {
  transform: rotate(45deg);
  color: var(--red);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.77, 0, 0.18, 1),
    padding 0.35s;
}
.acc-item.open .acc-body {
  max-height: 800px;
  padding-bottom: 24px;
}
.acc-content {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.acc-content strong {
  color: #fff;
  font-weight: 600;
}
/* Order process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--b);
  transition: padding-left 0.25s;
}
.ps:last-child {
  border-bottom: none;
}
.ps:hover {
  padding-left: 6px;
}
.ps-num {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 36px;
  color: var(--dim);
  min-width: 44px;
  line-height: 1;
  transition: color 0.3s;
  flex-shrink: 0;
}
.ps:hover .ps-num {
  color: var(--red);
}
.ps-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ps-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
/* Material guide */
.mat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--b);
}
.mat-item {
  background: var(--bg3);
  padding: 16px;
}
.mat-swatch-row {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.mat-dot {
  width: 20px;
  height: 20px;
  border: 1px solid var(--b);
}
.mat-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.mat-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.mat-badge {
  display: inline-block;
  font-family: var(--FU);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  background: rgba(223, 4, 46, 0.12);
  border: 1px solid rgba(223, 4, 46, 0.25);
  color: var(--red);
  margin-bottom: 6px;
}
/* Shipping grid */
.ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--b);
}
.ship-item {
  background: var(--bg3);
  padding: 16px;
}
.ship-flag {
  font-size: 20px;
  margin-bottom: 8px;
}
.ship-region {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ship-time {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 3px;
}
.ship-note {
  font-size: 12px;
  color: var(--muted);
}
/* ══ RELATED ══ */
.related {
  padding: 80px 0;
  border-top: 1px solid var(--b);
}
.rel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.s-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-lbl::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.s-ttl {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 0.9;
  text-transform: uppercase;
}
.btn-ghost {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.2s,
    gap 0.2s;
  padding: 0;
}
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.rel-card {
  background: var(--card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rel-card:hover {
  background: var(--bg3);
  transform: translateY(-4px);
}
.rel-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--b);
}
.rel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.rel-card:hover .rel-img img {
  transform: scale(1.06);
}
.rel-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rel-model {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.rel-nm {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.rel-price {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 26px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--b);
}
.rel-cta {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  transition: box-shadow 0.2s;
}
.rel-card:hover .rel-cta {
  box-shadow: 0 0 0 1px var(--red);
}
/* ph */
.ph-i {
  font-size: 26px;
  opacity: 0.06;
}
/* ── INFO STRIP ── */
.info-strip {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 56px 0;
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.info-strip-cell {
  background: var(--bg2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background 0.3s;
}
.info-strip-cell:hover {
  background: var(--bg3);
}
.isc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
}
/* red underline accent on icon */
.isc-icon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition:
    opacity 0.3s,
    width 0.3s;
}
.info-strip-cell:hover .isc-icon::after {
  opacity: 1;
  width: 32px;
}
.isc-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.isc-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.isc-line {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.isc-line.strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.isc-line a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.isc-line a:hover {
  color: #fff;
}
@media (max-width: 700px) {
  .info-strip-grid {
    grid-template-columns: 1fr;
  }
}
/* ── FOOTER ── */

/* FULL CUSTOM */

/* ── GALLERY (sticky left) ── */
.gallery-col {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 32px 0px 32px 0;
  border-right: 1px solid var(--b);
  scrollbar-width: none;
}
.gallery-inner {
  display: flex;
  gap: 10px;
  flex: 1;
}
.gallery-main-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
/* gallery-main deduplicated */
.zoom-hint {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-top: 6px;
}
/* ── INFO COL ── */
.info-col {
  padding: 32px 0 80px 40px;
  min-width: 0;
}
.p-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
/* ── TITLE ── */
.p-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.p-subtitle {
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
/* ── PRICE ROW ── */
.p-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--b);
  flex-wrap: wrap;
}
.price-left {
}
.price-deposit-label {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.price-cur {
  font-family: var(--FU);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.price-final-note {
  background: var(--bg3);
  border: 1px solid var(--b);
  padding: 10px 14px;
  text-align: right;
}
.pfn-label {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.pfn-range {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.pfn-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
/* ══ SECTION HEADS ══ */
.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 0 14px;
  border-top: 1px solid var(--b);
  margin-top: 8px;
  margin-bottom: 16px;
}
.section-head-icon {
  width: 22px;
  height: 22px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.section-head-icon.outline {
  background: transparent;
  border: 1px solid var(--bm);
  color: var(--muted);
}
/* ══ FORM ELEMENTS ══ */
.form-section {
  margin-bottom: 20px;
}
.fs-label .optional {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.fs-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 42px 14px 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.fs-textarea {
  width: 100%;
  min-height: 88px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color 0.2s;
  line-height: 1.65;
}
.fs-textarea::placeholder {
  color: var(--muted);
}
.fs-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.fs-textarea.tall {
  min-height: 108px;
}
.fs-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.fs-input::placeholder {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: var(--FB);
}
.fs-input:focus {
  outline: none;
  border-color: var(--red);
}
/* char counter */
.char-counter {
  font-family: var(--FU);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-align: right;
  margin-top: 5px;
  transition: color 0.2s;
}
.char-counter.warn {
  color: var(--red);
}
/* ══ MATERIAL / FINISH OPTION CARDS ══ */
.option-group {
  margin-bottom: 20px;
}
.opt-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--bm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.opt-swatch {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--b);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opt-sub {
  font-size: 12px;
  color: var(--muted);
}
.opt-price.free {
  color: rgba(255, 255, 255, 0.3);
}
/* ══ UPLOAD ══ */
.upload-box {
  border: 1px dashed var(--bm);
  background: var(--bg3);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
  overflow: hidden;
}
.upload-icon {
  font-size: 26px;
  opacity: 0.22;
  margin-bottom: 10px;
}
.upload-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.upload-thumb {
  width: 46px;
  height: 46px;
  background: var(--bg3);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}
.upload-file-name {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  word-break: break-all;
}
/* ══ ADDONS ══ */
.addons-head {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.addon-cb {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--bm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--red);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.addon-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
/* ══ PRICE SUMMARY BOX ══ */
.price-summary {
  background: var(--bg3);
  border: 1px solid var(--b);
  border-left: 3px solid var(--red);
  padding: 18px;
  margin-bottom: 14px;
}
.ps-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.ps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.ps-row-label {
  color: var(--muted);
  font-family: var(--FU);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ps-row-val {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.ps-row-val.red {
  color: var(--red);
}
.ps-row.total {
  padding-top: 10px;
  border-top: 1px solid var(--b);
}
.ps-row.total .ps-row-label {
  color: #fff;
  font-size: 13px;
}
.ps-row.total .ps-row-val {
  font-family: var(--FD);
  font-size: 28px;
  font-weight: 900;
}
.ps-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.ps-note strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
/* ══ ATC BUTTON ══ */
.btn-atc {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
/* Trust */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  margin-top: 10px;
  margin-bottom: 28px;
}
/* ══ PRICING TABLE (below ATC) ══ */
.pricing-table {
  background: var(--bg3);
  border: 1px solid var(--b);
  margin-top: 20px;
  margin-bottom: 28px;
  overflow: hidden;
}
.pt-head {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 16px;
  background: var(--dim);
  border-bottom: 1px solid var(--b);
}
.pt-section-title {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px 4px;
}
.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--b);
  transition: background 0.2s;
}
.pt-row:last-child {
  border-bottom: none;
}
.pt-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.pt-label {
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.pt-val {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
}
.pt-val.free {
  color: rgba(255, 255, 255, 0.3);
}
.pt-val.plus {
  color: #fff;
}
.pt-val.total-val {
  font-family: var(--FD);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.pt-row.highlight {
  background: rgba(223, 4, 46, 0.06);
  border-left: 2px solid var(--red);
}
.pt-row.highlight .pt-label {
  color: #fff;
}
.pt-row.highlight .pt-val {
  color: var(--red);
}
/* ══ ACCORDION ══ */
.acc-list {
  border-top: 1px solid var(--b);
  margin-top: 28px;
}
.acc-item.open .acc-body {
  max-height: 1000px;
  padding-bottom: 24px;
}
/* process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #fff;
}
/* material guide */
.mat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--b);
}
.mat-badge.premium {
  color: #d4a843;
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.25);
}
.mat-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #fff;
}
.mat-price {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
}
.mat-price.free {
  color: rgba(255, 255, 255, 0.3);
}
.mat-price.plus {
  color: #fff;
}
/* shipping */
.ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--b);
}
.ship-region {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
}
/* ══ INFO STRIP ══ */
.info-strip {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 52px 0;
}
.isc {
  background: var(--bg2);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: background 0.3s;
}
.isc:hover {
  background: var(--bg3);
}
.isc-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
}
.isc-icon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition:
    opacity 0.3s,
    width 0.3s;
}
.isc:hover .isc-icon::after {
  opacity: 1;
  width: 30px;
}
.isc-line a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
/* ══ FOOTER ══ */
.footer {
  background: #040404;
  border-top: 1px solid var(--b);
  padding: 60px 0 36px;
}
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 50px;
}
.f-lph {
  width: 120px;
  height: 34px;
  border: 1px dashed #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}
.f-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: 22px;
}
.f-soc {
  display: flex;
  gap: 8px;
}
.f-s {
  width: 34px;
  height: 34px;
  background: var(--bg3);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.f-s:hover {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.08);
}
.f-hd {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 11px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--b);
}
.f-lnks {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f-lnks a {
  font-size: 13px;
  color: var(--muted);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.f-lnks a:hover {
  color: rgba(255, 255, 255, 0.65);
  padding-left: 4px;
}
.f-bot {
  border-top: 1px solid var(--b);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.f-copy {
  font-size: 12px;
  color: var(--dim);
}
.f-leg {
  display: flex;
  gap: 20px;
}
.f-leg a {
  font-size: 11px;
  color: var(--dim);
  transition: color 0.2s;
}
.f-leg a:hover {
  color: var(--muted);
}
/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.rd1 {
  transition-delay: 0.12s;
}
/* ── RESPONSIVE ── */
/* ══ PRODUCT PAGE MOBILE ══ */
@media (max-width: 960px) {
  .product-page {
    grid-template-columns: 1fr;
    border-top: none;
  }
  /* Gallery stacks on top — disable sticky completely */
  .gallery-col {
    position: static !important;
    height: auto !important;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--b);
    overflow: visible;
    z-index: 1;
  }
  /* Remove top padding on breadcrumb for mobile */
  .breadcrumb {
    padding-top: calc(32px + 56px) !important;
  }
  /* Related products: 1 column on small screens */
  .rel-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .gallery-inner {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
  .thumb-rail {
    order: 2;
    flex-direction: row;
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  .gallery-main {
    order: 1;
    width: 100%;
    aspect-ratio: 4/3;
  }
  .g-main {
    width: 100%;
    aspect-ratio: 4/3;
  }
  /* Info col padding */
  .info-col {
    padding: 24px 0 60px;
  }
  /* Opt cards wrap */
  .option-cards {
    flex-wrap: wrap;
  }
  .opt-card {
    min-width: calc(50% - 4px);
  }
  /* Trust row */
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Related */
  .rel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  /* Footer */
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  /* Info strip */
  .info-strip-grid {
    grid-template-columns: 1fr;
  }
  /* Breadcrumb */
  .bc {
    font-size: 9px;
  }
  /* Page body */
  .page-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 60px;
  }
  .info-nav {
    position: static;
  }
  .info-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .info-nav-links a {
    padding: 6px 10px;
    font-size: 10px;
    border: 1px solid var(--b);
  }
  /* ══ CART BASE ══ */
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    border-left: none;
    border-top: 1px solid var(--b);
    padding: 24px 0;
  }

  /* ══ MOBILE CART ADAPTATION (FULL-WIDTH IMAGE & GRID) ══ */
  /* ══ MOBILE CART ADAPTATION (FULL-WIDTH IMAGE & QTY) ══ */
  @media (max-width: 768px) {
    /* Основний контейнер кошика */
    .cart-layout {
      display: flex !important;
      flex-direction: column;
      gap: 32px;
    }

    .cart-left,
    .cart-summary {
      width: 100%;
      border-left: none;
    }

    .cart-summary {
      border-top: 3px solid var(--red);
      padding: 24px 0 0 0;
    }

    /* Ховаємо заголовки таблиці */
    .cart-cols {
      display: none !important;
    }

    /* Картка товару: переводимо у Flex, щоб керувати порядком */
    .cart-item {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px;
      padding: 24px 0;
      border-bottom: 1px solid var(--b);
      position: relative;
    }

    /* 1. Фото та інфо (йдуть першими) */
    .ci-product {
      order: 1; /* Порядок 1 */
      display: flex !important;
      flex-direction: column !important;
      align-items: center;
      text-align: center;
      gap: 16px;
      width: 100%;
    }

    /* Фото на всю ширину */
    .ci-img {
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 4 / 3;
      border-radius: 8px;
      margin: 0;
      background: var(--bg3);
      border: 1px solid var(--b);
    }

    .ci-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Інфо-блок по центру */
    .ci-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .ci-name {
      font-size: 20px;
      margin-bottom: 4px;
    }

    /* 2. Загальна ціна (переносимо НАД кількістю) */
    .ci-total {
      order: 2; /* Порядок 2 */
      display: flex !important;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      color: #fff;
      padding: 8px 0;
    }

    /* 3. Блок кількості (йде останнім і на всю ширину) */
    .ci-qty {
      order: 3; /* Порядок 3 */
      width: 100% !important;
      border: none;
      display: block;
    }

    .qty-ctrl {
      display: grid !important;
      grid-template-columns: 1fr 1fr 1fr; /* Три рівні колонки на всю ширину */
      width: 100%;
      height: 52px; /* Висока і зручна для пальця кнопка */
      border: 1px solid var(--bm);
      background: var(--bg3);
      border-radius: 4px;
      overflow: hidden;
    }

    /* Кнопки + та - */
    .qty-ctrl .qty-btn {
      width: 100%;
      height: 100%;
      font-size: 24px;
      background: var(--bg2);
    }

    /* Цифра кількості */
    .qty-ctrl .qty-num {
      width: 100%;
      height: 100%;
      font-size: 20px;
      border-left: 1px solid var(--bm);
      border-right: 1px solid var(--bm);
    }

    /* 4. Кнопка видалення (смітник) - робимо супер видимою */
    .ci-remove {
      position: absolute !important;
      top: 12px;
      right: 12px;
      background: var(--red) !important; /* Яскраво-червоний фон */
      color: #fff !important; /* Біла іконка */
      border-radius: 50%;
      border: 2px solid #fff !important; /* Товста біла рамка для 100% контрасту */
      z-index: 20;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8) !important; /* Дуже густа тінь */
      opacity: 1 !important;
    }

    /* Робимо саму іконку смітника трохи більшою і товстішою */
    .ci-remove svg {
      width: 20px !important;
      height: 20px !important;
      stroke-width: 2.5px !important;
    }
  }
  /* Collection */
  .col-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .clothes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  /* Product page: single column everything */
  .rel-grid {
    grid-template-columns: 1fr !important;
  }
  .p-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .ship-grid,
  .mat-grid {
    grid-template-columns: 1fr;
  }
  .rel-grid {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  .p-price-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .opt-card {
    min-width: 100%;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .clothes-grid {
    grid-template-columns: 1fr;
  }
  /* Gallery thumbs row */
  .thumb-rail {
    flex-direction: row;
  }
  .thumb {
    width: 54px;
    height: 54px;
  }
  /* Collection hero */
  .col-hero-inner {
    padding: 28px 0 24px;
  }
  .col-title {
    font-size: clamp(40px, 12vw, 72px);
  }
  /* Cart */
  .cart-cols {
    display: none;
  }
  .cart-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px 0 22px;
  }
  /* Trash btn — top right corner, NOT overlapping product image */
  .cart-item .ci-remove {
    position: absolute;
    top: 16px;
    right: 0;
    width: 32px;
    height: 32px;
    z-index: 2;
  }
  /* Product info takes full width on first row */
  .cart-item .ci-product {
    grid-column: 1 / -1;
    padding-right: 44px; /* room for trash button */
  }
  /* Qty stepper spans left of total */
  .cart-item .ci-qty {
    grid-column: 1;
    justify-self: start;
  }
  /* Line total — visible on mobile, labeled "Total:" */
  .ci-total {
    grid-column: 2;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 15px;
  }
  .ci-total::before {
    content: "Item total";
    display: block;
    font-family: var(--FU);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }
  /* Hide per-unit price on mobile when line total is visible */
  .ci-price-mob {
    display: none;
  }
}
@media (max-width: 400px) {
  .opt-card {
    min-width: 100%;
  }
  .nav-right .nav-ib span {
    display: none;
  }
}
/* HELMET */

/* ── LEFT: tall gallery, no sticky, scroll with page ── */
.gallery-col {
  padding: 32px 0px 80px 0;
  border-right: 1px solid var(--b);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* main large image */
.g-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.g-main:hover img {
  transform: scale(1.05);
}
.g-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  inset: 0;
}
.g-ph-i {
  font-size: 38px;
  opacity: 0.06;
}
.g-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1e1e1e;
}
.g-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
}
/* thumbnail grid — 2 per row below main */
.g-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.g-thumb {
  aspect-ratio: 1/1;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.g-thumb:hover {
  border-color: var(--bm);
}
.g-thumb:hover img {
  transform: scale(1.05);
}
.g-thumb.active {
  border-color: var(--red);
}
.g-thumb-ph {
  font-size: 20px;
  opacity: 0.07;
}
/* video thumb */
.g-thumb.video::before {
  content: "▶";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
/* ── RIGHT: sticky info panel ── */
.info-col {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px 24px 80px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--dim) transparent;
}
.info-col::-webkit-scrollbar {
  width: 3px;
}
.info-col::-webkit-scrollbar-track {
  background: transparent;
}
.info-col::-webkit-scrollbar-thumb {
  background: var(--dim);
  border-radius: 2px;
}
/* META */
.p-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.p-rev {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--FU);
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
/* TITLE */
.p-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.p-sub {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
/* PRICE */
.p-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--b);
}
.price-main {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
}
.price-cur {
  font-family: var(--FU);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.price-note {
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
}
/* PREMIUM BASE SELECTOR */
.base-selector {
  margin-bottom: 22px;
}
.sel-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sel-label .chosen {
  color: #fff;
}
.base-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.base-card {
  border: 1px solid var(--b);
  background: var(--bg3);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
}
.base-card.selected {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.06);
}
.base-card:hover:not(.selected) {
  border-color: var(--bm);
  background: var(--bg2);
}
.base-swatch {
  width: 100%;
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 2px;
}
.base-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.base-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}
.base-price {
  font-family: var(--FU);
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}
.base-card.selected .base-price {
  color: var(--red);
}
.base-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
}
.base-card.selected .base-check {
  display: flex;
}
/* FINISH SELECTOR */
.finish-selector {
  margin-bottom: 22px;
}
.finish-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.fin-card {
  border: 1px solid var(--b);
  background: var(--bg3);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.fin-card.selected {
  border-color: var(--red);
}
.fin-card:hover:not(.selected) {
  border-color: var(--bm);
}
.fin-swatch {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.fin-swatch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fin-label {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 8px;
  background: var(--bg3);
  border-top: 1px solid var(--b);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.fin-card.selected .fin-label {
  color: #fff;
}
.fin-price {
  font-family: var(--FU);
  font-size: 10px;
  color: var(--muted);
  display: block;
}
.fin-card.selected .fin-price {
  color: var(--red);
}
.fin-check {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  z-index: 2;
}
.fin-card.selected .fin-check {
  display: flex;
}
/* SECTION HEADS */
.s-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 0 12px;
  border-top: 1px solid var(--b);
  margin-top: 6px;
  margin-bottom: 14px;
}
.s-head-icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
/* FORM ELEMENTS */
.fs {
  margin-bottom: 18px;
}
.fs-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-label .chosen {
  color: #fff;
}
.fs-label .opt-tag {
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.fs-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 36px 13px 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.fs-textarea {
  width: 100%;
  min-height: 82px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 13px 14px;
  resize: vertical;
  transition: border-color 0.2s;
  line-height: 1.65;
}
.fs-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 14px;
  transition: border-color 0.2s;
}
.fs-input::placeholder {
  color: var(--muted);
  font-family: var(--FB);
  font-weight: 400;
}
.char-count {
  font-family: var(--FU);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-align: right;
  margin-top: 4px;
  transition: color 0.2s;
}
.char-count.warn {
  color: var(--red);
}
/* UPLOAD */
.upload-box {
  border: 1px dashed var(--bm);
  background: var(--bg3);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
  overflow: hidden;
}
.upload-icon {
  font-size: 24px;
  opacity: 0.2;
  margin-bottom: 8px;
}
.upload-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.upload-preview.show {
  display: flex;
}
.upload-thumb {
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.upload-fname {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  word-break: break-all;
}
.upload-fsize {
  font-size: 11px;
  color: var(--muted);
}
.upload-rm {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  margin-left: auto;
  transition: color 0.2s;
  flex-shrink: 0;
}
.upload-rm:hover {
  color: #fff;
}
/* PRICE TOTAL + ATC */
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  margin-bottom: 12px;
}
.total-lbl {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.total-val {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 34px;
}
.btn-atc {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
/* TRUST */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  margin-top: 10px;
  margin-bottom: 24px;
}
.ti {
  background: var(--bg3);
  padding: 11px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.ti-icon {
  font-size: 15px;
}
/* ACCORDION */
.acc-list {
  border-top: 1px solid var(--b);
}
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 17px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.acc-item.open .acc-body {
  max-height: 800px;
  padding-bottom: 22px;
}
.acc-content p {
  margin-bottom: 10px;
}
.acc-content p:last-child {
  margin-bottom: 0;
}
/* ══ BELOW FOLD SECTIONS ══ */
.below {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 80px;
}
/* INTRO SPLIT */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--b);
}
.intro-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--b);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.intro-img-ph-i {
  font-size: 32px;
  opacity: 0.06;
}
.intro-img-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1e1e1e;
}
.intro-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.intro-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.intro-body p {
  margin-bottom: 14px;
}
.intro-body strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.intro-body p:last-child {
  margin-bottom: 0;
}
/* PROCESS STEPS */
.process-section {
  padding: 80px 0;
  border-top: 1px solid var(--b);
}
.section-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-lbl::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.section-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.section-title .strk {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.step {
  background: var(--bg2);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.step:hover {
  background: var(--bg3);
}
.step:hover::after {
  transform: scaleX(1);
}
.step-num {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 40px;
  color: var(--dim);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.step:hover .step-num {
  color: var(--red);
}
.step-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
/* INFO STRIP */
.info-strip {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 52px 0;
}
.is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.isc {
  background: var(--bg2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background 0.3s;
}
.isc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
}
.isc-icon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition:
    opacity 0.3s,
    width 0.3s;
}
.isc:hover .isc-icon::after {
  opacity: 1;
  width: 28px;
}
/* RELATED */
.related {
  padding: 80px 0;
  border-top: 1px solid var(--b);
}
.rel-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--b);
}
.rel-ph {
  font-size: 22px;
  opacity: 0.06;
}
.rel-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e1e1e;
}
.rel-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rel-cat {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.rel-price {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 24px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--b);
}
.rel-cta {
  display: block;
  width: 100%;
  margin-top: 11px;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px;
  border: none;
  cursor: pointer;
  text-align: center;
  background: var(--red);
  color: #fff;
  transition: box-shadow 0.2s;
}
/* FOOTER */

/* SMALLER DECALS */

.gallery-col {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 0px 32px 0;
  border-right: 1px solid var(--b);
}
.g-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}
.g-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.g-thumb {
  aspect-ratio: 1/1;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.g-thumb-ph {
  font-size: 16px;
  opacity: 0.07;
}
.info-col {
  padding: 32px 24px 80px 40px;
  min-width: 0;
  overflow-x: hidden;
}
.p-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.p-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.p-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--b);
}
.mat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.mat-card {
  border: 1px solid var(--b);
  background: var(--bg3);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.mat-card.selected {
  border-color: var(--red);
}
.mat-card:hover:not(.selected) {
  border-color: var(--bm);
}
.mat-swatch {
  width: 100%;
  aspect-ratio: 1/1;
}
.mat-info {
  padding: 7px 8px;
  background: var(--bg3);
  border-top: 1px solid var(--b);
  text-align: center;
}
.mat-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.mat-price {
  font-family: var(--FU);
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.mat-card.selected .mat-price {
  color: var(--red);
}
.mat-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  z-index: 2;
}
.mat-card.selected .mat-check {
  display: flex;
}
.fin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}
.fin-card {
  border: 1px solid var(--b);
  background: var(--bg3);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.fin-swatch {
  width: 100%;
  aspect-ratio: 1/1;
}
.fin-info {
  padding: 7px 8px;
  background: var(--bg3);
  border-top: 1px solid var(--b);
  text-align: center;
}
.fin-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.fin-price {
  font-family: var(--FU);
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.fin-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  z-index: 2;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.qty-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--bm);
}
.qty-btn {
  width: 38px;
  height: 38px;
  background: var(--bg3);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover {
  background: var(--bg2);
}
.qty-num {
  width: 48px;
  height: 38px;
  background: var(--bg3);
  border: none;
  color: #fff;
  font-family: var(--FD);
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  border-left: 1px solid var(--bm);
  border-right: 1px solid var(--bm);
}
.qty-num:focus {
  outline: none;
}
.s-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 0 12px;
  border-top: 1px solid var(--b);
  margin-top: 6px;
  margin-bottom: 14px;
}
.fs {
  margin-bottom: 16px;
}
.fs-label .opt {
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.fs-input::placeholder {
  color: var(--muted);
  font-family: var(--FB);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.fs-textarea {
  width: 100%;
  min-height: 80px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 13px 14px;
  resize: vertical;
  transition: border-color 0.2s;
  line-height: 1.65;
}
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  margin-bottom: 12px;
}
.btn-atc {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  margin-top: 10px;
  margin-bottom: 24px;
}
.acc-list {
  border-top: 1px solid var(--b);
}
.acc-item.open .acc-body {
  max-height: 600px;
  padding-bottom: 20px;
}
.acc-content strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.info-strip {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 52px 0;
}
/* CLOTHING PRODUCT */

/* ── LEFT GALLERY ── */
.gallery-col {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 0px 32px 0;
  border-right: 1px solid var(--b);
}
/* Large main photo */
.g-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.g-main:hover img {
  transform: scale(1.04);
}
.g-ph-i {
  font-size: 40px;
  opacity: 0.06;
}
/* 3 thumbnails below */
.g-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.g-thumb:hover img {
  transform: scale(1.08);
}
/* ── RIGHT INFO ── */
.info-col {
  padding: 32px 24px 80px 40px;
  min-width: 0;
  overflow-x: hidden;
}
/* meta */
.p-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.p-brand {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-brand::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.p-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
/* price */
.p-price-row {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--b);
}
.price-main {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
}
.price-tax {
  font-family: var(--FU);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
/* ── SIZE SELECTOR ── */
.size-section {
  margin-bottom: 22px;
}
.size-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.size-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.size-chosen {
  color: #fff;
  font-weight: 700;
}
.size-guide-btn {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.size-guide-btn:hover {
  opacity: 0.7;
}
.size-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sz-btn {
  width: 52px;
  height: 52px;
  background: var(--bg3);
  border: 1px solid var(--b);
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.sz-btn:hover:not(.out) {
  border-color: var(--bm);
  color: rgba(255, 255, 255, 0.9);
}
.sz-btn.selected {
  border-color: var(--red);
  color: #fff;
  background: rgba(223, 4, 46, 0.08);
}
.sz-btn.out {
  opacity: 0.3;
  cursor: not-allowed;
  position: relative;
}
.sz-btn.out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  right: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-20deg);
}
/* size guide panel */
.sg-panel {
  display: none;
  background: var(--bg3);
  border: 1px solid var(--b);
  margin-top: 12px;
  padding: 16px;
}
.sg-panel.open {
  display: block;
}
.sg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--b);
}
.sg-cell {
  background: var(--bg2);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
}
.sg-cell.head {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--card);
}
/* qty */
.qty-section {
  margin-bottom: 22px;
}
.qty-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bm);
}
.qty-btn {
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-num {
  width: 52px;
  height: 44px;
  background: var(--bg3);
  border: none;
  color: #fff;
  font-family: var(--FD);
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  border-left: 1px solid var(--bm);
  border-right: 1px solid var(--bm);
}
/* ATC */
.btn-atc {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
/* size prompt — shown if no size selected */
.size-prompt {
  display: none;
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(223, 4, 46, 0.3);
  background: rgba(223, 4, 46, 0.06);
}
.size-prompt.show {
  display: block;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  margin-top: 10px;
  margin-bottom: 26px;
}
/* product description */
.prod-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 20px;
  border-top: 1px solid var(--b);
  margin-bottom: 20px;
}
.prod-desc strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.prod-desc p {
  margin-bottom: 12px;
}
.prod-desc p:last-child {
  margin-bottom: 0;
}
/* features list */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.feat-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}
/* accordion */
.acc-list {
  border-top: 1px solid var(--b);
  margin-top: 8px;
}
/* FOOTER */

/* COLL SEMI */
.col-hero {
  padding-top: calc(32px + 72px);
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  position: relative;
  overflow: hidden;
}
.col-hero::before {
  content: "SEMI CUSTOM";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.col-hero-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.col-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.col-bc a {
  transition: color 0.2s;
}
.col-bc a:hover {
  color: #fff;
}
.col-bc-sep {
  color: var(--dim);
}
.col-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(54px, 7vw, 100px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.col-sub {
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.col-count {
  flex-shrink: 0;
  text-align: right;
}
.col-count-num {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: #fff;
}
.col-count-lbl {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
/* ══ TOOLBAR ══ */
.toolbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.toolbar-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}
/* Style filter pills (replaces sidebar) */
.filter-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}
.fp-label {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 4px;
}
.pill {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--b);
  padding: 7px 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--bm);
  color: rgba(255, 255, 255, 0.7);
}
.pill.active {
  background: rgba(223, 4, 46, 0.1);
  border-color: rgba(223, 4, 46, 0.4);
  color: #fff;
}
.pill-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.results-count {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.results-count strong {
  color: #fff;
}
.sort-select {
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 28px 8px 12px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}
.sort-select:focus {
  outline: none;
  border-color: var(--red);
}
/* view toggle */
.view-toggle {
  display: flex;
  gap: 3px;
}
.vt {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.5s;
}
.vt.active {
  border-color: var(--red);
}
.vt svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  opacity: 0.4;
}
.vt.active svg {
  opacity: 1;
}
/* ══ PRODUCT GRID ══ */
.grid-wrap {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 0 100px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--b);
}
.prod-grid.v3 {
  grid-template-columns: repeat(3, 1fr);
}
.prod-grid.v2 {
  grid-template-columns: repeat(2, 1fr);
}
/* ── PRODUCT CARD ── */
.pcard {
  background: var(--card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.pcard:hover {
  background: var(--bg3);
}
.pcard.hidden {
  display: none;
}
.pcard-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--b);
}
.pcard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pcard:hover .pcard-img img {
  transform: scale(1.07);
}
/* badge */
.pcard-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--FU);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
}
.badge-new {
  background: var(--red);
  color: #fff;
}
.badge-pop {
  background: #fff;
  color: #000;
}
/* quick-add hover overlay */
.pcard-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.28s;
}
.pcard:hover .pcard-hover {
  opacity: 1;
}
.quick-add {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px;
  cursor: pointer;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcard:hover .quick-add {
  transform: translateY(0);
}
.quick-add:hover {
  background: rgba(255, 255, 255, 0.88);
}
/* body */
.pcard-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcard-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
  transition: color 0.2s;
}
.pcard:hover .pcard-name {
  color: #fff;
}
.pcard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
/* color dots row */
.pcard-colors {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cdot {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
  cursor: default;
  position: relative;
}
.cdot:hover {
  transform: scale(1.35);
}
/* tooltip */
.cdot::after {
  content: attr(data-color);
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #111;
  border: 1px solid var(--bm);
  color: #fff;
  padding: 3px 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.cdot:hover::after {
  opacity: 1;
}
.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--b);
  gap: 8px;
}
.pcard-price {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
}
.pcard-price small {
  font-family: var(--FU);
  font-size: 10px;
  color: var(--muted);
  margin-left: 3px;
}
.pcard-cta {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 9px 14px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.pcard-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 28%;
  height: 200%;
  background: rgba(255, 255, 255, 0.16);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}
.pcard:hover .pcard-cta::before {
  left: 130%;
}
.pcard:hover .pcard-cta {
  box-shadow: 0 4px 18px rgba(223, 4, 46, 0.4);
}
/* ── NO RESULTS ── */
#no-results {
  display: none;
  grid-column: 1/-1;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
#no-results.show {
  display: flex;
}
.nr-num {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 80px;
  color: var(--dim);
  line-height: 1;
}
.nr-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nr-clear {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.nr-clear:hover {
  opacity: 0.7;
}
/* ── LOAD MORE ── */
.load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.btn-load {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid var(--bm);
  padding: 16px 52px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-load::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 28%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}
.btn-load:hover {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.06);
}
.btn-load:hover::before {
  left: 130%;
}
/* ── UPSELL BANNER ── */
.upsell {
  background: var(--red);
  margin-top: 64px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.upsell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.07) 40px,
    rgba(0, 0, 0, 0.07) 41px
  );
}
.upsell-text {
  position: relative;
  z-index: 1;
}
.upsell-ey {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.upsell-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
}
.upsell-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  max-width: 400px;
  line-height: 1.6;
}
.btn-dark {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 18px 38px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-dark:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
.btn-dark-arr {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-dark:hover .btn-dark-arr {
  transform: translateX(4px);
}
/* ── INFO STRIP ── */
.info-strip {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 52px 0;
}
/* ── FOOTER ── */
.footer {
  background: #040404;
  border-top: 1px solid var(--b);
  padding: 60px 0 36px;
}
/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .prod-grid.v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid.v3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .prod-grid,
  .prod-grid.v3,
  .prod-grid.v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .is-grid {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .toolbar-inner {
    gap: 10px;
  }
  .upsell {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .prod-grid,
  .prod-grid.v3,
  .prod-grid.v2 {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  .filter-pills {
    gap: 4px;
  }
  .pill {
    font-size: 10px;
    padding: 6px 10px;
  }
}
/* COLL SMALLER */
.col-hero {
  padding-top: calc(32px + 72px);
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  position: relative;
  overflow: hidden;
}
.col-hero::before {
  content: "DECALS";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 220px);
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.bc a {
  transition: color 0.2s;
}
.bc a:hover {
  color: #fff;
}
.bc-sep {
  color: var(--dim);
}
.col-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-right {
  flex-shrink: 0;
  text-align: right;
}
.hero-count {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: #fff;
}
.hero-count-lbl {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
/* ══ 3 PRODUCT CARDS — full-width row ══ */
.cards-wrap {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 0 100px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.pcard {
  background: var(--card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
/* image */
.pcard-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--b);
}
.pcard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ph-i {
  font-size: 32px;
  opacity: 0.06;
}
/* hover overlay */
.pcard-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.28s;
}
.quick-view {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  border: none;
  padding: 13px;
  cursor: pointer;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcard:hover .quick-view {
  transform: translateY(0);
}
/* body */
.pcard-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcard-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pcard-tag::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: var(--red);
}
.pcard-name {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: letter-spacing 0.3s;
}
.pcard:hover .pcard-name {
  letter-spacing: 0.01em;
}
.pcard-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
/* what's included tags */
.pcard-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.inc-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--b);
  padding: 4px 10px;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.pcard:hover .inc-tag {
  border-color: var(--bm);
  color: rgba(255, 255, 255, 0.55);
}
/* materials row */
.pcard-materials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.mat-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 4px;
}
.mat-dot {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  position: relative;
  transition: transform 0.2s;
}
.mat-dot:hover {
  transform: scale(1.3);
}
.mat-dot::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #111;
  border: 1px solid var(--bm);
  color: #fff;
  padding: 3px 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.mat-dot:hover::after {
  opacity: 1;
}
.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--b);
  gap: 12px;
}
.pcard-price {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
}
.pcard-price small {
  font-family: var(--FU);
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}
.btn-order {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.18s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-order::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 28%;
  height: 200%;
  background: rgba(255, 255, 255, 0.16);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}
.pcard:hover .btn-order::before {
  left: 130%;
}
.pcard:hover .btn-order {
  box-shadow: 0 6px 22px rgba(223, 4, 46, 0.4);
  transform: translateY(-1px);
}
.btn-arr {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcard:hover .btn-arr {
  transform: translateX(4px);
}
/* ══ UPSELL ══ */
.upsell {
  background: var(--red);
  margin-top: 0;
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.upsell-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
}
/* FOOTER */

/* COLL CLOTHING */
.col-hero {
  padding-top: calc(32px + 72px);
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  position: relative;
  overflow: hidden;
}
.col-hero::before {
  content: "CLOTHING";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(80px, 13vw, 170px);
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.col-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.filter-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.fp-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 4px;
}
.sort-sel {
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 28px 8px 12px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}
.sort-sel:focus {
  outline: none;
  border-color: var(--red);
}
/* ══ GRID ══ */
.grid-wrap {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 0 100px;
}
.clothes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
}
.pcard:hover .pcard-img img {
  transform: scale(1.06);
}
.badge-sale {
  background: #fff;
  color: #000;
}
.badge-limited {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--bm);
  color: rgba(255, 255, 255, 0.7);
}
/* quick add hover */
.pcard-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.28s;
}
.quick-add {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px;
  cursor: pointer;
  transform: translateY(8px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* size dots */
.pcard-sizes {
  position: absolute;
  bottom: 48px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transform: translateX(6px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.pcard:hover .pcard-sizes {
  opacity: 1;
  transform: translateX(0);
}
.sz-dot {
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FU);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.sz-dot:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}
.sz-dot.out {
  opacity: 0.3;
  cursor: default;
  text-decoration: line-through;
}
.pcard-cat {
  font-family: var(--FU);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.pcard-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.pcard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}
/* color swatches */
.pcard-colors {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 0;
}
.c-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}
.c-swatch:hover {
  transform: scale(1.3);
}
.c-swatch::after {
  content: attr(data-c);
  position: absolute;
  bottom: calc(100%+4px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #111;
  border: 1px solid var(--bm);
  color: #fff;
  padding: 3px 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.c-swatch:hover::after {
  opacity: 1;
}
.pcard-price .sale {
  color: var(--red);
}
.pcard-price .orig {
  font-family: var(--FU);
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 4px;
}
/* ══ BRAND STATEMENT ══ */
.brand-stmt {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.brand-stmt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.07) 40px,
    rgba(0, 0, 0, 0.07) 41px
  );
}
.bs-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.bs-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
}
.bs-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
  line-height: 1.7;
}
.btn-dark {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 18px 38px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* ══ SIZE GUIDE STRIP ══ */
.size-strip {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 40px 0;
}
.ss-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}
.ss-head {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ss-head::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.ss-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--b);
}
.ss-cell {
  background: var(--bg3);
  padding: 14px 16px;
}
.ss-cell.head {
  background: var(--card);
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.ss-cell.val {
  font-size: 13px;
  color: var(--muted);
}
.ss-cell.val strong {
  color: #fff;
  font-weight: 500;
}
/* FOOTER */

/* CART */
.cart-wrap {
  padding-top: calc(32px + 72px + 40px);
  padding-bottom: 100px;
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}
/* header row */
.cart-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--b);
  padding-bottom: 28px;
}
.cart-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.9;
  text-transform: uppercase;
}
.cart-title-sub {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.cart-item-count {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.cart-item-count span {
  font-family: var(--FD);
  font-size: 42px;
  color: #fff;
  display: block;
  line-height: 1;
}
/* ── MAIN LAYOUT ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
/* ── ITEMS LIST ── */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* column headers */
.cart-cols {
  display: grid;
  grid-template-columns: 1fr 120px 40px 120px;
  gap: 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--b);
  margin-bottom: 0;
}
.cart-col-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-col-lbl.center {
  text-align: center;
}
.cart-col-lbl.right {
  text-align: right;
}
/* single cart item */
.cart-item {
  display: grid;
  grid-template-columns: 1fr 120px 40px 120px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--b);
  transition: background 0.2s;
  position: relative;
}
.cart-item:hover {
  background: rgba(255, 255, 255, 0.012);
  margin: 0 -12px;
  padding: 20px 12px;
}
/* product info cell */
.ci-product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.ci-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.35;
  transition: border-color 0.2s;
}
.cart-item:hover .ci-img {
  border-color: var(--bm);
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.ci-meta {
}
.ci-cat {
  font-family: var(--FU);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.ci-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.ci-variant {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
/* qty stepper */
.ci-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bm);
}
.qty-btn {
  width: 30px;
  height: 30px;
  background: var(--bg3);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.qty-num {
  width: 36px;
  height: 30px;
  background: var(--bg3);
  border: none;
  color: #fff;
  font-family: var(--FD);
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  border-left: 1px solid var(--bm);
  border-right: 1px solid var(--bm);
}
/* price */
.ci-price {
  text-align: right;
  font-family: var(--FD);
  font-weight: 900;
  font-size: 22px;
}
/* remove btn */
.ci-remove {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  justify-self: center;
}
.ci-remove:hover {
  color: var(--red);
  border-color: rgba(223, 4, 46, 0.4);
  background: rgba(223, 4, 46, 0.06);
}
/* AJAX update state - fade row slightly while change is in flight */
.cart-item.is-updating {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
/* ── ORDER NOTES ── */
.cart-notes {
  margin-top: 28px;
}
.notes-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notes-label::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.notes-ta {
  width: 100%;
  min-height: 88px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color 0.2s;
  line-height: 1.65;
}
.notes-ta::placeholder {
  color: var(--muted);
}
.notes-ta:focus {
  outline: none;
  border-color: var(--red);
}
/* ── ORDER SUMMARY (RIGHT PANEL) ── */
.cart-summary {
  position: sticky;
  top: calc(72px + 24px);
  background: var(--bg2);
  border: 1px solid var(--b);
  border-top: 3px solid var(--red);
}
.cs-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--b);
}
.cs-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.cs-body {
  padding: 20px 24px;
}
/* summary rows */
.cs-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cs-lbl {
  font-family: var(--FU);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-val {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.cs-val.free {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
/* shipping selector */
.cs-ship-opts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.ship-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--b);
  background: var(--bg3);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.ship-opt.selected {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.06);
}
.ship-opt:hover:not(.selected) {
  border-color: var(--bm);
  background: var(--card);
}
.ship-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--bm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.ship-opt.selected .ship-radio {
  border-color: var(--red);
}
.ship-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.ship-opt.selected .ship-dot {
  opacity: 1;
}
.ship-info {
  flex: 1;
  min-width: 0;
}
.ship-name {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1px;
}
.ship-time {
  font-size: 11px;
  color: var(--muted);
}
.ship-price {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
}
.ship-opt.selected .ship-price {
  color: var(--red);
}
/* divider */
.cs-divider {
  height: 1px;
  background: var(--b);
  margin: 16px 0;
}
/* total */
.cs-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--b);
  margin-bottom: 16px;
}
.cs-total-lbl {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.cs-total-val {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
}
/* promo code */
.cs-promo {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.promo-input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--bm);
  border-right: none;
  color: #fff;
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 14px;
  transition: border-color 0.2s;
}
.promo-input::placeholder {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--FB);
  font-weight: 400;
}
.promo-input:focus {
  outline: none;
  border-color: var(--red);
}
.promo-btn {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg3);
  color: var(--muted);
  border: 1px solid var(--bm);
  padding: 12px 16px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.promo-btn:hover {
  color: #fff;
  border-color: var(--bm);
  background: var(--bg2);
}
/* checkout button */
.btn-checkout {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.btn-checkout::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  animation: sheen 3.5s 1s ease infinite;
}
.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(223, 4, 46, 0.45);
}
.btn-checkout:active {
  transform: scale(0.98);
}
.btn-checkout svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-checkout:hover svg {
  transform: translateX(4px);
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
.btn-continue {
  width: 100%;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--b);
  padding: 14px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-continue:hover {
  color: #fff;
  border-color: var(--bm);
  background: var(--bg3);
}
/* trust mini */
.cs-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--b);
  margin-top: 4px;
}
.cs-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.cs-trust-item span:first-child {
  font-size: 14px;
  flex-shrink: 0;
}
/* ── EMPTY CART STATE ── */
.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  text-align: center;
  gap: 20px;
}
.cart-empty.show {
  display: flex;
}
.empty-icon {
  font-size: 56px;
  opacity: 0.15;
}
.empty-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 44px;
  text-transform: uppercase;
  color: var(--dim);
}
.empty-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
}
.btn-shop {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 8px;
}
.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(223, 4, 46, 0.4);
}
/* ── YOU MAY ALSO LIKE ── */
.cart-related {
  margin-top: 72px;
  border-top: 1px solid var(--b);
  padding-top: 64px;
}
.s-ttl {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
}
.rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--b);
}
.rel-nm {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.rel-price {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 22px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--b);
}
/* FOOTER */

/* GALLERY */
.gallery-hero {
  padding-top: calc(32px + 72px);
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: "GALLERY";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 0 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-left {
}
.hero-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-sub {
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-right {
  text-align: right;
  flex-shrink: 0;
}
.hero-count {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: #fff;
}
/* ══ FILTER BAR ══ */
.filter-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.filter-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}
.filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.count-lbl {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.count-lbl strong {
  color: #fff;
}
/* ══ MASONRY GALLERY ══ */
.gallery-wrap {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
/* CSS columns masonry */
.masonry {
  columns: 4;
  column-gap: 6px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg3);
  border: 1px solid var(--b);
  transition: border-color 0.3s;
}
.masonry-item:hover {
  border-color: var(--bm);
}
/* some items span differently for visual interest */
.masonry-item.wide {
  column-span: none;
}
.masonry-img {
  width: 100%;
  display: block;
  filter: brightness(0.75);
  transition:
    filter 0.4s,
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.masonry-item:hover .masonry-img {
  filter: brightness(0.9);
  transform: scale(1.03);
}
/* placeholder for missing images */
.masonry-ph {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg3);
}
.masonry-ph-i {
  font-size: 24px;
  opacity: 0.07;
}
.masonry-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e1e1e;
}
/* overlay on hover */
.masonry-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}
.mo-kit {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.mo-rider {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1px;
}
.mo-bike {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.lb-img-wrap {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  width: 100%;
  display: block;
}
.lb-img-ph {
  font-size: 48px;
  opacity: 0.08;
}
.lb-info {
  width: 280px;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--b);
  border-left: none;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 8px;
}
.lb-close:hover {
  color: #fff;
}
.lb-kit-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lb-kit-tag::before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: var(--red);
}
.lb-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 8px;
}
.lb-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.lb-order {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.lb-order::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 28%;
  height: 200%;
  background: rgba(255, 255, 255, 0.16);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}
.lb-order:hover::before {
  left: 130%;
}
.lb-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(223, 4, 46, 0.4);
}
/* nav arrows */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 8, 8, 0.8);
  border: 1px solid var(--b);
  color: rgba(255, 255, 255, 0.7);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  z-index: 3;
}
.lb-prev {
  left: -56px;
}
.lb-next {
  right: -56px;
}
.lb-prev:hover,
.lb-next:hover {
  color: #fff;
  border-color: var(--bm);
  background: var(--bg2);
}
/* ══ SUBMIT SECTION ══ */
.submit-section {
  background: var(--bg2);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 72px 0;
}
.submit-inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sub-text {
}
.sub-lbl {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-lbl::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
}
.sub-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sub-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.sub-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-pill {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg3);
  border: 1px solid var(--bm);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.2s,
    background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.social-pill:hover {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.08);
}
.sub-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sf-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.sf-input,
.sf-select,
.sf-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.sf-input::placeholder,
.sf-textarea::placeholder {
  color: var(--muted);
}
.sf-input:focus,
.sf-select:focus,
.sf-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.sf-select {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.sf-textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.65;
}
/* upload zone */
.sf-upload {
  border: 1px dashed var(--bm);
  background: var(--bg3);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
  overflow: hidden;
}
.sf-upload:hover {
  border-color: var(--red);
  background: rgba(223, 4, 46, 0.04);
}
.sf-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.sf-upload-icon {
  font-size: 28px;
  opacity: 0.2;
  margin-bottom: 8px;
}
.sf-upload-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.sf-upload-sub {
  font-size: 12px;
  color: var(--muted);
}
.sf-upload-preview {
  display: none;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.sf-upload-preview.show {
  display: flex;
}
.sf-upload-thumb {
  width: 44px;
  height: 44px;
  background: var(--bg2);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.sf-upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sf-fname {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  word-break: break-all;
}
.sf-fsize {
  font-size: 11px;
  color: var(--muted);
}
.sf-rm {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  margin-left: auto;
  transition: color 0.2s;
  flex-shrink: 0;
}
.sf-rm:hover {
  color: #fff;
}
.btn-submit {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 18px 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  align-self: flex-start;
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  animation: sheen 3.5s 1s ease infinite;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(223, 4, 46, 0.45);
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
/* FOOTER */

/* INFO PAGES */
.page-wrap {
  padding-top: calc(32px + 72px);
  min-height: 100vh;
}
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg);
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-hero .inner {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}
.page-title {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.88;
  text-transform: uppercase;
}
/* MAIN CONTENT */
.page-body {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding: 56px 0 100px;
  align-items: start;
}
/* SIDEBAR NAV */
.info-nav {
  position: sticky;
  top: calc(72px + 24px);
}
.info-nav-label {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--b);
}
.info-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-nav-links a {
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-nav-links a:hover {
  color: rgba(255, 255, 255, 0.7);
  background: var(--bg3);
  border-color: var(--b);
}
.info-nav-links a.current {
  color: #fff;
  background: rgba(223, 4, 46, 0.06);
  border-color: rgba(223, 4, 46, 0.25);
  border-left-color: var(--red);
}
.info-nav-links a .nav-icon {
  font-size: 14px;
  flex-shrink: 0;
}
/* CONTENT */
.content {
  min-width: 0;
}
.content h2 {
  font-family: var(--FD);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.content h2 .strk {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
}
.content h3 {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 32px;
}
.content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.content p:last-child {
  margin-bottom: 0;
}
.content strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.content a:hover {
  opacity: 0.75;
}
.divider {
  height: 1px;
  background: var(--b);
  margin: 36px 0;
}
/* INFO BOX */
.info-box {
  background: var(--bg3);
  border: 1px solid var(--b);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.info-box p {
  margin-bottom: 0;
  font-size: 14px;
}
.info-box p strong {
  color: #fff;
}
/* GRID TABLE */
.data-grid {
  display: grid;
  gap: 1px;
  background: var(--b);
  margin-bottom: 24px;
}
.data-row {
  display: grid;
  gap: 1px;
  background: var(--b);
}
.data-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.data-row.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.data-row.cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.dc {
  background: var(--bg3);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.dc.head {
  background: var(--card);
  font-family: var(--FU);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.dc strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
/* ENTRY LIST — flat reference list (e.g. supported helmet models) */
.entry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
  margin-bottom: 24px;
  border-top: 1px solid var(--b);
  border-left: 1px solid var(--b);
}
.entry-list-item {
  background: var(--bg3);
  padding: 9px 14px;
  font-size: 13px;
  font-family: var(--FB);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  border-right: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
@media (max-width: 640px) {
  .entry-list { grid-template-columns: 1fr; }
}
/* STEP LIST */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.step-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--b);
  transition: padding-left 0.25s;
}
.step-item:last-child {
  border-bottom: none;
}
.step-item:hover {
  padding-left: 6px;
}
.step-num {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 38px;
  color: var(--dim);
  min-width: 48px;
  line-height: 1;
  transition: color 0.3s;
  flex-shrink: 0;
}
.step-item:hover .step-num {
  color: var(--red);
}
.step-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
/* FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--b);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 17px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: #fff;
}
.faq-arr {
  font-size: 20px;
  color: var(--muted);
  transition:
    transform 0.3s,
    color 0.3s;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .faq-arr {
  transform: rotate(45deg);
  color: var(--red);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.77, 0, 0.18, 1),
    padding 0.35s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 18px;
}
.faq-a-inner {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-a-inner strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
/* CONTACT FORM */
.cform {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bm);
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.cf-input::placeholder,
.cf-textarea::placeholder {
  color: var(--muted);
}
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.cf-select {
  font-family: var(--FU);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.cf-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}
.btn-submit {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 18px 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@keyframes sheen {
  0% {
    left: -60%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
/* CONTACT CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: var(--b);
  margin: 0 auto;
}
.cc {
  background: var(--bg3);
  padding: 28px 24px;
  transition: background 0.3s;
}
.cc:hover {
  background: var(--card);
}
.cc-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.cc-title {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.cc-val {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.cc-val a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.cc-val a:hover {
  color: #fff;
}
.cc-hours {
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 6px;
}
/* ══ АДАПТАЦІЯ ДЛЯ МОБІЛЬНИХ (Екрани до 768px) ══ */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .cform-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .page-wrap {
    padding: 0 16px;
  }

  /* Fix huge gap between hero and content */
  .page-hero {
    padding-top: 60px !important;
    padding-bottom: 16px !important;
    min-height: auto;
  }

  .page-title {
    font-size: 32px;
  }

  .page-body {
    display: flex;
    flex-direction: column;
    margin-top: 0 !important;
  }

  .info-nav {
    width: 100%;
    margin: 0 0 32px 0;
    border: none;
    background: transparent;
    padding: 0;
    position: static !important;
    top: auto !important;
  }

  .info-nav-label {
    display: none;
  }

  /* Grid layout for buttons */
  .info-nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Make the 5th (odd) button span full width */
  .info-nav-links a:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .info-nav-links a {
    width: 100%;
    padding: 12px 8px;
    background: var(--card);
    border: 1px solid var(--dim);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    text-align: center;
  }

  .info-nav-links a.current {
    background: #fff;
    color: #000;
    border-color: #fff;
  }
}
/* COLOR SWATCH TABLE */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.sw-item {
  background: var(--bg3);
  border: 1px solid var(--b);
  overflow: hidden;
  transition: border-color 0.2s;
}
.sw-item:hover {
  border-color: var(--bm);
}
.sw-color {
  width: 100%;
  aspect-ratio: 2/1;
}
.sw-label {
  padding: 8px 10px;
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.sw-sub {
  font-size: 11px;
  color: var(--muted);
  padding: 0 10px 8px;
}
/* FOOTER */

/* FOOTER */
.footer {
  background: #040404;
  border-top: 1px solid var(--b);
  padding: 80px 0 40px;
}
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 54px;
}
.f-lph {
  width: 120px;
  height: 36px;
  border: 1px dashed #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 14px;
}
.f-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: 24px;
}
.f-s {
  width: 36px;
  height: 36px;
  background: var(--bg3);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.f-hd {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 11px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--b);
}
.f-bot {
  border-top: 1px solid var(--b);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
/* ══ SCROLL REVEAL ═══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}
/* staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}
.stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}
.stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}
/* ══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1160px) {
  /* Mobile/tablet layout: burger | logo (center) | nav-right */
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .nav-logo {
    justify-self: center;
  }
  .nav-menu {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mega-wrap {
    display: none;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 68px 0;
  }
  .mc-grid {
    grid-template-columns: 1fr;
  }
  .mcat {
    border-right: none;
    border-bottom: 1px solid var(--b);
    min-height: 440px;
  }
  .sc-grid {
    grid-template-columns: 1fr;
  }
  .scat {
    border-right: none;
    border-bottom: 1px solid var(--b);
  }
  .picks-grid {
    grid-template-columns: 1fr;
  }
  .feats-grid {
    grid-template-columns: 1fr;
  }
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .f-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cta-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .nav {
    padding: 0 16px;
  }
  .nav-ib span {
    /* Smaller cart count on tiny screens */
    font-size: 11px;
  }
  .burger {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav {
    padding: 0 12px;
  }
  .nav-right {
    gap: 4px;
  }
  .nav-ib {
    padding: 8px 6px;
  }
}

/* ══ CURRENCY SELECTOR ═══════════════════════ */
.cur-form {
  margin: 0;
  display: inline-block;
}
.cur {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  background: transparent;
  user-select: none;
}
.cur:hover,
.cur:focus-within {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
}
.cur-code {
  display: inline-block;
  line-height: 1;
}
.cur-chev {
  display: inline-flex;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.cur:hover .cur-chev,
.cur:focus-within .cur-chev {
  opacity: 1;
}
.cur-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Native dropdown popup — themed for dark UI where supported */
.cur-select option {
  color: #111;
  background: #fff;
  font-family: var(--FB), sans-serif;
}
@media (max-width: 480px) {
  .cur {
    padding: 7px 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    gap: 4px;
  }
}
/* ══ CUSTOMER GALLERY (homepage section) ══ */
.cg-sec {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--b);
}
.cg-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.cg-head-right {
}
.cg-head-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
}
/* grid: auto-fill with large variant */
.cg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
  margin-bottom: 28px;
}
.cg-item {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--b);
  cursor: pointer;
  transition: border-color 0.3s;
}
.cg-item:hover {
  border-color: var(--bm);
}
.cg-large {
  grid-column: span 1;
  grid-row: span 2;
}
/* placeholder */
.cg-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cg-ph-i {
  font-size: 28px;
  opacity: 0.06;
}
.cg-ph-t {
  font-family: var(--FU);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1e1e1e;
}
/* real photo */
.cg-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s;
}
.cg-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}
/* hover overlay */
.cg-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.cg-item:hover .cg-ov {
  opacity: 1;
}
.cg-ov-kit {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.cg-ov-rider {
  font-family: var(--FU);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
/* bottom CTA row */
.cg-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--b);
}
.cg-bottom-text {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
}
.cg-bottom-count {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
.cg-bottom-label {
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.cg-btn-all {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--bm);
  padding: 14px 28px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.cg-btn-all:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(223, 4, 46, 0.06);
}
.cg-btn-submit {
  font-family: var(--FU);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.cg-btn-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
/* lightbox */
.cg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cg-lightbox.open {
  display: flex;
}
.cg-lb-inner {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--b);
  display: grid;
  grid-template-columns: 1fr 260px;
  max-width: 780px;
  width: 100%;
  overflow: hidden;
}
.cg-lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--b);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.cg-lb-close:hover {
  color: #fff;
}
.cg-lb-img {
  aspect-ratio: 1/1;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.cg-lb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cg-lb-info {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--b);
}
.cg-lb-kit {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.cg-lb-rider {
  font-family: var(--FD);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 8px;
}
.cg-lb-bike {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: auto;
  line-height: 1.6;
}
.cg-lb-order {
  display: block;
  width: 100%;
  margin-top: 24px;
  font-family: var(--FU);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 0.2s;
}
.cg-lb-order:hover {
  box-shadow: 0 6px 22px rgba(223, 4, 46, 0.4);
}
@media (max-width: 900px) {
  .cg-head {
    grid-template-columns: 1fr;
  }
  .cg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .cg-large {
    grid-column: span 1;
    grid-row: span 2;
  }
}
@media (max-width: 580px) {
  .cg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .cg-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .cg-lb-inner {
    grid-template-columns: 1fr;
  }
  .cg-lb-info {
    border-left: none;
    border-top: 1px solid var(--b);
  }
}
/* ══ GALLERY ARROWS (hover) ══ */

.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  transition:
    opacity 0.25s,
    background 0.2s;
}
.gallery-main:hover .gal-arrow {
  opacity: 1;
}
.gal-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.gal-arrow.prev {
  left: 10px;
}
.gal-arrow.next {
  right: 10px;
}
/* gradient fade on sides */
.gal-arrow.prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
  transform: translateX(-100%);
}
.gal-arrow.next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 80px;
  pointer-events: none;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
  transform: translateX(100%);
}
/* ══ LIGHTBOX ══ */
.pl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pl-lightbox.open {
  display: flex;
}
.pl-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.pl-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pl-lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.pl-lb-prev,
.pl-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pl-lb-prev:hover,
.pl-lb-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.pl-lb-prev {
  left: 16px;
}
.pl-lb-next {
  right: 16px;
}
.pl-lb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}
.rbr-page-container {
  display: none !important;
}

/* ── 404 page ─────────────────────────────────────────── */
.notfound-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
}
.nf-inner {
  text-align: center;
  max-width: 520px;
}
.nf-code {
  font-family: var(--FD);
  font-size: clamp(140px, 22vw, 240px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .04);
  letter-spacing: -.02em;
  margin-bottom: -24px;
  user-select: none;
  pointer-events: none;
}
.nf-tag {
  font-family: var(--FU);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.nf-title {
  font-family: var(--FD);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: .95;
  color: #fff;
  margin-bottom: 18px;
}
.nf-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.nf-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.nf-btn-sec {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 22px;
  border: 1px solid var(--b);
  border-radius: 4px;
  font-family: var(--FU);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: border-color .2s, color .2s;
}
.nf-btn-sec:hover {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.nf-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.nf-links a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.nf-links a:hover { color: #fff; }
.nf-sep { color: var(--b); }

/* ── Cart flash error ─────────────────────────────────── */
.cart-flash-error {
  margin: 0 0 20px;
  padding: 13px 16px;
  background: rgba(210, 40, 40, .1);
  border: 1px solid rgba(210, 40, 40, .35);
  border-left: 3px solid rgba(210, 40, 40, .65);
  border-radius: 4px;
  color: rgba(255, 255, 255, .85);
  font-family: var(--FB);
  font-size: 13px;
  line-height: 1.5;
}

/* ── ATC disabled/loading state ──────────────────────── */
.btn-atc:disabled {
  cursor: default;
  opacity: 0.65;
  pointer-events: none;
}

/* ── Free shipping progress bar (cart) ───────────────── */
.shipping-bar {
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: 8px;
  padding: 14px 18px 12px;
  margin-bottom: 28px;
}
.sb-msg {
  font-family: var(--FB);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sb-msg strong { color: #fff; }
.sb-track {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.sb-fill {
  height: 100%;
  background: var(--red);
  border-radius: 99px;
  transition: width .45s ease;
  min-width: 4px;
}
.sb-fill.sb-reached { background: #1ea050; }

/* ── Sticky ATC bar (product pages) ─────────────────── */
#sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--b);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(105%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
#sticky-atc-bar.satc-visible {
  transform: translateY(0);
}
.satc-info {
  flex: 1;
  min-width: 0;
}
.satc-name {
  font-family: var(--FB);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.satc-price {
  font-family: var(--FD);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.satc-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--FD);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 13px 26px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.satc-btn:hover { opacity: .85; }
.satc-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}
@media (max-width: 500px) {
  #sticky-atc-bar { padding: 10px 16px; gap: 12px; }
  .satc-name { font-size: 12px; }
  .satc-price { font-size: 15px; }
  .satc-btn { padding: 11px 18px; font-size: 14px; }
}

/* ── Product page: shipping info text ─────────────────────────── */
.p-ship-text {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--FU);
  letter-spacing: .04em;
  line-height: 1.6;
  margin: 14px 0 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--b);
  border-radius: 4px;
}

/* ── Product page: configurable trust badge blocks ─────────────── */
.ptb-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  margin: 10px 0 14px;
}
.ptb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ptb-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: .8;
  flex-shrink: 0;
}
.ptb-label {
  font-size: 11px;
  font-family: var(--FU);
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dep-title {
  font-size: 11px;
  font-family: var(--FU);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin: 2% 0 1%;
}

/* ── Collection sort form (keeps the native select inline in the toolbar) ── */
.sort-form {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

/* ── Shopify-native collection pagination ── */
/* Selectors sit directly under .pl-pagination so they apply regardless of how
   {{ paginate | default_pagination }} nests its markup (.pagination wrapper,
   span.page wrappers, etc.). */
.pl-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 44px 0 8px;
  font-family: var(--FU);
}
.pl-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.pl-pagination a,
.pl-pagination .current,
.pl-pagination [aria-current] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--b);
  transition: border-color .2s, color .2s, background .2s;
}
.pl-pagination a:hover {
  border-color: var(--bm);
  color: rgba(255, 255, 255, .7);
}
.pl-pagination .current,
.pl-pagination [aria-current] {
  background: rgba(223, 4, 46, .1);
  border-color: rgba(223, 4, 46, .4);
  color: #fff;
}
.pl-pagination .deco {
  color: var(--muted);
  padding: 0 4px;
}

/* ── Collection filter: compact mobile toggle + collapsible pane ── */
/* Desktop: toggle hidden, pills show inline exactly as before. */
.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--FU);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg3);
  border: 1px solid var(--b);
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.filter-toggle svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.filter-toggle[aria-expanded="true"] {
  border-color: rgba(223, 4, 46, 0.4);
  background: rgba(223, 4, 46, 0.1);
}

@media (max-width: 768px) {
  /* Compact sticky bar: [Filters toggle] ......... [sort], pills drop below */
  .filter-toggle {
    display: inline-flex;
    order: 1;
  }
  .toolbar-right {
    order: 2;
  }
  .filter-pills {
    order: 3;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.28s ease;
  }
  /* Expanded pane: capped height + internal scroll */
  .filter-pills.open {
    max-height: 50vh;
    overflow-y: auto;
    padding: 6px 2px 8px;
    -webkit-overflow-scrolling: touch;
  }
}
