﻿/** Shopify CDN: Minification failed

Line 1834:10 Expected identifier but found whitespace
Line 1834:15 Unexpected ";"
Line 1972:13 Expected identifier but found whitespace
Line 1972:14 Unexpected "16px"
Line 3159:13 Expected identifier but found whitespace
Line 3159:14 Unexpected "var("
Line 4063:0 All "@import" rules must come first

**/
/* AVIATORE — combined stylesheet (extracted verbatim) */


/* ========================
   CSS VARIABLES — AVIATORE
======================== */
:root {
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D0D0D0;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #1A1A1A;
  --gold: #C9A84C;
  --gold-light: #E8C96D;
  --gold-dark: #A07830;
  --badge-purple: #3D1066;
  --badge-navy: #0A1F5C;
  --badge-lime: #52D400;
  --badge-mahogany: #6B1A1A;
  --badge-terracotta: #b8926a;
  --font-title: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
}

/* ========================
   PRODUCT PAGE — BELOW PRICE: bold + Space Grotesk
======================== */
/* Bullets */
.product-bullets li,
.product-bullets li span {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* Option labels (Color: / Size:) */
.option-label,
.option-label span {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* Complete Your Look heading + badge */
.complete-look__title,
.complete-look__badge,
.special-pairings__name,
.special-pairings__price,
.pairing-discount-badge {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* Payment label */
.prod-pay-label {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* Inline trust bar items */
.inline-trust-item,
.inline-trust-item span {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* Savings badge */
.savings-badge {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* ATC + Buy Now buttons */
.btn-atc,
.btn-buy-now {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}
/* Any inline text in product-info below price (catch-all) */
.product-info .product-info__divider ~ *,
.product-info .product-bullets ~ * {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

/* ========================
   RESET
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-title);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ========================
   ANNOUNCEMENT BAR
======================== */

/* ========================
   HEADER — floating squircle pill, zero-height wrapper
======================== */
.header {
  background: transparent;
  border: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  padding: 0;
  height: 0; /* wrapper takes no space — pill floats above */
  pointer-events: none;
  overflow: visible;
}
/* The pill itself — floats 10px from top */
.header__top {
  pointer-events: all;
  position: relative;
  top: 10px;
  background: linear-gradient(135deg, #B8B8B2 0%, #A8A8A2 100%);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  height: 48px;
  padding: 0 6px 0 16px;
  gap: 0;
  overflow: visible;
}

/* HOME ACTIVE — pill becomes frosted glass */
body.home-active .header__top {
  background: linear-gradient(135deg, #B8B8B2 0%, #A8A8A2 100%);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.home-active .header__logo,
body.home-active .header__logo span { color: var(--white); }
body.home-active .nav__link { color: var(--gray-700); }
body.home-active .nav__link:hover,
body.home-active .nav__link.active { color: var(--black); }
body.home-active .header__search {
  background: var(--gray-100);
  border-color: var(--gray-200);
  backdrop-filter: none;
}
body.home-active .header__search-prefix { color: var(--gray-500); }
body.home-active .header__search-icon { color: var(--gray-400); }
body.home-active .header__action-btn { color: var(--black); }
body.home-active .header__action-btn:hover { color: var(--black); background: rgba(255,255,255,0.9); }
body.home-active .header__waitlist-pill { background: #6B21A8; }

/* LOGO */
.header__logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 4px;
  white-space: nowrap;
}
.header__logo span { color: var(--white); }

/* DIVIDER */
.header__divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
  margin: 0 4px;
}
body.home-active .header__divider { background: rgba(255,255,255,0.2); }

/* NAV */
.header__nav {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 0;
  flex-shrink: 0;
}
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gray-700);
  padding: 0 10px;
  height: 48px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--black); }
.nav__link.active { color: var(--black); }
.nav__link-arrow {
  margin-left: 3px;
  font-size: 7px;
  transition: transform var(--transition);
}
.nav__item:hover .nav__link-arrow { transform: rotate(180deg); }
.header__waitlist-pill {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #7c3aed;
  padding: 7px 14px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.header__waitlist-pill:hover {
  background: #6d28d9;
  box-shadow: 0 0 16px 4px rgba(109,40,217,0.25);
  color: #fff;
}

/* SEARCH */
.header__search {
  margin-left: auto;
  flex-shrink: 0;
  width: 210px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: text;
  transition: border-color var(--transition), background var(--transition);
}
.header__search:hover { border-color: var(--gray-400); }
.header__search-prefix {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  pointer-events: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.header__search-rotating {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #6B21A8;
  position: relative;
  height: 15px;
  overflow: hidden;
  flex: 1;
  margin-left: 4px;
}
.header__search-rotating__item {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s, transform 0.4s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.header__search-rotating__item.active { opacity: 1; transform: translateY(0); }
.header__search-icon {
  flex-shrink: 0;
  color: var(--gray-400);
  margin-left: 6px;
  display: flex;
  align-items: center;
}

/* ACTIONS */
.header__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 6px;
}
.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--black);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.header__action-btn:hover {
  color: var(--black);
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.18);
  transform: scale(1.08);
}
.header__action-btn:active { transform: scale(0.95); }
.header__cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #ccff00;
  color: var(--black);
  font-size: 7px;
  font-weight: 700;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__action-btn--cart { position: relative; }

/* DROPDOWN — attaches to pill bottom */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 80;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  min-width: 520px;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav__dropdown-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border: none;
  border-radius: 14px;
  background: var(--gray-100);
  color: var(--black);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  text-align: left;
  overflow: hidden;
  min-height: 96px;
}
.nav__dropdown-item:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.nav__dropdown-item__img {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: var(--gray-200);
  transition: transform 0.18s ease;
}
.nav__dropdown-item:hover .nav__dropdown-item__img { transform: scale(1.04); }
.nav__dropdown-item__label {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.nav__dropdown-item__tag { display: none; }

/* ========================
   HERO SECTION — FULL BLEED
======================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  margin-top: 0;
  overflow: hidden;
  display: block;
}

/* COUNTDOWN TIMER */
.wl-countdown {
  margin-bottom: 20px;
  text-align: center;
  opacity: 0; transform: translateY(8px);
  animation: wlFadeUp 0.55s var(--ease) 0.35s forwards;
}
.wl-countdown-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 10px;
}
.wl-countdown-timer {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px;
}
.wl-cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 14px; min-width: 58px;
}
.wl-cd-num {
  font-family: var(--font-title); font-size: 32px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--white);
  transition: opacity 0.15s;
}
.wl-cd-unit {
  font-family: var(--font-mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px;
}
.wl-cd-sep {
  font-family: var(--font-title); font-size: 24px; font-weight: 700;
  color: #b8926a; margin-bottom: 14px; line-height: 1;
  animation: sepBlink 1s ease-in-out infinite;
}
@keyframes sepBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }


.wl-social-proof {
  margin: 20px 0 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 400px;
  text-align: left;
}
.wl-sp-quote {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.7); line-height: 1.7;
  font-style: italic; margin-bottom: 12px;
}
.wl-sp-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.wl-sp-avatars { display: flex; }
.wl-sp-stars { display: flex; align-items: center; gap: 7px; }
.wl-sp-label {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}
.wl-sp-label strong { color: var(--white); }


.hero__social-proof {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px;
}
.hero__sp-avatars { display: flex; }
.hero__sp-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 8px; font-weight: 700;
  color: rgba(255,255,255,0.85); margin-left: -7px;
}
.hero__sp-avatar:first-child { margin-left: 0; }
.hero__sp-divider {
  width: 1px; height: 22px; background: rgba(255,255,255,0.2);
}
.hero__sp-stars { display: flex; align-items: center; gap: 8px; }
.hero__sp-label {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.65); letter-spacing: 0.04em;
}
.hero__sp-label strong { color: var(--white); }


.hero__video-loop {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.35; pointer-events: none;
}

/* HERO SLIDER TRACK */
#heroTrack {
  transition: transform 0.85s cubic-bezier(0.76,0,0.24,1);
}

/* HERO DOTS */
.hero-dot {
  width: 4px;
  height: 28px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  display: block;
  transition: height 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.hero-dot--active {
  height: 52px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.45);
}

/* HERO SCARCITY STRIP */
.hero__scarcity-strip {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 8px 20px;
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: 0.06em;
  white-space: nowrap; z-index: 10;
  animation: scarcityPulse 3s ease-in-out infinite;
}
.hero__scarcity-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ccff00;
  box-shadow: 0 0 6px rgba(204,255,0,0.8);
  animation: dotBlink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}
@keyframes scarcityPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(204,255,0,0); }
  50%      { box-shadow: 0 0 12px 2px rgba(204,255,0,0.12); }
}



.hero__img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Subtle dark overlay so text is readable */



/* Content overlays image, pinned bottom-left */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 0 80px 80px;
  max-width: 680px;
}



.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #A8A8A2;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__subtitle {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 29px;
  border: 2px solid var(--white);
  border-radius: 12px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #C09ADB;
  border-color: #C09ADB;
  color: var(--white);
  box-shadow: 0 0 20px 6px rgba(192,154,219,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 29px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.02); }
}
.hero__badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: 700;
  z-index: 2;
}
.hero__floating-tag {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: rgba(0,0,0,0.82);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 12px 20px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}
.hero__floating-tag strong {
  display: block;
  font-size: 16px;
  font-family: var(--font-title);
  margin-top: 4px;
  color: var(--gold);
}
/* Vertical product label on image side */
.hero__side-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  z-index: 2;
}

/* ========================
   MARQUEE TICKER
======================== */
.marquee-section {
  background: var(--black);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-item__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-item__sep {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #b8926a;
  margin: 0 20px;
  letter-spacing: 0;
  font-weight: 700;
}

/* ========================
   SECTION GLOBALS
======================== */
.section {
  padding: 100px 80px;
}
.section--gray { background: var(--gray-100); }
.section--black { background: var(--black); color: var(--white); }
.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section__subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.6;
}
.section__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
}
.section--black .section__link {
  color: var(--white);
  border-color: var(--white);
}
.section__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ========================
   HORIZONTAL SCROLL CARDS
======================== */
/* SMALL CTA — sections */
.btn-sm-cta--lg {
  font-size: 13px !important;
  padding: 13px 28px !important;
  min-width: 160px;
  justify-content: center;
}
.btn-sm-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1.5px solid var(--black);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  animation: btnGlow 2.8s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
  50%       { box-shadow: 0 0 12px 3px rgba(124,58,237,0.35); }
}
.btn-sm-cta:hover {
  background: #7C3AED;
  border-color: #7C3AED;
  color: var(--white);
  animation: none;
  box-shadow: 0 0 16px 4px rgba(124,58,237,0.45);
}
.section--black .btn-sm-cta--lg {
  font-size: 13px !important;
  padding: 13px 28px !important;
  min-width: 160px;
  justify-content: center;
}
.btn-sm-cta {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  animation: btnGlowWhite 2.8s ease-in-out infinite;
}
@keyframes btnGlowWhite {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 12px 3px rgba(255,255,255,0.3); }
}
.section--black .btn-sm-cta:hover {
  background: #7C3AED;
  border-color: #7C3AED;
  color: var(--white);
  animation: none;
  box-shadow: 0 0 16px 4px rgba(124,58,237,0.5);
}

.scroll-section { padding: 32px 0 80px; }
.scroll-section .section__header { padding: 0 80px; }
.scroll-track-wrapper {
  overflow-x: auto;
  padding: 0 80px 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
  -webkit-overflow-scrolling: touch;
}
.scroll-track-wrapper::-webkit-scrollbar { height: 4px; }
.scroll-track-wrapper::-webkit-scrollbar-track { background: transparent; }
.scroll-track-wrapper::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* PRODUCT CARD */
.product-card {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  group: true;
}
.product-card__image-wrap {
  width: 100%;
  height: 400px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.product-card:hover .product-card__image-wrap { transform: scale(0.98); }
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card__image { transform: scale(1.05); }
.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--gray-100), var(--gray-200));
}
.product-card__icon { font-size: 56px; }
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
  border-radius: 8px;
}
.badge--purple { background: var(--badge-purple); }
.badge--navy { background: var(--badge-navy); }
.badge--lime { background: var(--badge-lime); color: var(--black); }
.badge--mahogany { background: var(--badge-mahogany); color: var(--white); }
.badge--gold { background: var(--gold); color: var(--black); }
.badge--terracotta { background: var(--badge-terracotta); color: var(--white); }
/* Semantic badge aliases */
.badge--bestseller { background: var(--badge-mahogany); color: var(--white); position: relative; overflow: hidden; animation: bestsellerPulse 2.5s ease-in-out infinite; }
.badge--bestseller::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent); animation: bestsellerShimmer 2.5s ease-in-out infinite; }
@keyframes bestsellerPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(107,26,26,0.4); } 50% { box-shadow: 0 0 0 4px rgba(107,26,26,0); } }
@keyframes bestsellerShimmer { 0% { left: -60%; } 60%,100% { left: 120%; } }
.badge--new-release { background: var(--black); color: var(--white); }
.badge--limited { background: #b8926a; color: var(--white); }
.badge--discount { background: var(--badge-navy); color: var(--white); }

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #9333ea;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition);
  font-weight: 700;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }

.product-card__name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--black);
  font-weight: 700;
}
.product-card__price-old {
  text-decoration: line-through;
  color: var(--gray-500);
  margin-right: 8px;
  font-weight: 400;
}
.product-card__reviews {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars {
  display: flex;
  gap: 1px;
}
.star {
  width: 10px;
  height: 10px;
  background: var(--black);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.star--half {
  background: var(--gray-300);
  position: relative;
}
.star--empty { background: var(--gray-300); }
.review-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
}

/* COLOR OPTIONS */
.product-card__colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.color-dot:hover, .color-dot.active {
  border-color: var(--black);
  transform: scale(1.2);
}


/* CARD SCARCITY PILL */
.card-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #3D1066;
  color: #E9D5FF;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
  margin-left: auto;
  display: flex;
  animation: scarcityCardPulse 2.4s ease-in-out infinite;
}
.card-scarcity__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A855F7;
  box-shadow: 0 0 6px rgba(168,85,247,0.8);
  animation: dotBlink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes scarcityCardPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,0); }
  50%      { box-shadow: 0 0 10px 2px rgba(168,85,247,0.25); }
}
/* ========================
   VIDEO + TEXT SECTION
======================== */
.media-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.media-section__video {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.video-play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.video-play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }
.video-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.video-bg-text {
  position: absolute;
  font-family: var(--font-title);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.media-section__content {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-section__content .section__eyebrow { color: var(--gold); }
.media-section__content .section__title { color: var(--white); margin-bottom: 24px; }
.media-section__content p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feature-icon span { font-size: 10px; color: var(--gold); font-weight: 700; }
.feature-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.feature-text strong { color: var(--white); }

/* ========================
   IMAGE + TEXT (BIG)
======================== */
.img-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.img-text-section.reverse { direction: rtl; }
.img-text-section.reverse > * { direction: ltr; }
.img-text-section__image {
  background: var(--gray-100);
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-text-section__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.big-product-icon { font-size: 140px; opacity: 0.6; }
.img-text-section__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

/* ========================
   PRODUCT PAGE
======================== */
.product-page { display: none; }
.product-page.active { display: block; }

.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 85vh;
}
.product-gallery {
  position: relative;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* VIDEO — main displayer, top, prominent */
.product-gallery__main {
  width: 100%;
  height: 52vh;
  min-height: 400px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
}
.product-main-icon { font-size: 130px; animation: float 6s ease-in-out infinite; }

/* VIDEO — now the main hero display */
.product-gallery__video {
  width: 100%;
  height: 54vh;
  min-height: 420px;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  order: -1; /* moves video to TOP */
}
.product-gallery__video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111110, #1e1e1c);
}
.product-gallery__video-play {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-gallery__video-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.product-gallery__video:hover .product-gallery__video-btn {
  background: #7C3AED;
  border-color: #7C3AED;
  transform: scale(1.1);
}
.product-gallery__video-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 2;
}
/* video badge */
.product-gallery__video-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* PRODUCT SHOT — secondary, below video, bigger to align with Free Shipping */
.product-gallery__main { order: 0; height: 62vh; min-height: 456px; }

/* THUMBNAILS — 2-col, 2.5x bigger = 180px each */
.product-gallery__thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.thumb {
  height: 234px;
  width: 100%;
  background: var(--gray-100);
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 83px;
  position: relative;
}
.thumb:nth-child(even) { border-right: none; }
.thumb:nth-last-child(-n+2) { border-bottom: none; }
.thumb.active { background: var(--gray-200); }
.thumb.active::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--black);
}
.thumb:hover { background: var(--gray-200); }

/* Mobile */
@media (max-width: 768px) {
  .product-gallery__video { height: 220px; min-height: 200px; }
  .product-gallery__main { height: 220px; min-height: 200px; }
  .thumb { height: 100px; font-size: 36px; }
}

.product-info {
  padding: 10px 56px 56px 48px;
  background: var(--white);
  overflow-y: auto;
  overflow-x: hidden;
}
.product-info__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-info__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.product-info__reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.product-info__price {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.product-info__price-compare {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-right: 8px;
}
.product-info__savings {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--badge-lime);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.product-info__divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}

/* COLOR SELECT */
.option-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.option-label span {
  color: var(--black);
  font-weight: 700;
  margin-left: 4px;
}
.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.color-option {
  position: relative;
  cursor: pointer;
}
.color-option input { display: none; }
.color-option__swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  outline: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
}
.color-option input:checked + .color-option__swatch,
.color-option__swatch:hover {
  outline-color: var(--black);
  outline-offset: 2px;
}
.color-option__tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 4px 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.color-option:hover .color-option__tooltip { opacity: 1; }

/* SIZE / MATERIAL */
.material-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.material-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.material-btn:hover { border-color: var(--black); color: var(--black); }
.material-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }
.material-btn.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ADD TO CART */
.product-info__atc {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-300);
  flex-shrink: 0;
}
.qty-btn {
  width: 44px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-mono);
}
.qty-btn:hover { background: var(--gray-100); color: var(--black); }
.qty-num {
  width: 44px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-atc {
  flex: 1;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 28px;
  height: 56px;
  border: 2px solid var(--black);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
}
.btn-atc:hover { background: #C09ADB; border-color: #C09ADB; color: var(--white); box-shadow: 0 0 20px 6px rgba(192,154,219,0.5); }
.btn-atc.added { background: #52D400; border-color: #52D400; color: var(--black); }

.btn-buy-now {
  width: 100%;
  background: var(--gray-900);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0 24px;
  border: none;
  height: 60px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.btn-buy-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.btn-buy-now:hover { background: #111; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ── ACCELERATED CHECKOUT (Shop Pay / Apple Pay / Google Pay) ── */
.av-accel-checkout { margin-top: 10px; }
.av-accel-checkout form { margin: 0; }
.av-accel-checkout .shopify-payment-button { display: flex; flex-direction: column; gap: 8px; }
.av-accel-checkout .shopify-payment-button__button {
  border-radius: 10px !important;
  min-height: 48px !important;
  font-family: var(--font-title) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em !important;
  width: 100% !important;
}
.av-accel-checkout .shopify-payment-button__button--unbranded {
  background: var(--black) !important;
  color: var(--white) !important;
}
.av-accel-checkout .shopify-payment-button__button--unbranded:hover {
  background: #333 !important;
}
.av-accel-checkout .shopify-payment-button__more-options { display: none !important; }

/* PAIRING DISCOUNT BADGE */
.pairing-discount-badge {
  display: inline-flex;
  align-items: center;
  background: #ccff00;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  animation: badgePop 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.6s both;
}
@keyframes badgePop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ── GLOBAL MICRO-INTERACTIONS ── */

/* Buttons — subtle lift + shadow */
.btn-atc, .btn-buy-now, .complete-look__cta, .wl-btn, .rs-submit-btn {
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.btn-atc:active, .complete-look__cta:active, .rs-submit-btn:active { transform: scale(0.97); }

/* Product cards — lift */
.product-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }

/* Color swatches — scale */
.color-option__swatch { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.color-option__swatch:hover { transform: scale(1.18); box-shadow: 0 0 0 3px rgba(124,58,237,0.25); }

/* Accordion headers — subtle left shift */
.accordion__header { transition: color 0.2s, padding-left 0.2s; }
.accordion__item:hover .accordion__header { padding-left: 4px; }

/* Nav links — underline slide */
.nav__link { position: relative; }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: #7C3AED;
  transition: width 0.25s ease;
}
.nav__link:hover::after { width: 100%; }

/* Thumbs — scale on hover */
.thumb { transition: background 0.18s, transform 0.18s; }
.thumb:hover { transform: scale(0.96); }

/* Marquee — pause on hover */
.marquee-track { transition: animation-play-state 0.2s; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Inline trust bar icon bounce */
.inline-trust-item:hover svg { animation: iconBounce 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes iconBounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-4px); }
  70%  { transform: translateY(1px); }
  100% { transform: translateY(0); }
}

/* Sketch wrap — subtle scale */
.product-sketch-wrap { transition: border-color 0.3s, transform 0.3s; }
.product-sketch-wrap:hover { transform: scale(1.005); }

/* Footer trust icons already animated */


/* STOCK URGENCY */
.stock-urgency {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; margin-bottom: 10px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: 8px;
  font-family: var(--font-mono); font-size: 10px;
  color: #B91C1C; letter-spacing: 0.04em;
}
.stock-urgency__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #EF4444;
  flex-shrink: 0; animation: dotBlink 1.2s ease-in-out infinite;
}
.stock-urgency strong { color: #991B1B; }

/* PAYMENT BADGES */
.payment-badges {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0 14px; flex-wrap: wrap;
}
.payment-badge-label {
  font-family: var(--font-mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500);
  white-space: nowrap;
}
.payment-badge-icons { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.pay-icon {
  width: 50px; height: 28px; border-radius: 4px;
  border: 1px solid var(--gray-200);
  opacity: 0.85; transition: opacity 0.2s;
}
.pay-icon:hover { opacity: 1; }

.inline-trust-bar {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--white);
}
.inline-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border-right: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: color 0.25s;
}
.inline-trust-item:last-child { border-right: none; }
.inline-trust-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 0;
  transition: border-color 0.25s;
  pointer-events: none;
}
.inline-trust-item:hover::after { border-color: #7C3AED; }
.inline-trust-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--black); transition: color 0.25s; }
.inline-trust-item:hover { color: #7C3AED; }
.inline-trust-item:hover svg { color: #7C3AED; }


  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 18px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 20px;
  justify-content: space-between;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  flex: 1;
  justify-content: center;
  line-height: 1.2;
}
.trust-badge + .trust-badge { border-left: 1px solid var(--gray-200); }
.trust-badge__icon { color: var(--black); font-size: 16px; flex-shrink: 0; }

/* PRODUCT SKETCH */
.product-sketch-wrap {
  margin: 20px 0 4px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 8px 8px;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.product-sketch-wrap:hover { border-color: #7C3AED; }
.product-sketch-svg { width: 100%; height: auto; display: block; }
.sketch-hover-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 0 2px;
  transition: color 0.3s;
}
.product-sketch-wrap:hover .sketch-hover-label { color: #7C3AED; }

/* ========================
   COCKPIT REVIEWS
======================== */
.cockpit-reviews { background: var(--gray-100); padding: 64px 0 0; border-top: 1px solid var(--gray-200); }
.cr-header { padding: 0 64px 40px; }
.cr-eyebrow { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #9333ea; margin-bottom: 14px; }
.cr-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #9333ea; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
.cr-title-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.cr-title { font-family: var(--font-title); font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); line-height: 1; }
.cr-rating-badge { background: #9333ea; color: var(--white); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; padding: 5px 12px; border-radius: 4px; flex-shrink: 0; }
.cr-subtitle { font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); line-height: 1.7; max-width: 680px; }
.cr-track-wrapper { overflow-x: auto; padding: 0 64px 32px; scrollbar-width: thin; scrollbar-color: var(--gray-300) transparent; -webkit-overflow-scrolling: touch; cursor: grab; }
.cr-track-wrapper:active { cursor: grabbing; }
.cr-track-wrapper::-webkit-scrollbar { height: 3px; }
.cr-track-wrapper::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.cr-track { display: flex; gap: 16px; width: max-content; }
.cr-card { width: 300px; flex-shrink: 0; background: var(--white); border: 1px solid var(--gray-200); display: flex; flex-direction: column; transition: border-color 0.2s, box-shadow 0.2s; overflow: hidden; }
.cr-card:hover { border-color: var(--gray-400); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.cr-card__media { width: 100%; height: 240px; position: relative; overflow: hidden; cursor: pointer; flex-shrink: 0; }
.cr-card__media-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg,#141412,#202020); display: flex; align-items: center; justify-content: center; }
.cr-card__play { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: background 0.2s; padding-left: 3px; }
.cr-card:hover .cr-card__play { background: #9333ea; border-color: #9333ea; color: var(--white); }
.cr-card__body { padding: 12px 14px; flex-shrink: 0; display: flex; flex-direction: column; gap: 5px; }
.cr-card__body--full { padding: 24px 20px; flex: 1; justify-content: center; }
.cr-card__meta-row { display: flex; align-items: center; justify-content: space-between; }
.cr-stars { color: var(--black); font-size: 10px; letter-spacing: 1px; }
.cr-date { font-family: var(--font-mono); font-size: 8px; color: var(--gray-500); }
.cr-card__name { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--black); letter-spacing: 0.08em; text-transform: uppercase; }
.cr-card__quote { font-family: var(--font-title); font-size: 12px; font-weight: 700; letter-spacing: -0.01em; color: var(--black); line-height: 1.3; }
.cr-card__text { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); line-height: 1.6; }
.cr-card__text--lg { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 4px; }
.cr-card--text-only { background: var(--gray-900); border-color: var(--gray-900); }
.cr-card--text-only .cr-stars { color: var(--white); }
.cr-card--text-only .cr-date { color: rgba(255,255,255,0.35); }
.cr-card--text-only .cr-card__name { color: var(--white); }
.cr-card--text-only .cr-card__quote { font-size: 15px; color: var(--white); }
.cr-footer-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 64px; border-top: 1px solid var(--gray-200); background: var(--gray-100); }
.cr-footer-left, .cr-footer-right { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500); }
.cr-footer-right { color: #9333ea; }

/* REVIEW SUBMISSION */
.review-submit { background: var(--white); padding: 24px 64px; border-top: 1px solid var(--gray-200); }
.rs-split { display: flex; flex-direction: column; gap: 10px; max-width: 640px; }
.rs-top-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rs-upload-mini {
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-100); border: 1.5px dashed var(--gray-300);
  border-radius: 8px; padding: 7px 14px; cursor: pointer;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--gray-500); letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s; white-space: nowrap;
}
.rs-upload-mini:hover { border-color: #9333ea; background: #faf5ff; color: #9333ea; }
.rs-upload-mini svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .review-submit { padding: 40px 24px; }
  .rs-split { grid-template-columns: 1fr; }
}
.rs-stars-row { display: flex; align-items: center; gap: 6px; }
.rs-star { font-size: 24px; color: var(--gray-300); cursor: pointer; transition: color 0.12s, transform 0.12s; line-height: 1; }
.rs-star:hover, .rs-star.active { color: var(--black); transform: scale(1.1); }
.rs-rating-label { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); letter-spacing: 0.06em; margin-left: 4px; }
.rs-row { display: flex; gap: 8px; }
.rs-input { flex: 1; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 8px; padding: 11px 14px; font-family: var(--font-mono); font-size: 12px; color: var(--black); outline: none; transition: border-color 0.2s; }
.rs-input:focus { border-color: #9333ea; }
.rs-input::placeholder { color: var(--gray-400); }
.rs-textarea { resize: none; width: 100%; flex: unset; border-radius: 8px; }
.rs-upload-area { border: 1.5px dashed var(--gray-300); border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: var(--gray-100); position: relative; }
.rs-upload-area:hover { border-color: #9333ea; background: #faf5ff; }
.rs-upload-icon { color: var(--gray-400); margin-bottom: 8px; display: flex; justify-content: center; }
.rs-upload-text { font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.rs-upload-sub { font-family: var(--font-mono); font-size: 9px; color: var(--gray-500); letter-spacing: 0.06em; }
.rs-upload-preview { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; justify-content: center; }
.rs-preview-item { width: 52px; height: 52px; border-radius: 6px; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 10px; font-family: var(--font-mono); color: var(--gray-500); border: 1px solid var(--gray-200); overflow: hidden; }
.rs-submit-btn { background: var(--black); color: var(--white); font-family: var(--font-title); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; padding: 14px 24px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: all 0.2s; border: 2px solid var(--black); }
.rs-submit-btn:hover { background: #9333ea; border-color: #9333ea; }
.rs-success { display: none; font-family: var(--font-mono); font-size: 11px; color: #9333ea; letter-spacing: 0.06em; text-align: center; padding: 10px; background: #faf5ff; border-radius: 8px; border: 1px solid #e9d5ff; }
.rs-success.show { display: block; }
@media (max-width: 768px) {
  .cr-header { padding: 0 24px 32px; }
  .cr-track-wrapper { padding: 0 24px 24px; }
  .cr-footer-row { padding: 14px 24px; flex-direction: column; gap: 8px; }
  .review-submit { padding: 40px 24px; }
  .review-submit__inner { grid-template-columns: 1fr; gap: 24px; }
  .rs-row { flex-direction: column; }
}

  margin-top: 16px;
}
.accordion {
  border-top: 1px solid var(--gray-200);
}
.accordion__item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--black);
  transition: color var(--transition);
}
.accordion__header:hover { color: #7C3AED; }
.accordion__arrow {
  transition: transform var(--transition);
  font-size: 18px;
  color: var(--gray-500);
  font-weight: 400;
}
.accordion__item.open .accordion__arrow { transform: rotate(45deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion__item.open .accordion__body { max-height: 400px; }
.accordion__content {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.8;
  padding-bottom: 16px;
}
.accordion__content ul {
  list-style: disc;
  padding-left: 16px;
}

/* ========================
   UPSELL — PAIR STYLE
======================== */
.upsell-section {
  background: var(--gray-100);
  padding: 64px 80px;
  border-top: 1px solid var(--gray-200);
}
.upsell-section__title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.upsell-section__subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.upsell-pair {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
  transition: border-color var(--transition);
}
.upsell-pair:hover { border-color: var(--black); }
.upsell-pair__check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
}
.upsell-pair__check.checked {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.upsell-pair__image {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.upsell-pair__info { flex: 1; }
.upsell-pair__name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.upsell-pair__desc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.5;
}
.upsell-pair__price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  flex-shrink: 0;
}
.upsell-pair__price .old { text-decoration: line-through; color: var(--gray-400); font-size: 11px; }
.upsell-total {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-700);
  text-align: right;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.upsell-total strong {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--black);
  margin-left: 8px;
}

/* ========================
   REVIEWS
======================== */
.reviews-section { padding: 80px; background: var(--white); }
.reviews-overview {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}
.reviews-score {
  flex-shrink: 0;
  text-align: center;
}
.reviews-score__num {
  font-family: var(--font-title);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.reviews-score__stars { margin: 8px 0; }
.reviews-score__stars .star { width: 16px; height: 16px; }
.reviews-score__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.reviews-bars { flex: 1; }
.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.reviews-bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-700);
  width: 40px;
  flex-shrink: 0;
  text-align: right;
}
.reviews-bar-track {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 0;
  overflow: hidden;
}
.reviews-bar-fill {
  height: 100%;
  background: var(--black);
  transition: width 1s ease-out;
}
.reviews-bar-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
  width: 24px;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--gray-400); }
.review-card__stars { margin-bottom: 12px; }
.review-card__stars .star { width: 12px; height: 12px; }
.review-card__text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
}
.review-card__date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
}
.review-card__verified {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--badge-lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ========================
   CART UPSELL DRAWER
======================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer__header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
}
.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: var(--gray-700);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.cart-close:hover { color: var(--black); border-color: var(--gray-300); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item__img {
  width: 72px;
  height: 72px;
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item__variant {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-item__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.cart-upsell {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 16px;
  margin: 20px 0;
}
.cart-upsell__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.cart-upsell__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-upsell__img {
  width: 56px;
  height: 56px;
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cart-upsell__info { flex: 1; }
.cart-upsell__name {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
}
.cart-upsell__price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-700);
}
.cart-upsell__add {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--black);
  transition: all var(--transition);
}
.cart-upsell__add:hover { background: var(--black); color: var(--white); }

.cart-drawer__footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cart-subtotal__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.cart-subtotal__value {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
}
.cart-free-shipping {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--badge-lime);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.cart-checkout-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 18px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  text-decoration: none;
  box-sizing: border-box;
}
.cart-checkout-btn:hover { background: #222; color: var(--white); text-decoration: none; }
.cart-checkout-btn:active { transform: scale(0.98); }

.cart-trust-strip {
  height: 18px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}
.cart-trust-item {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cart-trust-item--active {
  opacity: 1;
  transform: translateY(0);
}
.cart-trust-item svg { flex-shrink: 0; }

/* ========================
   POST-PURCHASE UPSELL
======================== */
.post-purchase {
  background: var(--gray-900);
  color: var(--white);
  padding: 64px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-purchase::before {
  content: 'THANK YOU';
  position: absolute;
  font-family: var(--font-title);
  font-size: 240px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.post-purchase__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-purchase__title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.post-purchase__sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}
.post-purchase__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.post-purchase__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  width: 240px;
  transition: all var(--transition);
  cursor: pointer;
}
.post-purchase__card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.post-purchase__card__icon { font-size: 40px; margin-bottom: 12px; }
.post-purchase__card__name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.post-purchase__card__price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}
.post-purchase__card__btn {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.post-purchase__card__btn:hover { background: var(--gold); color: var(--black); }

/* ========================
   WAITLIST PAGE — REBUILT
======================== */
:root { --terra: #b8926a; --ease: cubic-bezier(0.4,0,0.2,1); }
#page-waitlist { display: none; background: var(--black); }
#page-waitlist.active { display: block; }
#page-waitlist .wl-hero { min-height: 100dvh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
#page-waitlist .wl-hero__bg { position: absolute; inset: 0; }
#page-waitlist .wl-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(0.42); display: block; }
#page-waitlist .wl-hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at center, rgba(10,10,10,0.0) 0%, rgba(10,10,10,0.55) 55%, rgba(161,161,157,0.88) 100%), linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 40%); z-index: 1; }
#page-waitlist .wl-content { position: relative; z-index: 2; padding: 100px 28px 56px; width: 100%; max-width: 540px; text-align: center; display: flex; flex-direction: column; align-items: center; }
#page-waitlist .wl-eyebrow-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; opacity: 0; transform: translateY(10px); animation: wlFadeUp 0.55s var(--ease) 0.1s forwards; }
#page-waitlist .wl-eyebrow-tag { font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); background: rgba(184,146,106,0.12); border: 1px solid rgba(184,146,106,0.25); padding: 8px 16px; border-radius: 20px; }
#page-waitlist .wl-eyebrow-price { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); }
#page-waitlist .wl-title { font-family: var(--font-title); font-size: clamp(40px, 10vw, 72px); font-weight: 700; line-height: 1.0; letter-spacing: -0.035em; color: var(--white); margin-bottom: 16px; opacity: 0; transform: translateY(14px); animation: wlFadeUp 0.7s var(--ease) 0.2s forwards; }
#page-waitlist .wl-title em { font-style: normal; color: var(--terra); }
#page-waitlist .wl-sub { font-family: var(--font-mono); font-size: 12px; font-weight: 700; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 22px; max-width: 360px; text-align: center; opacity: 0; transform: translateY(10px); animation: wlFadeUp 0.6s var(--ease) 0.3s forwards; }
#page-waitlist .wl-scarcity { margin-bottom: 20px; opacity: 0; transform: translateY(8px); animation: wlFadeUp 0.55s var(--ease) 0.4s forwards; }
#page-waitlist .wl-scarcity-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
#page-waitlist .wl-scarcity-left { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
#page-waitlist .wl-scarcity-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
#page-waitlist .wl-scarcity-right { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }
#page-waitlist .wl-scarcity-track { height: 4px; background: rgba(255,255,255,0.07); border-radius: 20px; overflow: hidden; }
#page-waitlist .wl-scarcity-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--terra), #d4a882); border-radius: 20px; transition: width 1.4s cubic-bezier(0.4,0,0.2,1); }
#page-waitlist .wl-form-wrap { opacity: 0; transform: translateY(10px); animation: wlFadeUp 0.65s var(--ease) 0.5s forwards; }
#page-waitlist .wl-form-inner { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
#page-waitlist .wl-input { width: 100%; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 16px 18px; font-family: var(--font-mono); font-size: 13px; color: var(--white); outline: none; transition: border-color 0.22s, background 0.22s; -webkit-appearance: none; }
#page-waitlist .wl-input::placeholder { color: rgba(255,255,255,0.25); }
#page-waitlist .wl-input:focus { border-color: var(--terra); background: rgba(255,255,255,0.11); }
#page-waitlist .wl-btn { width: 100%; background: #ccff00; color: var(--black); font-family: var(--font-title); font-size: 15px; font-weight: 700; letter-spacing: -0.02em; padding: 17px 24px; border-radius: 12px; transition: all 0.22s var(--ease); display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 6px 28px rgba(204,255,0,0.2); }
#page-waitlist .wl-btn:hover { background: #d4ff26; transform: translateY(-1px); box-shadow: 0 10px 40px rgba(204,255,0,0.32); }
#page-waitlist .wl-btn:active { transform: scale(0.98); }
#page-waitlist .wl-btn-bottom { display: inline-flex; width: auto; padding: 16px 36px; }
#page-waitlist .wl-micro { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; text-align: center; }
#page-waitlist .wl-success { display: none; padding: 24px 20px; background: rgba(204,255,0,0.05); border: 1.5px solid rgba(204,255,0,0.18); border-radius: 14px; }
#page-waitlist .wl-success.show { display: block; }
#page-waitlist .wl-success-check { width: 48px; height: 48px; background: #ccff00; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--black); font-weight: 900; }
#page-waitlist .wl-success-title { font-family: var(--font-title); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 8px; text-align: center; }
#page-waitlist .wl-success-sub { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.42); line-height: 1.7; text-align: center; }
#page-waitlist .wl-proof-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; opacity: 0; transform: translateY(8px); animation: wlFadeUp 0.6s var(--ease) 0.62s forwards; }
#page-waitlist .wl-proof-avatars { display: flex; }
#page-waitlist .wl-avatar { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--black); background: linear-gradient(135deg,#444,#222); margin-left: -7px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 8px; font-weight: 700; color: var(--terra); flex-shrink: 0; }
#page-waitlist .wl-avatar:first-child { margin-left: 0; }
#page-waitlist .wl-proof-stars-row { display: flex; align-items: center; gap: 2px; margin-bottom: 2px; }
#page-waitlist .wl-proof-star { width: 9px; height: 9px; background: var(--terra); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); flex-shrink: 0; }
#page-waitlist .wl-proof-score { font-family: var(--font-title); font-size: 11px; font-weight: 700; color: var(--white); margin-left: 4px; }
#page-waitlist .wl-proof-label { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }
#page-waitlist .wl-stats { display: flex; margin-top: 24px; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; opacity: 0; transform: translateY(8px); animation: wlFadeUp 0.6s var(--ease) 0.72s forwards; }
#page-waitlist .wl-stat { flex: 1; padding: 14px 6px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.025); }
#page-waitlist .wl-stat:last-child { border-right: none; }
#page-waitlist .wl-stat-val { font-family: var(--font-title); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--white); line-height: 1; margin-bottom: 3px; }
#page-waitlist .wl-stat-val span { font-size: 13px; color: var(--terra); }
#page-waitlist .wl-stat-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
#page-waitlist .wl-live { position: fixed; top: 68px; right: 16px; background: rgba(10,10,10,0.92); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 7px 14px; display: none; align-items: center; gap: 7px; z-index: 45; backdrop-filter: blur(16px); white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
#page-waitlist.active .wl-live { display: flex; }
#page-waitlist .wl-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #52D400; animation: pulse 2s ease-in-out infinite; }
#page-waitlist .wl-live-text { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
#page-waitlist .wl-live-text strong { color: var(--white); }
#page-waitlist .wl-below { background: var(--black); }
#page-waitlist .wl-quote-block { padding: 40px 28px; border-top: 1px solid rgba(255,255,255,0.06); }
#page-waitlist .wl-quote-text { font-family: var(--font-title); font-size: 18px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.45; color: var(--white); margin-bottom: 20px; }
#page-waitlist .wl-quote-meta { display: flex; align-items: center; gap: 12px; }
#page-waitlist .wl-quote-avatar { width: 38px; height: 38px; border-radius: 50%; background: #3a2010; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--terra); flex-shrink: 0; }
#page-waitlist .wl-quote-name { font-family: var(--font-title); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 1px; }
#page-waitlist .wl-quote-detail { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
#page-waitlist .wl-quote-stars-wrap { display: flex; gap: 2px; margin-left: auto; flex-shrink: 0; }
#page-waitlist .wl-facts { display: flex; flex-direction: column; padding: 0 28px; border-top: 1px solid rgba(255,255,255,0.05); }
#page-waitlist .wl-fact { display: flex; align-items: flex-start; gap: 14px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
#page-waitlist .wl-fact:last-child { border-bottom: none; }
#page-waitlist .wl-fact-icon { width: 36px; height: 36px; background: rgba(184,146,106,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#page-waitlist .wl-fact-title { font-family: var(--font-title); font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 4px; }
#page-waitlist .wl-fact-desc { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.33); line-height: 1.6; }
#page-waitlist .wl-bottom-cta { padding: 44px 28px 80px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
#page-waitlist .wl-bottom-cta-line { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
#page-waitlist .wl-bottom-cta-title { font-family: var(--font-title); font-size: 30px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: var(--white); margin-bottom: 24px; }
#page-waitlist .wl-bottom-cta-title em { font-style: normal; color: var(--terra); }
@keyframes wlFadeUp { to { opacity: 1; transform: translateY(0); } }
@media (min-width: 640px) {
  #page-waitlist .wl-content { padding: 120px 60px 72px; max-width: 580px; text-align: center; align-items: center; }
  #page-waitlist .wl-form-inner { flex-direction: row; }
  #page-waitlist .wl-btn { width: auto; flex-shrink: 0; }
  #page-waitlist .wl-quote-block { padding: 48px 60px; }
  #page-waitlist .wl-facts { padding: 0 60px; flex-direction: row; }
  #page-waitlist .wl-fact { flex: 1; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.05); padding-right: 28px; }
  #page-waitlist .wl-fact:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
  #page-waitlist .wl-bottom-cta { padding: 56px 60px 100px; }
}

/* ========================
   WAITLIST SECTION
======================== */
.waitlist-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.waitlist-section .section__eyebrow { color: var(--gold); margin-bottom: 16px; }
.waitlist-section .section__title { color: var(--white); margin-bottom: 16px; }
.waitlist-section p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.3); }
.waitlist-input:focus { border-color: var(--gold); }
.waitlist-btn {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 29px;
  border: 2px solid var(--white);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.waitlist-btn:hover {
  background: #C09ADB;
  border-color: #C09ADB;
  color: var(--white);
  box-shadow: 0 0 20px 6px rgba(192,154,219,0.5);
}

.marquee-section--white { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.marquee-item--dark .marquee-item__text { color: var(--black); }
.marquee-sep--dark { color: var(--terra) !important; }


.expand-gallery-section {
  background: var(--gray-100);
  padding: 64px 80px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--gray-200);
}
.expand-gallery {
  display: flex;
  gap: 12px;
  height: 420px;
  max-width: 960px;
  width: 100%;
  align-items: stretch;
}
.eg-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex: 1;
  transition: flex 0.55s cubic-bezier(0.4,0,0.2,1);
  min-width: 0;
}
.eg-item--active { flex: 1; }
.eg-item:hover { flex: 4; }
.expand-gallery:hover .eg-item:not(:hover) { flex: 1; }

.eg-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.4s;
}
.eg-item:not(.eg-item--active):not(:hover) .eg-img { filter: brightness(0.55) saturate(0.7); }
.eg-img-placeholder {
  font-size: 80px;
  opacity: 0.35;
  transition: opacity 0.4s, font-size 0.4s;
  user-select: none;
}
.eg-item--active .eg-img-placeholder,
.eg-item:hover .eg-img-placeholder { opacity: 0.5; font-size: 100px; }

/* LABEL — bottom of expanded card */
.eg-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
  pointer-events: none;
}
.eg-item--active .eg-label,
.eg-item:hover .eg-label { opacity: 1; transform: translateY(0); }
.eg-label-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ccff00; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(204,255,0,0.6);
}
.eg-label-title {
  font-family: var(--font-title); font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em; line-height: 1.2;
}
.eg-label-sub {
  font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* EXPAND ICON — top right */
.eg-expand-icon { display:none !important; } .eg-expand-icon-DEAD {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.eg-item--active .eg-expand-icon,
.eg-item:hover .eg-expand-icon { display:none !important; } .eg-expand-icon-DEAD { opacity: 1; transform: scale(1); }
.eg-expand-icon:hover { background: rgba(255,255,255,0.25); }

/* JS-driven active state */
.eg-item.is-active { flex: 4 !important; }

@media (max-width: 768px) {
  .expand-gallery-section { padding: 40px 20px; }
  .expand-gallery { height: 280px; gap: 8px; }
  .eg-label-title { font-size: 12px; }
}


.faq-section {
  padding: 48px 0 24px;
  background: var(--gray-100);
}
.faq-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: center;
  margin-bottom: 10px;
}
.faq-title-line {
  width: 48px;
  height: 2px;
  background: #7C3AED;
  margin: 0 auto 28px;
  border-radius: 2px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  margin-bottom: 8px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: #7C3AED; box-shadow: 0 2px 12px rgba(124,58,237,0.08); }
.faq-item.open { border-color: #7C3AED; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
  gap: 16px;
  user-select: none;
}
.faq-icon {
  font-size: 18px;
  font-weight: 300;
  color: #7C3AED;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 20px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
}


.faq-section-full {
  background: var(--white);
  padding: 64px 80px;
  border-top: 1px solid var(--gray-200);
}
.faq-section-full .faq-title { text-align: center; }
.faq-section-full .faq-title-line { margin: 0 auto 32px; }
.faq-section-full .faq-list { max-width: 780px; margin: 0 auto; }
@media (max-width: 768px) { .faq-section-full { padding: 40px 24px; } }

.av-footer {
  background: #A8A8A2;
  color: var(--black);
  font-family: var(--font-mono);
}

/* TRUST BAR */
.av-footer__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.av-footer__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 20px;
  border-right: 1px solid rgba(0,0,0,0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  transition: color 0.3s, background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.av-footer__trust-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.06);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.av-footer__trust-item:hover::before { transform: scaleX(1); }
.av-footer__trust-item:hover { color: var(--black); }
.av-footer__trust-item:hover .av-footer__trust-icon { color: #7C3AED; transform: translateY(-3px); }
.av-footer__trust-item:last-child { border-right: none; }
.av-footer__trust-icon { color: rgba(0,0,0,0.5); transition: color 0.3s, transform 0.3s; }

/* MAIN GRID */
.av-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 2.6fr;
  gap: 0;
  padding: 56px 72px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.av-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 40px;
}
.av-footer__col:last-child { padding-right: 0; }
.av-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--black);
  margin-bottom: 14px;
}
.av-footer__col-line {
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.av-footer__col-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #7C3AED;
  transition: left 0.6s cubic-bezier(0.4,0,0.2,1);
}
.av-footer__col:hover .av-footer__col-line::after { left: 0; }
.av-footer__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s, letter-spacing 0.2s, padding-left 0.2s;
  display: block;
  position: relative;
}
.av-footer__link::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  color: #7C3AED;
  transition: opacity 0.2s, left 0.2s;
}
.av-footer__link:hover { color: var(--black); letter-spacing: 0.14em; padding-left: 14px; }
.av-footer__link:hover::before { opacity: 1; left: 0; }
.av-footer__link--accent { color: #7C3AED; }
.av-footer__link--accent:hover { color: #6D28D9; }

/* ANNOUNCE TEXT */
.av-footer__announce-text {
  font-size: 10px;
  color: rgba(0,0,0,0.5);
  line-height: 1.75;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.av-footer__email-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  position: relative;
  transition: border-color 0.3s;
}
.av-footer__email-wrap:focus-within { border-color: #7C3AED; }
.av-footer__email-input {
  background: none; border: none; outline: none;
  color: rgba(0,0,0,0.6);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
  padding: 10px 0; flex: 1;
}
.av-footer__email-input::placeholder { color: rgba(0,0,0,0.3); }
.av-footer__email-btn {
  background: none; border: none; color: rgba(0,0,0,0.4);
  cursor: pointer; padding: 8px 4px;
  transition: color 0.2s, transform 0.2s;
  display: flex; align-items: center;
}
.av-footer__email-btn:hover { color: #7C3AED; transform: translateX(2px); }
.av-footer__email-success {
  display: none; font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; color: #7C3AED; margin-top: 10px;
  animation: ftFadeIn 0.4s ease forwards;
}
.av-footer__email-success.show { display: block; }
.av-footer__social { display: none; }
.av-footer__social-inline { display: flex; align-items: center; gap: 5px; }
.av-footer__social-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.45);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.av-footer__social-btn::before {
  content: ''; position: absolute; inset: 0; background: #7C3AED;
  border-radius: 50%; transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.av-footer__social-btn:hover::before { transform: scale(1); }
.av-footer__social-btn:hover { color: var(--white); border-color: #7C3AED; }
.av-footer__social-btn svg { position: relative; z-index: 1; }
.av-footer__bottom .ppb {
  width: 44px; height: 28px; border-radius: 5px;
}

.av-footer__bottom {
  padding: 14px 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.av-footer__bottom-right {
  display: flex; align-items: center; gap: 16px;
}
.av-footer__legal-link {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(0,0,0,0.4); text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
}
.av-footer__legal-link:hover { color: var(--black); }
.av-footer__copy { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: rgba(0,0,0,0.45); text-transform: uppercase; }

/* FOOTER GRID */
.av-footer__main { grid-template-columns: 1.4fr 1fr 2.6fr; }

/* PRODUCT PAGE WAITLIST STRIP */
.product-waitlist-strip {
  background: var(--black);
  padding: 80px 80px;
  text-align: center;
}
.pws-center {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.pws-title {
  font-family: var(--font-title); font-size: clamp(42px,6vw,72px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.0; color: var(--white);
}
.pws-title em { font-style: normal; color: var(--terra); }
.pws-input-wrap { display: flex; gap: 0; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 12px; overflow: hidden; width: 100%; }
.pws-input {
  flex: 1; background: rgba(255,255,255,0.06); border: none; outline: none;
  padding: 16px 20px; font-family: var(--font-mono); font-size: 13px; color: var(--white);
}
.pws-input::placeholder { color: rgba(255,255,255,0.3); }
.pws-btn {
  background: #ccff00; color: var(--black);
  font-family: var(--font-title); font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em; padding: 16px 28px; border: none; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.pws-btn:hover { background: #d4ff26; }
.pws-success { display: none; font-family: var(--font-mono); font-size: 12px; color: #ccff00; letter-spacing: 0.06em; }
.pws-success.show { display: block; }
@media (max-width: 768px) {
  .product-waitlist-strip { padding: 48px 24px; }
  .pws-content { grid-template-columns: 1fr; gap: 32px; }
  .av-footer__bottom { padding: 14px 24px; flex-direction: column; gap: 12px; }
  .av-footer__main { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px 16px; }
}

/* Mobile */
@media (max-width: 768px) {
  .av-footer__trust { grid-template-columns: 1fr 1fr; }
  .av-footer__trust-item:nth-child(2) { border-right: none; }
  .av-footer__main { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px 16px; }
  .av-footer__col { padding-right: 0; }
  .av-footer__bottom { padding: 20px 24px; text-align: center; }
}


  background: var(--black);
  color: var(--white);
  padding: 64px 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand span { color: var(--white); /* all white — no gold accent */ }
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.footer__col-link:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }

/* ========================
   PAGE TOGGLE NAV
======================== */


.page-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  display: flex;
  gap: 0;
  z-index: 150;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  overflow: hidden;
}
.page-nav-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.page-nav-btn:last-child { border-right: none; }
.page-nav-btn.active { color: var(--gold); }
.page-nav-btn:hover { color: var(--white); }


@media (max-width: 768px) {
  .header__top { padding: 0 16px; height: 52px; }
  .header__logo { font-size: 16px; margin-right: 0; }
  .header__search { display: none; }
  .header__nav { display: none; }
  .header__mobile-menu-btn { display: flex; }
  .header__actions { margin-left: auto; gap: 12px; }
  .hero { min-height: 100svh; }
  .hero__content { padding: 0 24px 60px; min-height: 100svh; }
  .hero__title { font-size: 48px; }
  .section { padding: 60px 24px; }
  .scroll-section .section__header { padding: 0 24px; }
  .scroll-track-wrapper { padding: 0 24px 24px; }
  .product-card { width: 260px; }
  .media-section { grid-template-columns: 1fr; }
  .img-text-section { grid-template-columns: 1fr; }
  .img-text-section.reverse { direction: ltr; }
  .product-hero { grid-template-columns: 1fr; }
  .product-info { padding: 32px 24px; }
  .review-cards { grid-template-columns: 1fr; }
  .reviews-overview { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 48px 24px 24px; }
  .upsell-section { padding: 40px 24px; }
  .post-purchase { padding: 48px 24px; }
  .waitlist-section { padding: 60px 24px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-input { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
  .reviews-section { padding: 48px 24px; }
  .post-purchase__cards { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========================
   ANIMATIONS
======================== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-up {
  animation: slideUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.animate-up:nth-child(2) { animation-delay: 0.1s; }
.animate-up:nth-child(3) { animation-delay: 0.2s; }
.animate-up:nth-child(4) { animation-delay: 0.3s; }

/* ========================
   STICKY ADD TO CART BAR
======================== */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 80;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc__product { display: flex; align-items: center; gap: 16px; }
.sticky-atc__icon { font-size: 32px; }
.sticky-atc__name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
}
.sticky-atc__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-700);
}
.sticky-atc__btn {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--black);
  transition: all var(--transition);
  flex-shrink: 0;
}
.sticky-atc__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* PRODUCT BULLETS */
.product-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}
.product-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.pb-icon {
  color: #9333ea;
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1.5;
  font-style: normal;
}


/* ── HERO SLIDESHOW ─────────────────────────────────────────────────── */







/* ════════════════════════════════════════════════════════════
   HERO SLIDER — single source of truth
   ════════════════════════════════════════════════════════════ */

/* Clipping container — hides slide 2 off right */
.hero__image-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* 200% wide flex row — translateX(-50%) shows slide 2 */
.hero__slide-track {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  flex-direction: row;
  width: 200%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

/* Each slide = half of 200% = 100vw */
.hero__slide {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Real photos when added */
.hero__slide img.hero__img-real {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Emoji placeholder icon — sits inside slide, not covering */
.hero__visual-icon {
  position: relative;
  font-size: 160px;
  line-height: 1;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
}
@keyframes float {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(2deg); }
}

/* Dots — 2 vertical pill bars, right edge, centred */
.hero__slide-dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  z-index: 30;
}
.hero__dot {
  width: 4px;
  height: 28px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 0;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.25s ease;
  position: relative;
}
/* Expand hit area without changing visual */
.hero__dot::after {
  content: '';
  position: absolute;
  inset: -12px;
}
.hero__dot--active {
  height: 52px;
  background: #ffffff;
}
.hero__dot:hover:not(.hero__dot--active) {
  background: rgba(255,255,255,0.65);
}

/* ════════════════════════════════════════════════════════════ */



/* ──────────────────────────────────────────────── */


/* SAVINGS BADGE */
.savings-badge {
  display: inline-flex;
  align-items: center;
  background: #ccff00;
  color: #0A0A0A;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  white-space: nowrap;
  line-height: 1;
  border-radius: 8px;
}

/* COMPLETE YOUR LOOK — upsell above ATC */
.complete-look {
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
  overflow: hidden;
}
.complete-look__header {
  background: var(--black);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* SPECIAL PAIRINGS — compact right-aligned above ATC */
.special-pairings {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 16px;
  gap: 8px;
}
.special-pairings__header {
  display: flex;
  justify-content: flex-end;
}
.special-pairings__items {
  width: 100%;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.special-pairings__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.special-pairings__item:last-child { border-bottom: none; }
.special-pairings__item:hover { background: var(--gray-100); }
.special-pairings__img {
  width: 40px; height: 40px;
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.special-pairings__info { flex: 1; }
.special-pairings__name {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
}
.special-pairings__price {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  margin-top: 2px;
}
.complete-look__badge {
  background: #ccff00;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  flex-shrink: 0;
  border-radius: 8px;
  white-space: nowrap;
}
.complete-look__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.complete-look__options {
  display: flex;
  flex-direction: column;
}
.complete-look__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.complete-look__item:last-child { border-bottom: none; }
.complete-look__item:hover { background: var(--gray-100); }
.complete-look__img {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.complete-look__info { flex: 1; }
.complete-look__name {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.complete-look__desc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.complete-look__price {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-top: 4px;
}
.complete-look__price-old {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 400;
  margin-left: 4px;
}
.complete-look__cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 1px solid var(--black);
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition);
}
.complete-look__cta:hover {
  background: #ccff00;
  border-color: #ccff00;
  color: var(--black);
}




/* ──────────────────────────────────────────────── */

/* WALLET ANIMATION */
.wallet-embed { font-family: 'Space Mono', monospace; margin-top: 96px; transform: translateX(35%); }




/* ── WALLET OUTER ── */
.wallet-outer{position:relative;width:160px;cursor:pointer}

/* ── LEATHER CASING ── */
.casing{
  position:relative;
  width:160px;height:220px;
  border-radius:11px 11px 7px 7px;
  overflow:visible;

  /* dark espresso distressed leather — reference image exact */
  background:
    radial-gradient(ellipse 50% 40% at 28% 18%, rgba(160,90,30,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 72% 75%, rgba(20,6,0,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 60% 45%, rgba(100,45,5,0.15) 0%, transparent 50%),
    linear-gradient(165deg, #5C3010 0%, #4A2208 30%, #3D1A04 55%, #4E2710 80%, #3A1602 100%);

  box-shadow:
    inset 0 2px 0 rgba(200,130,50,0.12),
    inset 0 -3px 6px rgba(10,2,0,0.5),
    inset 3px 0 8px rgba(10,2,0,0.2),
    inset -3px 0 8px rgba(10,2,0,0.2),
    0 10px 40px rgba(20,5,0,0.45),
    0 3px 10px rgba(20,5,0,0.3);
}

/* SVG saddle stitch overlay */
.casing::before{
  content:'';
  position:absolute;inset:0;
  border-radius:11px 11px 7px 7px;
  /* dashed border simulating saddle stitching */
  outline: none;
  box-shadow: none;
  z-index:15;pointer-events:none;
}
/* GOLDEN SADDLE STITCH — entire body border */
.stitch-border{
  position:absolute;inset:6px;
  border-radius:8px 8px 5px 5px;
  border:1.5px dashed #C89840;
  z-index:26;pointer-events:none;
  box-shadow:
    0 0 0 0.5px rgba(200,150,60,0.15),
    inset 0 0 0 0.5px rgba(200,150,60,0.1);
}

/* ── CARD VIEWPORT ── */
.card-viewport{
  position:absolute;left:12px;right:12px;
  bottom:14px;height:206px;
  overflow:visible;z-index:2;
}

/* ── CARDS — matte black ── */
.card{
  position:absolute;left:0;right:0;height:196px;
  border-radius:6px;bottom:0;
  background:#0F0F0F;
  overflow:visible;
  transition:transform .55s cubic-bezier(0.25,1,0.5,1);
  will-change:transform;
  backface-visibility:hidden;
  box-shadow:0 -1px 0 rgba(255,255,255,0.06),0 2px 4px rgba(0,0,0,0.5);
}
.c4{
  background:linear-gradient(160deg,#141414,#0a0a0a);
  z-index:5;
}
.c3{
  background:linear-gradient(160deg,#161616,#0c0c0c);
  z-index:6;
  box-shadow:0 -1px 0 rgba(255,255,255,0.05),0 2px 4px rgba(0,0,0,0.5);
}
.c2{
  background:linear-gradient(160deg,#181818,#0e0e0e);
  z-index:7;
  box-shadow:0 -1px 0 rgba(255,255,255,0.08),0 2px 4px rgba(0,0,0,0.5);
}
.c1{
  background:linear-gradient(160deg,#1a1a1a,#101010);
  z-index:8;
  box-shadow:0 -1px 0 rgba(255,255,255,0.1),0 2px 4px rgba(0,0,0,0.5);
}

/* card chip — gold sim */
.card-chip{
  position:absolute;top:13px;left:10px;
  width:24px;height:17px;border-radius:3px;
  background:linear-gradient(135deg,rgba(255,210,80,0.22),rgba(200,160,40,0.18));
  border:1px solid rgba(255,200,60,0.3);
}
.card-chip::before{
  content:'';position:absolute;left:7px;top:4px;right:4px;bottom:4px;
  border-left:1px solid rgba(255,210,60,0.2);
}

/* card mag stripe */
.card-stripe{
  position:absolute;bottom:18px;left:8px;right:8px;height:20px;
  background:rgba(255,255,255,0.04);border-radius:2px;
}

/* AVIATORE — top edge of card, maximum visibility on eject */
.card-name{
  position:absolute;
  top:2px;left:0;right:6px;
  font-family:'Space Mono',monospace;
  font-size:7.5px;
  font-weight:700;
  color:rgba(255,255,255,0.95);
  opacity:0;
  letter-spacing:0.2em;
  text-transform:uppercase;
  text-align:right;
  transition:opacity 0.5s ease;
  will-change:opacity;
  line-height:1;
  backface-visibility:hidden;
}
.card.ejected .card-name { opacity:1; }
/* card number line */
.card-num{
  position:absolute;bottom:44px;left:10px;
  font-family:'Space Mono',monospace;
  font-size:8px;font-weight:700;
  color:rgba(255,255,255,0.18);letter-spacing:.12em;
  text-transform:uppercase;
}

/* ── LEATHER OVERLAY ON CASING FACE ── */
.casing-face{
  position:absolute;inset:0;
  border-radius:11px 11px 7px 7px;
  z-index:20;pointer-events:none;
  /* leather sheen */
  background:linear-gradient(135deg,rgba(255,200,120,0.06) 0%,transparent 50%,rgba(0,0,0,0.12) 100%);
  border:1.5px solid rgba(120,60,15,0.6);
}

/* ── ELASTIC STRAP — one continuous band with gold vertical stitches ── */
.elastic-strap{
  position:absolute;
  left:-6px;right:-6px;
  top:82px;
  height:44px;
  z-index:27;
  pointer-events:none;
  /* dark brown grosgrain horizontal ribs */
  background:repeating-linear-gradient(
    180deg,
    #3C2010 0px,  #3C2010 1px,
    #4A2A14 1px,  #4A2A14 3.5px,
    #382010 3.5px,#382010 5px,
    #4E2E18 5px,  #4E2E18 7.5px,
    #3C2010 7.5px,#3C2010 9px
  );
  border-top:1.5px solid #251208;
  border-bottom:1.5px solid #251208;
  box-shadow:
    inset 0 1px 0 rgba(120,70,25,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    0 2px 5px rgba(0,0,0,0.3);
}
/* GOLDEN vertical stitches on both side edges */
.elastic-strap::before,
.elastic-strap::after{
  content:'';
  position:absolute;
  top:-5px;bottom:-5px;
  width:8px;
  background:repeating-linear-gradient(
    180deg,
    #2A1408 0px,   #2A1408 3px,
    transparent    3px,   transparent 5px,
    #2A1408 5px,   #2A1408 8px,
    transparent    8px,   transparent 10px
  );
  z-index:2;
}
.elastic-strap::before{ left:4px; }
.elastic-strap::after{  right:4px; }

/* ── EMBOSSED LEATHER PATCH (CENTER) ── */
.leather-patch{
  position:absolute;
  left:14px;right:14px;
  top:82px;
  height:44px;
  z-index:29;pointer-events:none;
  background:linear-gradient(160deg,#6B3C14,#5A3010,#4E2808);
  border-radius:3px;
  border:1px solid rgba(120,70,20,0.6);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,200,100,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
}
.leather-patch::before{
  content:'';
  position:absolute;inset:4px;
  border-radius:2px;
  border:1.5px dashed rgba(220,165,80,0.75);
}
.patch-text-main{
  font-family:'Space Mono',monospace;
  font-size:9.5px;font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  position:relative;z-index:1;
  /* wide gradient: dark | ramp up | blazing peak | ramp down | dark */
  background:linear-gradient(
    90deg,
    #2A1408 0%,
    #2A1408 40%,
    #5C320E 46%,
    #B07828 50%,
    #F5C870 53%,
    #FFF8DC 55%,
    #F5C870 57%,
    #B07828 60%,
    #5C320E 64%,
    #2A1408 70%,
    #2A1408 100%
  );
  background-size:600% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:patchReveal 2.4s linear infinite;
}
.patch-text-sub{
  font-family:'Space Mono',monospace;
  font-size:6.5px;font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  position:relative;z-index:1;
  background:linear-gradient(
    90deg,
    #2A1408 0%,
    #2A1408 40%,
    #5C320E 46%,
    #A06B20 50%,
    #E8B050 53%,
    #FDF0C0 55%,
    #E8B050 57%,
    #A06B20 60%,
    #5C320E 64%,
    #2A1408 70%,
    #2A1408 100%
  );
  background-size:600% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:patchReveal 2.4s linear infinite;
}
@keyframes patchReveal{
  0%   { background-position: 200% center; }
  100% { background-position: -10% center; }
}

/* CASH EDGES visible behind elastic */
.cash-edge{
  position:absolute;
  left:5px;right:5px;
  z-index:21;pointer-events:none;
}
.cash-top{ top:68px; }
.cash-bottom{ top:140px; }
.cash-strip{
  height:6px;
  background:linear-gradient(90deg,
    #D4C9A0 0%,
    #E8DDB8 20%,
    #D0C598 40%,
    #E2D8B2 70%,
    #C8BC90 100%
  );
  border-radius:1px;
  opacity:0.7;
}
.cash-strip+.cash-strip{
  margin-top:2px;
  opacity:0.45;
}

/* ── LEATHER COVERS — mask card area above/below patch ── */
.leather-cover{
  position:absolute;left:0;right:0;z-index:23;pointer-events:none;
  background:
    radial-gradient(ellipse 120% 80% at 40% 50%, rgba(180,120,50,0.12) 0%, transparent 70%),
    linear-gradient(165deg,#5C3010 0%,#4A2208 35%,#3D1A04 60%,#4E2710 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,200,120,0.18),
    inset 0 -1px 2px rgba(30,10,0,0.25);
}
/* top cover: from top of casing to top elastic */
.leather-cover--top{
  top:0;height:90px;
  border-radius:11px 11px 0 0;
}
/* bottom cover: from bottom elastic to bottom bar */
.leather-cover--bottom{
  top:112px;bottom:18px;
  border-radius:0;
}


.bottom-bar{
  position:absolute;bottom:0;left:0;right:0;height:18px;
  background:linear-gradient(180deg,#4A2208 0%,#2E1204 100%);
  border-radius:0 0 8px 8px;
  border-top:1px solid rgba(10,3,0,0.5);
  z-index:25;
  box-shadow:inset 0 1px 0 rgba(255,180,80,0.12);
}
.bottom-bar::after{ content:none; }

/* ── LEVER (aluminium pulling clip) ── */
.lever-mount{
  position:absolute;bottom:-3px;left:12px;
  width:54px;height:12px;z-index:30;
}
.lever-weld{
  position:absolute;right:-3px;top:50%;margin-top:-5px;
  width:10px;height:10px;border-radius:50%;
  background:#111;
  border:1.5px solid #333;z-index:32;
}
.lever{
  position:absolute;left:0;top:0;width:54px;height:12px;
  transform-origin:100% 50%;
  transform:rotate(0deg);
  transition:transform .28s cubic-bezier(0.34,1.56,0.64,1);
  z-index:31;
}
.lever.pulled{transform:rotate(-90deg)}
.lever-body{
  position:absolute;inset:0;
  background:linear-gradient(180deg,#1a1a1a 0%,#0a0a0a 100%);
  border-radius:3px 5px 5px 3px;
  border:1px solid #333;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.08);
}
.lever-body::before{
  content:'';position:absolute;left:6px;right:14px;top:50%;
  margin-top:-1px;height:2px;
  background:rgba(255,255,255,0.12);border-radius:1px;
}
.lever-tip{
  position:absolute;right:-2px;top:50%;margin-top:-4px;
  width:8px;height:8px;border-radius:50%;
  background:#222;border:1px solid #444;
}

/* ── HINT ── */
.hint{
  font-family:'Space Mono',monospace;
  font-size:10px;color:#888;
  margin-top:1.8rem;text-align:center;
  letter-spacing:0.06em;
  min-height:14px;
  transition:opacity 0.2s ease;
}
.hint b{color:#3a3a3a;font-weight:700}


/* ──────────────────────────────────────────────── */


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');
.av-hover-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: #2C2C2A;
  margin-top: 96px;
  align-self: flex-start;
  margin-left: -53px;
  transition: opacity 0.35s ease;
}
.wallet-embed:hover .av-hover-label {
  opacity: 0;
  pointer-events: none;
}


/* ──────────────────────────────────────────────── */


/* ── TRACK & TRACE ──────────────────────────────────────── */
.tt-section {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.tt-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.tt-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg,#7C3AED,#5B21B6);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tt-title {
  font-family: var(--font-title); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black); margin-bottom: 4px;
}
.tt-sub {
  font-family: var(--font-mono); font-size: 11px; color: var(--gray-500);
  line-height: 1.6;
}

.tt-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 20px; }
.tt-input-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 180px; }
.tt-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600);
}
.tt-input {
  font-family: var(--font-mono); font-size: 12px; padding: 12px 14px;
  border: 1.5px solid var(--gray-300); border-radius: 8px;
  background: var(--white); color: var(--black); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tt-input:focus { border-color: #7C3AED; box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.tt-input::placeholder { color: var(--gray-400); }
.tt-input.tt-err { border-color: #EF4444; }
.tt-btn {
  background: var(--black); color: var(--white);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 24px; border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.tt-btn:hover { background: #7C3AED; box-shadow: 0 4px 16px rgba(124,58,237,0.25); }
.tt-btn.loading { opacity: 0.7; pointer-events: none; }

/* RESULT */
.tt-result {
  border-top: 1px solid var(--gray-200); padding-top: 24px;
  animation: ttFadeIn 0.35s ease;
}
@keyframes ttFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.tt-result-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.tt-result-order {
  font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--black);
}
.tt-result-badge {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(124,58,237,0.1); color: #7C3AED;
}
.tt-result-eta {
  font-family: var(--font-mono); font-size: 11px; color: var(--gray-600);
  margin-bottom: 24px;
}
.tt-result-eta strong { color: var(--black); }

/* TIMELINE */
.tt-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.tt-step {
  display: flex; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-100); align-items: flex-start;
}
.tt-step:last-child { border-bottom: none; }
.tt-step-left {
  display: flex; flex-direction: column; align-items: center; gap: 0; width: 20px; flex-shrink: 0;
}
.tt-step-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gray-300); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-300);
  flex-shrink: 0;
}
.tt-step-dot--done { background: #7C3AED; box-shadow: 0 0 0 2px rgba(124,58,237,0.25); }
.tt-step-dot--current {
  background: #ccff00; box-shadow: 0 0 0 3px rgba(204,255,0,0.3);
  animation: ttPulse 1.5s ease-in-out infinite;
}
@keyframes ttPulse { 0%,100%{box-shadow:0 0 0 3px rgba(204,255,0,0.3)} 50%{box-shadow:0 0 0 6px rgba(204,255,0,0.1)} }
.tt-step-line { width: 2px; flex: 1; min-height: 20px; background: var(--gray-200); margin: 3px 0; }
.tt-step-line--done { background: #7C3AED; }
.tt-step-body { flex: 1; padding-bottom: 4px; }
.tt-step-title {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--black); margin-bottom: 2px;
}
.tt-step-title--muted { color: var(--gray-400); }
.tt-step-time { font-family: var(--font-mono); font-size: 9px; color: var(--gray-500); }
.tt-step-loc { font-family: var(--font-mono); font-size: 10px; color: var(--gray-600); margin-top: 2px; }

.tt-dhl-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; color: #7C3AED;
  cursor: pointer; letter-spacing: 0.04em;
}
.tt-dhl-link:hover { text-decoration: underline; }

.tt-error {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #FEF2F2;
  border: 1px solid #FECACA; border-radius: 8px;
  font-family: var(--font-mono); font-size: 11px; color: #991B1B;
}


/* ──────────────────────────────────────────────── */


.inner-page { background: var(--white); min-height: 100vh; }
.inner-page__hero {
  padding: 120px 80px 72px;
  min-height: 280px;
  display: flex; align-items: flex-end;
}
.inner-page__hero-content { max-width: 640px; }
.inner-page__eyebrow {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #b8926a; margin-bottom: 16px;
}
.inner-page__title {
  font-family: var(--font-title); font-size: clamp(36px,5vw,64px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.0;
  color: var(--white);
}
.inner-page__title em { font-style: normal; color: #C9A84C; }
.inner-page__body { max-width: 860px; margin: 0 auto; padding: 64px 40px 96px; }
.inner-page__two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.inner-page__section { margin-bottom: 48px; }
.inner-page__h2 {
  font-family: var(--font-title); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--gray-200);
}
.inner-page__p {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--gray-700);
  line-height: 1.85; margin-bottom: 14px;
}
.inner-page__meta {
  font-family: var(--font-mono); font-size: 10px; color: var(--gray-500);
  letter-spacing: 0.06em; margin-bottom: 24px;
}
/* Contact details */
.inner-page__contact-detail {
  display: flex; gap: 16px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
}
.inner-page__contact-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500);
  min-width: 80px;
}
.inner-page__contact-val {
  font-family: var(--font-mono); font-size: 12px; color: var(--black); font-weight: 700;
}
/* Form */
.inner-page__form { display: flex; flex-direction: column; gap: 10px; }
.inner-page__input {
  font-family: var(--font-mono); font-size: 12px; padding: 12px 16px;
  border: 1.5px solid var(--gray-300); border-radius: 8px;
  background: var(--white); color: var(--black); outline: none;
  transition: border-color 0.2s;
}
.inner-page__input:focus { border-color: #7C3AED; }
.inner-page__input::placeholder { color: var(--gray-400); }
.inner-page__select { cursor: pointer; }
.inner-page__textarea { resize: vertical; min-height: 120px; }
/* Table */
.inner-page__table { border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; }
.inner-page__table-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; border-bottom: 1px solid var(--gray-200); padding: 14px 20px;
  font-family: var(--font-mono); font-size: 11px; color: var(--black);
}
.inner-page__table-row:last-child { border-bottom: none; }
.inner-page__table-row--head {
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
/* Steps */
.inner-page__steps { display: flex; flex-direction: column; gap: 20px; }
.inner-page__step {
  display: flex; gap: 20px; align-items: flex-start;
  font-family: var(--font-mono); font-size: 12px; color: var(--gray-700); line-height: 1.7;
}
.inner-page__step-num {
  font-family: var(--font-title); font-size: 28px; font-weight: 700;
  color: #7C3AED; line-height: 1; flex-shrink: 0; min-width: 36px;
}
@media (max-width: 768px) {
  .inner-page__hero { padding: 100px 24px 48px; }
  .inner-page__body { padding: 40px 24px 64px; }
  .inner-page__two-col { grid-template-columns: 1fr; gap: 32px; }
  .inner-page__table-row { grid-template-columns: 1fr; gap: 4px; }
}


/* ──────────────────────────────────────────────── */


/* ── CHECKOUT — AVIATORE PREMIUM REDESIGN ─────────────────────── */

/* Layout */
.chk-layout {
  display:grid; grid-template-columns:1fr 420px; min-height:100vh;
}
.chk-left {
  padding:52px 60px 100px;
  border-right:1px solid rgba(0,0,0,0.07);
  max-width:640px; margin:0 auto; width:100%;
  box-sizing:border-box;
}
.chk-right {
  background:#F7F6F3;
  padding:52px 40px 60px;
  border-left:1px solid rgba(0,0,0,0.06);
}
.chk-right-inner { position:sticky; top:80px; }
.chk-right-h {
  font-family:var(--font-title); font-size:13px; font-weight:700;
  color:var(--black); margin-bottom:20px; letter-spacing:0.06em;
  text-transform:uppercase;
}

/* Logo & Breadcrumb */
.chk-logo {
  font-family:var(--font-title); font-size:22px; font-weight:700;
  letter-spacing:-0.01em; color:var(--black);
  margin-top:28px; margin-bottom:28px;
  display:block; text-transform:uppercase;
}
.chk-crumb {
  display:flex; align-items:center; gap:6px; margin-bottom:36px;
  font-family:var(--font-mono); font-size:9px; letter-spacing:0.08em;
  text-transform:uppercase;
}
.chk-crumb-link { color:var(--gold); cursor:pointer; }
.chk-crumb-link:hover { text-decoration:underline; }
.chk-crumb-active { color:var(--black); font-weight:700; }
.chk-crumb-sep { color:var(--gray-400); }

/* Section headers */
.chk-h2 {
  font-family:var(--font-mono); font-size:9px; font-weight:700;
  color:var(--gray-500); margin-bottom:14px; letter-spacing:0.18em;
  text-transform:uppercase;
}
.chk-section {
  margin-bottom:28px; padding-bottom:28px;
  border-bottom:1px solid rgba(0,0,0,0.07);
}
.chk-section-hdr { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.chk-link { font-family:var(--font-mono); font-size:9px; color:var(--gold); cursor:pointer; letter-spacing:0.1em; text-transform:uppercase; }
.chk-link:hover { color:var(--gold-dark); }

/* Inputs — elevated floating-label style */
.chk-inp {
  width:100%; font-family:var(--font-title); font-size:13px;
  padding:13px 16px; border:1.5px solid var(--gray-200);
  border-radius:10px; background:var(--white); color:var(--black);
  outline:none; transition:border-color .2s, box-shadow .2s;
  margin-bottom:8px; box-sizing:border-box;
}
.chk-inp:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,168,76,.12);
}
.chk-inp::placeholder { color:var(--gray-400); font-family:var(--font-title); }
.chk-inp.err { border-color:#EF4444; }
.chk-sel {
  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='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center;
}
.chk-row { display:flex; gap:8px; }
.chk-check {
  display:flex; align-items:flex-start; gap:9px;
  font-family:var(--font-title); font-size:12px; color:var(--gray-600);
  line-height:1.5; cursor:pointer; margin-bottom:6px;
}
.chk-check input { accent-color:var(--gold); margin-top:3px; flex-shrink:0; }

/* Shipping options — premium pill style */
.chk-ship {
  display:flex; align-items:flex-start; gap:12px;
  padding:14px 16px; border:1.5px solid var(--gray-200);
  border-radius:12px; cursor:pointer; margin-bottom:8px;
  transition:border-color .2s, background .2s, box-shadow .2s;
}
.chk-ship:has(input:checked) {
  border-color:var(--gold);
  background:rgba(201,168,76,.04);
  box-shadow:0 0 0 3px rgba(201,168,76,.08);
}
.chk-ship input { accent-color:var(--gold); margin-top:3px; flex-shrink:0; }
.chk-ship-body { display:flex; justify-content:space-between; align-items:flex-start; flex:1; gap:8px; }
.chk-ship-name { font-family:var(--font-title); font-size:13px; font-weight:700; color:var(--black); }
.chk-ship-sub { font-family:var(--font-mono); font-size:9px; color:var(--gray-500); margin-top:3px; line-height:1.5; letter-spacing:0.04em; }
.chk-ship-price { font-family:var(--font-mono); font-size:11px; font-weight:700; color:var(--black); white-space:nowrap; }

/* Payment logos */
.chk-pay-logos { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:16px; }
.cpl { width:44px; height:18px; border-radius:4px; border:1px solid var(--gray-200); }

/* Payment tabs — sleek pill */
.chk-pay-tabs {
  display:flex; background:var(--gray-100);
  border-radius:10px; padding:3px; gap:2px; margin-bottom:16px;
}
.chk-ptab {
  flex:1; padding:8px 4px; background:none; border:none; border-radius:8px;
  font-family:var(--font-mono); font-size:8px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; color:var(--gray-500);
  cursor:pointer; transition:all .2s; display:flex; align-items:center;
  justify-content:center; gap:3px;
}
.chk-ptab--on {
  background:var(--white); color:var(--black);
  box-shadow:0 1px 4px rgba(0,0,0,.10);
}
.chk-pp {}
.chk-wallet-box {
  border:1.5px solid var(--gray-200); border-radius:10px;
  padding:22px; display:flex; flex-direction:column; align-items:center; gap:10px;
}
.chk-redirect {
  display:flex; align-items:center; gap:8px; padding:11px 14px;
  background:var(--gray-100); border-radius:8px;
  font-family:var(--font-mono); font-size:10px; color:var(--gray-600);
  line-height:1.5; letter-spacing:0.03em;
}

/* Discount */
.chk-disc-btn {
  background:var(--black); color:var(--white);
  font-family:var(--font-mono); font-size:10px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; padding:13px 20px;
  border:none; border-radius:10px; cursor:pointer;
  white-space:nowrap; transition:background .2s, box-shadow .2s;
}
.chk-disc-btn:hover { background:var(--gold); color:var(--black); }

/* ── TRUST BAR — above CTA ──────────────────── */
.chk-pre-cta-trust {
  display:flex; align-items:center; justify-content:center; gap:16px;
  padding:12px 0 14px; border-top:1px solid rgba(0,0,0,0.07);
  margin-top:4px;
}
.chk-pct-item {
  display:flex; align-items:center; gap:6px;
  font-family:var(--font-mono); font-size:9px; color:var(--gray-600);
  letter-spacing:0.04em;
}
.chk-pct-dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--gold); flex-shrink:0;
}

/* ── PAY BUTTON — Gold CTA ──────────────────── */
.chk-pay-btn {
  width:100%; 
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  background-size:200% auto;
  color:var(--black);
  font-family:var(--font-title); font-size:17px; font-weight:700;
  letter-spacing:-.02em; padding:20px 28px; border:none; border-radius:14px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  gap:10px; transition:all .25s; margin:18px 0 12px;
  box-shadow:0 4px 20px rgba(201,168,76,.35);
  position:relative; overflow:hidden;
}
.chk-pay-btn::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform:translateX(-100%); transition:transform 0.55s;
}
.chk-pay-btn:hover::before { transform:translateX(100%); }
.chk-pay-btn:hover {
  background-position:right center;
  box-shadow:0 8px 32px rgba(201,168,76,.5);
  transform:translateY(-1px);
}
.chk-pay-btn:active { transform:translateY(0); }
.chk-pay-btn.loading { pointer-events:none; background:#888; box-shadow:none; }

/* Trust line */
.chk-pay-trust {
  display:flex; align-items:center; justify-content:center; gap:6px;
  font-family:var(--font-mono); font-size:9px; color:var(--gray-500);
  letter-spacing:0.04em; margin-bottom:8px;
}

/* Legal */
.chk-legal { font-family:var(--font-mono); font-size:9px; color:var(--gray-400); text-align:center; line-height:1.7; letter-spacing:0.02em; }
.chk-legal-link { color:var(--gold-dark); cursor:pointer; text-decoration:underline; }

/* Order summary items */
.chk-items { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.chk-item { display:flex; gap:12px; align-items:center; }
.chk-sum-row { display:flex; gap:10px; align-items:flex-start; padding-bottom:12px; border-bottom:1px solid var(--gray-200); }
.chk-sum-row:last-child { border-bottom:none; padding-bottom:0; }
.chk-item-img {
  width:56px; height:56px; border-radius:10px;
  background:linear-gradient(135deg,#1a1a18,#2e2e2a);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; position:relative; flex-shrink:0;
  border:1px solid rgba(255,255,255,0.08);
}
.chk-item-badge {
  position:absolute; top:-6px; right:-6px;
  width:20px; height:20px; border-radius:50%;
  background:var(--black); color:var(--white);
  font-family:var(--font-mono); font-size:8px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--white);
}
.chk-item-info { flex:1; }
.chk-item-name { font-family:var(--font-title); font-size:13px; font-weight:700; color:var(--black); }
.chk-item-var { font-family:var(--font-mono); font-size:9px; color:var(--gray-500); margin-top:2px; margin-bottom:8px; letter-spacing:0.04em; }
.chk-item-price { font-family:var(--font-mono); font-size:12px; font-weight:700; white-space:nowrap; }

/* Qty controls */
.chk-qty-row { display:flex; align-items:center; gap:5px; }
.chk-qty-btn {
  width:22px; height:22px; border-radius:50%;
  border:1.5px solid var(--gray-200); background:none;
  cursor:pointer; font-size:14px; display:flex; align-items:center;
  justify-content:center; line-height:1; color:var(--black);
  transition:border-color .15s, color .15s;
}
.chk-qty-btn:hover { border-color:var(--gold); color:var(--gold-dark); }
.chk-qty-num { font-family:var(--font-mono); font-size:11px; font-weight:700; min-width:18px; text-align:center; }
.chk-del-btn {
  width:22px; height:22px; border-radius:50%;
  border:1.5px solid var(--gray-200); background:none;
  cursor:pointer; display:flex; align-items:center;
  justify-content:center; color:var(--gray-400);
  transition:border-color .15s, color .15s; margin-left:4px;
}
.chk-del-btn:hover { border-color:#EF4444; color:#EF4444; }

/* Totals */
.chk-totals {
  border-top:1px solid rgba(0,0,0,0.08); padding-top:14px;
  display:flex; flex-direction:column; gap:8px; margin-bottom:20px;
}
.chk-tot { display:flex; justify-content:space-between; font-family:var(--font-mono); font-size:11px; color:var(--gray-600); letter-spacing:0.02em; }
.chk-tot--big {
  font-size:15px; font-weight:700; color:var(--black);
  border-top:1px solid rgba(0,0,0,0.1); padding-top:12px; margin-top:2px;
  font-family:var(--font-title);
}

/* Trust grid */
.chk-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 20px;
}
.chk-tg-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.chk-tg-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,168,76,0.12);
}
.chk-tg-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg,rgba(201,168,76,0.12),rgba(201,168,76,0.06));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: tgPulse 3s ease-in-out infinite;
}
@keyframes tgPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%      { box-shadow: 0 0 0 4px rgba(201,168,76,0.15); }
}
.chk-tg-text { display: flex; flex-direction: column; gap: 1px; }
.chk-tg-text strong { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); }
.chk-tg-text span { font-family: var(--font-mono); font-size: 8px; color: var(--gray-500); letter-spacing: 0.04em; }
.chk-tg-item {
  display:flex; align-items:center; gap:7px;
  font-family:var(--font-mono); font-size:9px; color:var(--gray-600);
  padding:9px 10px; background:rgba(0,0,0,0.03);
  border-radius:8px; letter-spacing:0.03em;
}

/* ── SCARCITY BAR in right sidebar ─────────── */
.chk-scarcity {
  display:flex; align-items:center; gap:8px;
  background:rgba(201,168,76,.08); border:1px solid rgba(201,168,76,.25);
  border-radius:10px; padding:10px 14px; margin-bottom:18px;
  font-family:var(--font-mono); font-size:9px; color:var(--gray-700);
  letter-spacing:0.05em;
}
.chk-scarcity-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--gold); flex-shrink:0;
  box-shadow:0 0 5px rgba(201,168,76,.6);
  animation:dotBlink 1.4s ease-in-out infinite;
}

/* Guarantee badge */
.chk-guarantee {
  display:flex; align-items:center; gap:10px;
  background:var(--white); border:1px solid rgba(0,0,0,0.07);
  border-radius:10px; padding:12px 14px; margin-top:16px;
}
.chk-guarantee-icon { flex-shrink:0; color:var(--gold); }
.chk-guarantee-text { font-family:var(--font-mono); font-size:9px; color:var(--gray-600); line-height:1.6; letter-spacing:0.03em; }
.chk-guarantee-text strong { color:var(--black); display:block; margin-bottom:2px; font-size:10px; letter-spacing:0.06em; text-transform:uppercase; }

/* ── CONFIRMATION ─────────────────────────────────────────────── */
#page-confirmation { display:none !important; }
#page-confirmation.conf-active { display:flex !important; align-items:center; justify-content:center; }
.conf-box { background:var(--white); border-radius:16px; padding:44px 36px; max-width:500px; width:100%; box-shadow:0 4px 40px rgba(0,0,0,.09); }
.conf-check { width:52px; height:52px; border-radius:50%; background:#ccff00; display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:900; color:var(--black); margin:0 auto 12px; }
.conf-num { font-family:var(--font-mono); font-size:9px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#7C3AED; text-align:center; margin-bottom:8px; }
.conf-title { font-family:var(--font-title); font-size:26px; font-weight:700; letter-spacing:-.02em; text-align:center; color:var(--black); margin-bottom:8px; }
.conf-sub { font-family:var(--font-mono); font-size:11px; color:var(--gray-500); text-align:center; line-height:1.6; margin-bottom:18px; }
.conf-card { background:#F5F5F3; border-radius:10px; padding:14px 16px; font-family:var(--font-mono); font-size:11px; color:var(--gray-600); line-height:1.8; margin-bottom:22px; }
.conf-timeline { display:flex; flex-direction:column; margin-bottom:24px; }
.conf-step { display:flex; align-items:flex-start; gap:14px; padding:10px 0; border-bottom:1px solid var(--gray-200); }
.conf-step:last-child { border-bottom:none; }
.conf-dot { width:10px; height:10px; border-radius:50%; background:var(--gray-300); flex-shrink:0; margin-top:3px; }
.conf-step--done .conf-dot { background:#7C3AED; box-shadow:0 0 6px rgba(124,58,237,.4); }
.conf-slabel { font-family:var(--font-mono); font-size:11px; font-weight:700; color:var(--black); }
.conf-ssub { font-family:var(--font-mono); font-size:9px; color:var(--gray-500); margin-top:2px; }

@media(max-width:768px) {
  .chk-layout { grid-template-columns:1fr; }
  .chk-right { display:none; }
  .chk-left { padding:28px 20px 60px; }
}


/* ──────────────────────────────────────────────── */


/* ADMIN TOGGLE BTN */
.admin-toggle {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 500;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: background var(--transition);
}
.admin-toggle:hover { background: #1a1a1a; }
.admin-toggle__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #52D400;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:0.4; }
}

/* ADMIN PANEL */
.admin-panel {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  height: 100vh;
  background: #111;
  color: var(--white);
  z-index: 490;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  font-family: var(--font-mono);
}
.admin-panel.open { right: 0; }

.admin-panel__header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: #0a0a0a;
}
.admin-panel__title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.admin-panel__subtitle {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.admin-panel__close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.admin-panel__close:hover { color: var(--white); }

.admin-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

/* CARD ROW */
.admin-card-row {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.admin-card-row:hover { background: rgba(255,255,255,0.02); }
.admin-card-row__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}
.admin-card-row__icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.admin-card-row__name {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.06em;
  flex: 1;
}
.admin-card-row__toggle {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s;
}
.admin-card-row.expanded .admin-card-row__toggle { transform: rotate(180deg); }

.admin-card-row__controls {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.admin-card-row.expanded .admin-card-row__controls { display: flex; }

/* FIELD */
.admin-field { display: flex; flex-direction: column; gap: 5px; }
.admin-field__label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.admin-field__row { display: flex; gap: 8px; align-items: center; }

.admin-select, .admin-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 7px 10px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.admin-select:focus, .admin-input:focus { border-color: #b8926a; }
.admin-select option { background: #1a1a1a; }

/* COLOR SWATCHES */
.admin-color-swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.admin-swatch {
  width: 24px; height: 24px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.admin-swatch:hover { transform: scale(1.15); }
.admin-swatch.active { border-color: var(--white); }

/* BADGE PREVIEW */
.admin-badge-preview {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-top: 4px;
}

/* APPLY BTN */
.admin-apply-btn {
  background: #b8926a;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.admin-apply-btn:hover { background: #d4a882; }

.admin-badge-none { display: none !important; }

/* DISCOUNT WARN */
.admin-discount-warn {
  font-size: 9px;
  color: #ff6b6b;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: none;
}
.admin-discount-warn.show { display: block; }

/* FOOTER */
.admin-panel__footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
  flex-shrink: 0;
}
.admin-save-all {
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px;
  cursor: pointer;
  font-weight: 700;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.admin-save-all:hover { background: #52D400; }
.admin-save-all.saved { background: #52D400; }

@media (max-width: 768px) {
  .admin-panel { width: 100vw; right: -100vw; }
  .admin-toggle { bottom: 72px; right: 12px; }
}


/* ──────────────────────────────────────────────── */


/* ── ACCOUNT MODAL ─────────────────────────────────────── */
.acct-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.acct-overlay.open,
.acct-overlay.active { display: flex; }

.acct-modal {
  background: var(--white);
  width: 100%; max-width: 420px;
  border-radius: 18px;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.06);
  animation: acctSlide 0.35s cubic-bezier(0.34,1.4,0.64,1);
}
@keyframes acctSlide {
  from { transform: translateY(28px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.acct-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: background 0.15s;
}
.acct-close:hover { background: var(--gray-200); }

.acct-brand {
  font-family: var(--font-title); font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--black); margin-bottom: 20px;
}

.acct-tabs {
  display: flex; margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-200);
}
.acct-tab {
  flex: 1; padding: 10px; background: none; border: none;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-500); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.acct-tab--active { color: var(--black); border-color: #7C3AED; }

.acct-title {
  font-family: var(--font-title); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black); margin-bottom: 6px;
}
.acct-sub {
  font-family: var(--font-mono); font-size: 10px; color: var(--gray-500);
  line-height: 1.6; margin-bottom: 20px; letter-spacing: 0.02em;
}

.acct-form { display: flex; flex-direction: column; gap: 12px; }
.acct-row { display: flex; gap: 10px; }
.acct-field { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.acct-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600);
}
.acct-input-wrap { position: relative; }
.acct-input {
  width: 100%; font-family: var(--font-mono); font-size: 12px;
  padding: 11px 14px; border: 1.5px solid var(--gray-300);
  border-radius: 10px; background: var(--white); color: var(--black);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.acct-input:focus {
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.acct-input::placeholder { color: var(--gray-400); }
.acct-input.error { border-color: #EF4444; }
.acct-eye {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--gray-400); padding: 4px; transition: color 0.15s;
}
.acct-eye:hover { color: var(--black); }

.acct-pw-strength {
  display: flex; align-items: center; gap: 8px; margin-top: 4px;
  opacity: 0; transition: opacity 0.2s;
}
.acct-pw-strength.visible { opacity: 1; }
.acct-pw-bar {
  flex: 1; height: 3px; background: var(--gray-200);
  border-radius: 2px; overflow: hidden;
}
.acct-pw-fill {
  height: 100%; width: 0%; border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}
.acct-pw-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em; white-space: nowrap;
}

.acct-forgot {
  font-family: var(--font-mono); font-size: 10px;
  color: #7C3AED; cursor: pointer; text-align: right;
  letter-spacing: 0.04em; transition: opacity 0.15s;
}
.acct-forgot:hover { opacity: 0.7; }

.acct-error {
  font-family: var(--font-mono); font-size: 10px; color: #991B1B;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: 8px; padding: 8px 12px;
  display: none; line-height: 1.5;
}
.acct-error.show { display: block; }

.acct-btn {
  background: var(--black); color: var(--white);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 20px; border: none; border-radius: 10px;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
.acct-btn:hover {
  background: #7C3AED;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}

.acct-divider {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 9px; color: var(--gray-400);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.acct-divider::before, .acct-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-200);
}

.acct-social { display: flex; gap: 8px; }
.acct-social-btn {
  flex: 1; padding: 10px; border: 1.5px solid var(--gray-300);
  border-radius: 10px; background: var(--white); cursor: pointer;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--gray-700); display: flex; align-items: center;
  justify-content: center; gap: 7px;
  transition: border-color 0.2s, background 0.2s;
}
.acct-social-btn:hover { border-color: #7C3AED; background: #faf7ff; }

.acct-check {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; color: var(--gray-600);
  line-height: 1.5; cursor: pointer;
}
.acct-check input { accent-color: #7C3AED; margin-top: 2px; flex-shrink: 0; }

.acct-success {
  display: none; align-items: center; gap: 10px;
  background: #F0FDF4; border: 1.5px solid #86EFAC;
  border-radius: 10px; padding: 14px 16px;
  font-family: var(--font-mono); font-size: 11px;
  color: #166534; line-height: 1.5;
}
.acct-success.show { display: flex; }

.acct-proof {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-mono); font-size: 9px;
  color: var(--gray-500); letter-spacing: 0.04em;
}

/* Account button state when signed in */
#acctBtn.signed-in svg { color: #7C3AED; }
#acctBtn.signed-in::after {
  content: ''; position: absolute; top: 6px; right: 6px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #ccff00; border: 1.5px solid var(--white);
}
#acctBtn { position: relative; }


/* ──────────────────────────────────────────────── */


/* ── SEARCH MODAL ──────────────────────────────────────── */
.srch-overlay {
  position: fixed; inset: 0; z-index: 960;
  background: rgba(10,10,10,0.5); backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 80px;
}
.srch-overlay.open { display: flex; }
.srch-modal {
  background: var(--white); width: 100%; max-width: 620px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
  animation: srchSlide 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes srchSlide { from { transform:translateY(-12px);opacity:0; } to { transform:translateY(0);opacity:1; } }

.srch-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
}
.srch-bar svg { color: var(--gray-500); flex-shrink: 0; }
.srch-input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-title); font-size: 17px; font-weight: 500;
  color: var(--black); background: transparent;
  letter-spacing: -0.01em;
}
.srch-input::placeholder { color: var(--gray-400); }
.srch-close-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: background 0.15s; flex-shrink: 0;
}
.srch-close-btn:hover { background: var(--gray-200); }

.srch-default { padding: 20px; }
.srch-results { padding: 0; display: none; }
.srch-results.has-results { display: block; }
.srch-section-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500);
  margin-bottom: 10px;
}
.srch-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.srch-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; padding: 6px 12px;
  border: 1.5px solid var(--gray-300); border-radius: 20px;
  background: var(--white); color: var(--gray-700);
  cursor: pointer; transition: all 0.15s;
}
.srch-tag:hover { border-color: #7C3AED; color: #7C3AED; background: #faf7ff; }

.srch-popular { display: flex; flex-direction: column; gap: 2px; }
.srch-pop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  transition: background 0.15s;
}
.srch-pop-item:hover { background: var(--gray-100); }
.srch-pop-img {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg,#1a1a18,#2e2e2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.srch-pop-info { flex: 1; }
.srch-pop-name { font-family: var(--font-title); font-size: 13px; font-weight: 700; color: var(--black); }
.srch-pop-price { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); margin-top: 2px; }
.srch-pop-arrow { color: var(--gray-400); flex-shrink: 0; }

/* SEARCH RESULTS */
.srch-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: background 0.15s;
}
.srch-result-item:last-child { border-bottom: none; }
.srch-result-item:hover { background: var(--gray-100); }
.srch-result-img {
  width: 46px; height: 46px; border-radius: 8px;
  background: linear-gradient(135deg,#1a1a18,#2e2e2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.srch-result-info { flex: 1; }
.srch-result-name { font-family: var(--font-title); font-size: 13px; font-weight: 700; color: var(--black); }
.srch-result-meta { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); margin-top: 2px; }
.srch-result-price { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--black); }
.srch-no-results {
  padding: 32px 20px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--gray-500);
}
.srch-result-highlight { color: #7C3AED; font-weight: 700; }


/* ──────────────────────────────────────────────── */


/* ── EXPRESS CHECKOUT BUTTONS ───────────────────────── */
.chk-express { display:flex; gap:8px; margin-bottom:14px; }
.chk-express-btn {
  flex:1; height:48px; border-radius:12px; border:1.5px solid var(--gray-200);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  gap:8px; font-family:var(--font-mono); font-size:10px; font-weight:700;
  letter-spacing:0.06em; transition:all 0.2s;
}
.chk-express-apple { background:#000; color:#fff; border-color:#000; }
.chk-express-apple:hover { background:#1a1a1a; box-shadow:0 4px 14px rgba(0,0,0,.25); }
.chk-express-google { background:#fff; color:#3c4043; border-color:var(--gray-200); }
.chk-express-google:hover { background:#f8f8f8; border-color:var(--gray-400); }
.chk-express-paypal { background:#ffc439; color:#003087; border-color:#ffc439; }
.chk-express-paypal:hover { background:#f0b429; box-shadow:0 4px 14px rgba(255,196,57,.3); }

.chk-or {
  display:flex; align-items:center; gap:10px; margin-bottom:20px;
  font-family:var(--font-mono); font-size:9px; color:var(--gray-400);
  letter-spacing:0.08em; text-transform:uppercase;
}
.chk-or::before,.chk-or::after { content:''; flex:1; height:1px; background:var(--gray-200); }

/* ── PAY BUTTON UPGRADE — see main checkout CSS above ── */

.chk-pay-trust {
  display:flex; align-items:center; justify-content:center; gap:6px;
  font-family:var(--font-mono); font-size:9px; color:var(--gray-500);
  letter-spacing:0.04em; margin-bottom:8px;
}

/* ── AUTOFILL HIGHLIGHT ─────────────────────────────── */
.chk-inp:-webkit-autofill {
  -webkit-box-shadow:0 0 0 40px #faf7ff inset;
  -webkit-text-fill-color:var(--black);
  border-color:#7C3AED !important;
}
.chk-inp.autofilled { border-color:#7C3AED; background:#faf7ff; }

/* ── FLOATING LABEL INPUTS ─────────────────────────── */
.chk-field { position:relative; margin-bottom:8px; }
.chk-field .chk-inp { padding:18px 14px 6px; }
.chk-field .chk-float-label {
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  font-family:var(--font-mono); font-size:12px; color:var(--gray-400);
  pointer-events:none; transition:all 0.15s; transform-origin:left top;
}
.chk-field .chk-inp:focus ~ .chk-float-label,
.chk-field .chk-inp:not(:placeholder-shown) ~ .chk-float-label {
  transform:translateY(-100%) scale(0.72);
  color:#7C3AED; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  top:18px;
}

/* ── WAITLIST EDITABLE ──────────────────────────────── */
[data-editable] {
  cursor:default; transition:outline 0.15s;
  outline:2px solid transparent; outline-offset:4px;
  border-radius:4px;
}
[data-editable]:hover {
  outline:2px dashed rgba(124,58,237,0.35);
}
[data-editable][contenteditable="true"] {
  outline:2px solid #7C3AED;
  cursor:text;
}
.wl-edit-hint {
  font-family:var(--font-mono); font-size:9px; color:rgba(255,255,255,0.25);
  letter-spacing:0.08em; text-transform:uppercase; text-align:center;
  margin-top:8px; opacity:0; transition:opacity 0.3s;
}
#page-waitlist:hover .wl-edit-hint { opacity:1; }


/* ──────────────────────────────────────────────── */


/* ── GLOBAL MOBILE ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  body { font-size: 14px; }

  /* HEADER */
  .header__inner { padding: 0 16px; height: 56px; }
  .header__logo { font-size: 18px; }
  .header__search { display: none; }
  .header__cart-count { width: 16px; height: 16px; font-size: 8px; }

  /* HERO */
  .hero { min-height: 92vh; }
  .hero__content { padding: 0 20px 48px; }
  .hero__title { font-size: clamp(32px, 9vw, 48px); margin-bottom: 16px; }
  .hero__subtitle { font-size: 10px; margin-bottom: 20px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero__social-proof { flex-wrap: wrap; gap: 8px; }
  .hero__scarcity-strip { font-size: 9px; padding: 6px 14px; bottom: 12px; }

  /* PRODUCT PAGE */
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .product-info { padding: 20px 16px 40px; overflow-x: hidden; }
  .product-info__title { font-size: clamp(24px, 6vw, 36px); }
  .color-options { flex-wrap: wrap; gap: 8px; }
  .qty-atc-row { flex-direction: column; gap: 8px; }
  .qty-selector { width: 100%; justify-content: space-between; }
  .btn-atc { width: 100%; }
  .btn-buy-now { font-size: 14px; padding: 14px 20px; }
  .product-details { margin-top: 24px; }
  .inline-trust-bar { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* CART DRAWER */
  .cart-drawer { width: 100% !important; }

  /* CHECKOUT */
  .chk-layout { grid-template-columns: 1fr; }
  .chk-left { padding: 24px 16px 60px; }
  .chk-right { display: none; }
  .chk-logo { font-size: 16px; margin-bottom: 16px; }
  .chk-express { flex-direction: column; gap: 8px; }
  .chk-express-btn { height: 48px; font-size: 11px; }
  .chk-row { flex-direction: column; gap: 0; }
  .chk-pay-tabs { flex-wrap: wrap; }
  .chk-ptab { flex: none; min-width: calc(50% - 1px); }
  .chk-pay-btn { font-size: 15px; padding: 16px 20px; }

  /* WAITLIST */
  #page-waitlist .wl-title { font-size: clamp(28px, 8vw, 48px); white-space: normal !important; }
  #page-waitlist .wl-hero { padding: 100px 20px 60px; }
  .wl-form-wrap { padding: 0 4px; }
  .wl-btn { font-size: 11px; padding: 14px 24px; }
  .wl-countdown-timer { gap: 2px; }
  .wl-cd-block { padding: 8px 10px; min-width: 46px; }
  .wl-cd-num { font-size: 24px; }

  /* INNER PAGES */
  .inner-page__hero { padding: 90px 20px 40px; min-height: 200px; }
  .inner-page__title { font-size: clamp(28px, 7vw, 44px); }
  .inner-page__body { padding: 32px 16px 60px; }
  .inner-page__two-col { grid-template-columns: 1fr; gap: 24px; }
  .inner-page__table-row { grid-template-columns: 1fr; gap: 2px; font-size: 10px; padding: 10px 14px; }
  .inner-page__table-row--head { font-size: 8px; }

  /* TRACK & TRACE */
  .tt-section { padding: 20px 16px; }
  .tt-form { flex-direction: column; }
  .tt-btn { width: 100%; justify-content: center; }

  /* CONFIRMATION */
  .conf-box { padding: 32px 20px; }
  .conf-title { font-size: 22px; }

  /* ACCOUNT MODAL */
  .acct-modal { padding: 28px 20px 22px; border-radius: 16px 16px 0 0; }
  .acct-overlay { align-items: flex-end; padding-top: 0; }
  .account-modal { width: 100%; max-width: 100%; border-radius: 16px 16px 0 0; }

  /* SEARCH MODAL */
  .srch-modal { border-radius: 0 0 16px 16px; }
  .srch-overlay { padding-top: 0; align-items: flex-start; }
  .srch-input { font-size: 15px; }

  /* FOOTER */
  .av-footer__main { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .av-footer__trust { flex-direction: column; gap: 12px; align-items: flex-start; padding: 24px 20px; }
  .av-footer__bottom { flex-direction: column; gap: 12px; padding: 16px 20px; text-align: center; }

  /* SCROLL TRACK */
  .scroll-track { gap: 12px; }
  .product-card { min-width: 240px; }

  /* MARQUEE */
  .marquee-item { padding: 0 20px; font-size: 11px; }

  /* BESTSELLER SCROLL */
  .scroll-track-wrapper { padding: 0 16px 20px; }
}

/* ── TABLET 481–768px ──────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .product-page { grid-template-columns: 1fr; }
  .chk-layout { grid-template-columns: 1fr; }
  .chk-right { display: none; }
  .chk-left { padding: 32px 24px 60px; }
  .inner-page__two-col { grid-template-columns: 1fr; }
  .av-footer__main { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 90% !important; }
  .hero__title { font-size: clamp(36px, 7vw, 56px); }
  #page-waitlist .wl-title { font-size: clamp(32px, 8vw, 56px); white-space: normal !important; }
}

/* ── TOUCH TARGETS ─────────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .btn-primary, .btn-secondary, .btn-atc, .btn-buy-now,
  .chk-pay-btn, .chk-express-btn, .chk-disc-btn,
  .acct-btn, .tt-btn, .srch-tag, .nav__link,
  .header__action-btn, .cart-checkout-btn, .wl-btn,
  .chk-qty-btn, .chk-del-btn {
    min-height: 44px; /* Apple HIG minimum touch target */
  }
  /* Remove hover effects on touch — they stick */
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card__quick-add { transform: translateY(0); opacity: 1; }
}

/* ── SAFE AREA (notch/home bar) ────────────────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .cart-drawer__footer { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .header { padding-top: env(safe-area-inset-top); }
}

/* ═══════════════════════════════════════════════════════
   CHECKOUT HIGH-CONVERTING UPGRADE CSS
   ═══════════════════════════════════════════════════════ */
#page-checkout .chk-left > * { opacity:0; transform:translateY(14px); animation:chkFadeUp 0.45s ease forwards; }
#page-checkout .chk-top-bar    { animation-delay:.05s; }
#page-checkout .chk-express-wrap { animation-delay:.12s; }
#page-checkout .chk-section:nth-child(3) { animation-delay:.19s; }
#page-checkout .chk-section:nth-child(4) { animation-delay:.26s; }
#page-checkout .chk-section:nth-child(5) { animation-delay:.33s; }
#page-checkout .chk-pre-cta-trust { animation-delay:.47s; }
#page-checkout .chk-pay-btn { animation-delay:.54s; }
@keyframes chkFadeUp { to { opacity:1; transform:translateY(0); } }

.chk-top-bar { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; padding-bottom:20px; border-bottom:1px solid var(--gray-200); }
.chk-steps { display:flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:9px; letter-spacing:0.08em; text-transform:uppercase; }
.chk-step { display:flex; align-items:center; gap:5px; }
.chk-step-dot { width:18px; height:18px; border-radius:50%; background:var(--gray-300); display:flex; align-items:center; justify-content:center; transition:background 0.3s; flex-shrink:0; }
.chk-step--done .chk-step-dot { background:#22C55E; }
.chk-step--active .chk-step-dot { background:var(--black); animation:stepPulse 2s ease-in-out infinite; }
@keyframes stepPulse { 0%,100%{box-shadow:0 0 0 3px rgba(10,10,10,.15)} 50%{box-shadow:0 0 0 6px rgba(10,10,10,.06)} }
.chk-step--done span,.chk-step--active span { color:var(--black); font-weight:700; }
.chk-step span { color:var(--gray-400); }
.chk-step-line { width:28px; height:2px; background:var(--gray-300); border-radius:1px; }
.chk-step-line--done { background:#22C55E; }

.chk-express-wrap { margin-bottom:24px; }
.chk-express-label { display:flex; align-items:center; gap:10px; font-family:var(--font-mono); font-size:9px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--gray-500); margin-bottom:12px; }
.chk-express-label .chk-express-line { flex:1; height:1px; background:var(--gray-200); }

.chk-express-btn { position:relative; overflow:hidden; transition:all 0.18s; }
.chk-express-btn::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent); transform:translateX(-100%); transition:transform 0.5s; }
.chk-express-btn:hover::before { transform:translateX(100%); }
.chk-express-apple:hover,.chk-express-google:hover,.chk-express-paypal:hover { transform:translateY(-1px); box-shadow:0 4px 16px rgba(0,0,0,.12); }

.chk-pre-cta-trust { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:14px; }
.chk-pct-item { display:flex; align-items:center; gap:5px; font-family:var(--font-mono); font-size:9px; font-weight:700; letter-spacing:0.06em; color:var(--gray-600); padding:5px 10px; background:var(--gray-100); border-radius:20px; border:1px solid var(--gray-200); }
.chk-pct-item svg { color:#7C3AED; flex-shrink:0; }

.chk-pay-btn { position:relative; overflow:hidden; transition:background 0.25s, transform 0.15s, box-shadow 0.25s; }
.chk-pay-btn::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent); animation:btnShimmer 3s ease-in-out infinite; }
@keyframes btnShimmer { 0%{left:-100%} 50%{left:150%} 100%{left:150%} }
.chk-pay-btn:hover { background:#7C3AED; box-shadow:0 8px 28px rgba(124,58,237,.32); transform:translateY(-1px); }
.chk-pay-btn:active { transform:translateY(0) scale(.99); }
.chk-pay-btn.loading { pointer-events:none; background:#555; }

.chk-pay-btn-lock { flex-shrink:0; animation:lockBounce 2.5s ease-in-out infinite; }
@keyframes lockBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-2px)} }
.chk-pay-btn-arrow { flex-shrink:0; opacity:.6; transition:transform 0.2s, opacity 0.2s; }
.chk-pay-btn:hover .chk-pay-btn-arrow { transform:translateX(4px); opacity:1; }

.chk-scarcity { display:flex; align-items:center; gap:8px; background:rgba(61,16,102,.07); border:1px solid rgba(61,16,102,.18); border-radius:8px; padding:8px 12px; font-family:var(--font-mono); font-size:10px; color:#4B0082; margin-bottom:16px; animation:scarPulse 2.5s ease-in-out infinite; }
.chk-scarcity-dot { width:7px; height:7px; border-radius:50%; background:#7C3AED; flex-shrink:0; animation:dotBlink 1.2s ease-in-out infinite; }
@keyframes scarPulse { 0%,100%{box-shadow:0 0 0 0 rgba(124,58,237,0)} 50%{box-shadow:0 0 8px 2px rgba(124,58,237,.1)} }

.chk-inp { transition:border-color 0.2s,box-shadow 0.2s,transform 0.1s; }
.chk-inp:focus { transform:translateY(-1px); }
.chk-inp.err { animation:shake 0.4s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-5px)} 60%{transform:translateX(5px)} }

#page-checkout .chk-right-inner > * { opacity:0; transform:translateY(10px); animation:chkFadeUp 0.5s ease forwards; }
#page-checkout .chk-right-inner .chk-scarcity   { animation-delay:.15s; }
#page-checkout .chk-right-inner .chk-right-h    { animation-delay:.22s; }
#page-checkout .chk-right-inner .chk-items      { animation-delay:.29s; }
#page-checkout .chk-right-inner .chk-totals     { animation-delay:.36s; }
#page-checkout .chk-right-inner .chk-trust-grid { animation-delay:.43s; }

@media(max-width:768px){
  .chk-top-bar { flex-direction:column; align-items:flex-start; gap:14px; }
  .chk-pre-cta-trust { justify-content:center; }
  .chk-steps { font-size:8px; }
  .chk-step-line { width:16px; }
}


/* ── PRODUCT PAGE PAYMENT BADGES 2026 ─────────────────────────────── */
.prod-pay-badges {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 0 4px;
}
.prod-pay-label {
  font-family: var(--font-mono); font-size: 8px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-500);
}
.prod-pay-icons {
  display: flex; gap: 5px; flex-wrap: wrap; align-items: center;
}
.ppb {
  width: 60px; height: 38px; border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07), 0 0 0 0.5px rgba(0,0,0,0.04);
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  opacity: 0.88;
  display: block;
}
.ppb:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(0,0,0,0.13);
  opacity: 1;
}


/* ── PAYMENT BADGES UPDATED ─────────────────────────── */
.ppb {
  width: 60px; height: 38px; border-radius: 7px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 0 0 0.5px rgba(0,0,0,0.03);
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  opacity: 0.92; display: block; flex-shrink: 0;
}
.ppb--wide { width: 88px; }
img.ppb { object-fit: contain; background: white; }
.ppb:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  opacity: 1;
}
.prod-pay-icons { display:flex; gap:5px; flex-wrap:wrap; align-items:center; }


/* ── SEARCH INPUT ACTIVE ─────────────────────────────────────── */
.srch-input:focus {
  outline: none;
  caret-color: #7C3AED;
  animation: none;
}
.srch-overlay.open .srch-input {
  animation: srchCursorIn 0.25s ease;
}
@keyframes srchCursorIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* ──────────────────────────────────────────────── */


@keyframes avFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
/* hitbox for dots */
#heroDot0::after, #heroDot1::after { content:''; position:absolute; inset:-16px; }

/* ══════════════════════════════════════════════════════════════════
   PREMIUM PAYMENT PAGE — World-class, CRO-optimised, animated
   Psychology: Loss Aversion · Social Proof · Reciprocity · Trust
   ══════════════════════════════════════════════════════════════════ */

/* ── PAGE ENTRY — staggered reveal creates perceived quality ─────── */
#page-checkout { animation: chkPageIn 0.6s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes chkPageIn { from { opacity:0; } to { opacity:1; } }

#page-checkout .chk-left > * {
  opacity: 0;
  transform: translateY(18px);
  animation: chkSectionIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
}
#page-checkout .chk-top-bar      { animation-delay: 0.05s; }
#page-checkout .chk-express-wrap { animation-delay: 0.12s; }
#page-checkout .chk-section:nth-child(3) { animation-delay: 0.18s; }
#page-checkout .chk-section:nth-child(4) { animation-delay: 0.24s; }
#page-checkout .chk-section:nth-child(5) { animation-delay: 0.30s; }
#page-checkout .chk-section:nth-child(6) { animation-delay: 0.36s; }
#page-checkout .chk-section:nth-child(7) { animation-delay: 0.42s; }
#page-checkout .chk-pre-cta-trust { animation-delay: 0.48s; }
#page-checkout .chk-pay-btn      { animation-delay: 0.52s; }
#page-checkout .chk-pay-trust    { animation-delay: 0.56s; }
@keyframes chkSectionIn {
  to { opacity:1; transform:translateY(0); }
}

/* Right panel stagger */
#page-checkout .chk-right-inner > * {
  opacity: 0; transform: translateX(12px);
  animation: chkRightIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
#page-checkout .chk-right-inner > *:nth-child(1) { animation-delay: 0.2s; }
#page-checkout .chk-right-inner > *:nth-child(2) { animation-delay: 0.28s; }
#page-checkout .chk-right-inner > *:nth-child(3) { animation-delay: 0.36s; }
#page-checkout .chk-right-inner > *:nth-child(4) { animation-delay: 0.44s; }
@keyframes chkRightIn { to { opacity:1; transform:translateX(0); } }

/* ── INPUT FIELDS — premium focused state ────────────────────────── */
.chk-inp {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  background: var(--white);
}
.chk-inp:focus {
  border-color: #7C3AED;
  box-shadow: 0 0 0 3.5px rgba(124,58,237,0.1), 0 1px 3px rgba(0,0,0,0.06);
  transform: translateY(-1px);
  outline: none;
}
.chk-inp:focus::placeholder { opacity: 0.5; transform: translateX(4px); }
.chk-inp.err {
  border-color: #EF4444;
  animation: chkShake 0.45s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes chkShake {
  10%,90%  { transform: translateX(-2px); }
  20%,80%  { transform: translateX(4px); }
  30%,50%,70% { transform: translateX(-4px); }
  40%,60%  { transform: translateX(4px); }
}

/* ── PROGRESS STEPS ──────────────────────────────────────────────── */
.chk-step--active .chk-step-dot {
  background: #0A0A0A;
  box-shadow: 0 0 0 4px rgba(10,10,10,0.1);
  animation: stepBreath 2s ease-in-out infinite;
}
@keyframes stepBreath {
  0%,100% { box-shadow: 0 0 0 4px rgba(10,10,10,0.10); }
  50%     { box-shadow: 0 0 0 8px rgba(10,10,10,0.04); }
}

/* ── EXPRESS BUTTONS ─────────────────────────────────────────────── */
.chk-express-btn {
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.18s ease, opacity 0.15s;
}
.chk-express-btn:hover {
  transform: translateY(-2px) scale(1.01);
}
.chk-express-btn:active { transform: scale(0.97); }

/* ── PREMIUM CTA BUTTON ──────────────────────────────────────────── */
.chk-pay-btn {
  position: relative;
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  margin: 0 0 10px;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
}
.chk-pay-btn-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
  transition: background 0.3s ease;
  z-index: 0;
}
.chk-pay-btn:hover .chk-pay-btn-bg {
  background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #6D28D9 100%);
}
/* Shimmer sweep */
.chk-pay-btn-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0) 70%, transparent 100%);
  transform: translateX(-100%);
  animation: btnShimmer 3.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes btnShimmer {
  0%   { transform: translateX(-100%); }
  40%  { transform: translateX(200%); }
  100% { transform: translateX(200%); }
}
.chk-pay-btn-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
/* Lock icon bounces */
.chk-pay-btn-lock {
  animation: lockBounce 2.8s cubic-bezier(0.37,0,0.63,1) infinite;
  flex-shrink: 0;
}
@keyframes lockBounce {
  0%,100% { transform: translateY(0) rotate(0deg); }
  15%     { transform: translateY(-3px) rotate(-3deg); }
  30%     { transform: translateY(0) rotate(3deg); }
  45%     { transform: translateY(-1px) rotate(0deg); }
}
/* Arrow slides on hover */
.chk-pay-btn-arrow {
  flex-shrink: 0; opacity: 0.65;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
}
.chk-pay-btn:hover .chk-pay-btn-arrow {
  transform: translateX(5px); opacity: 1;
}
/* Hover lift */
.chk-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,58,237,0.35),
              0 4px 12px rgba(0,0,0,0.15);
}
.chk-pay-btn:active { transform: scale(0.99) translateY(0); }
/* Loading state */
.chk-pay-btn.loading .chk-pay-btn-bg {
  background: linear-gradient(135deg, #374151, #4B5563);
}
.chk-pay-btn.loading .chk-pay-btn-shimmer { animation-duration: 1s; }

/* Particle burst on click */
.chk-pay-btn-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
}
.chk-pay-btn-particles span {
  position: absolute; top: 50%; left: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
}
.chk-pay-btn.burst .chk-pay-btn-particles span:nth-child(1) { animation: particle1 0.6s ease-out; }
.chk-pay-btn.burst .chk-pay-btn-particles span:nth-child(2) { animation: particle2 0.6s ease-out 0.05s; }
.chk-pay-btn.burst .chk-pay-btn-particles span:nth-child(3) { animation: particle3 0.6s ease-out 0.1s; }
.chk-pay-btn.burst .chk-pay-btn-particles span:nth-child(4) { animation: particle4 0.6s ease-out 0.08s; }
.chk-pay-btn.burst .chk-pay-btn-particles span:nth-child(5) { animation: particle5 0.6s ease-out 0.04s; }
@keyframes particle1 { to { transform:translate(-50%,-50%) translate(-30px,-40px) scale(1.5); opacity:0; } }
@keyframes particle2 { to { transform:translate(-50%,-50%) translate(35px,-35px) scale(1.2); opacity:0; } }
@keyframes particle3 { to { transform:translate(-50%,-50%) translate(40px,20px) scale(1.4); opacity:0; } }
@keyframes particle4 { to { transform:translate(-50%,-50%) translate(-38px,28px) scale(1.3); opacity:0; } }
@keyframes particle5 { to { transform:translate(-50%,-50%) translate(0,-48px) scale(1.2); opacity:0; } }

/* ── RIGHT PANEL TRUST GRID — pulse glow ────────────────────────── */
.chk-tg-item {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.chk-tg-item:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 3px 16px rgba(201,168,76,0.12);
  transform: translateY(-1px);
}
.chk-tg-icon {
  animation: tgPulse 3.5s ease-in-out infinite;
}
.chk-tg-item:nth-child(2) .chk-tg-icon { animation-delay: 0.8s; }
.chk-tg-item:nth-child(3) .chk-tg-icon { animation-delay: 1.6s; }
.chk-tg-item:nth-child(4) .chk-tg-icon { animation-delay: 2.4s; }
@keyframes tgPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%     { box-shadow: 0 0 0 5px rgba(201,168,76,0.14); }
}

/* ── SCARCITY STRIP — heartbeat ──────────────────────────────────── */
.chk-scarcity { animation: scarcityBeat 3s ease-in-out infinite; }
@keyframes scarcityBeat {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
  50%     { box-shadow: 0 0 10px 3px rgba(124,58,237,0.12); }
}
.chk-scarcity-dot {
  animation: dotPulse 1.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity:1; }
  50%     { transform: scale(1.6); opacity:0.6; }
}

/* ── PRE-CTA TRUST PILLS — micro-hover ──────────────────────────── */
.chk-pct-item {
  transition: background 0.18s, border-color 0.18s, transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
}
.chk-pct-item:hover {
  background: #F5F0FF;
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-2px);
}

/* ── PAYMENT TABS ────────────────────────────────────────────────── */
.chk-ptab {
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.chk-ptab--on::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #7C3AED;
  animation: tabUnderline 0.25s ease both;
}
@keyframes tabUnderline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── SHIPPING OPTIONS — selection pulse ─────────────────────────── */
.chk-ship:has(input:checked) {
  border-color: #7C3AED;
  background: #faf7ff;
  box-shadow: 0 0 0 1px #7C3AED, 0 3px 12px rgba(124,58,237,0.1);
}
.chk-ship { transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; }

/* ── SOCIAL PROOF LIVE TICKER — bottom of right panel ───────────── */
.chk-live-ticker {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 9px;
  color: var(--gray-600);
  padding: 10px 12px;
  background: #F9F9F7;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}
.chk-live-ticker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  animation: greenPulse 1.6s ease-in-out infinite;
}
@keyframes greenPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.6; transform:scale(1.4); }
}
.chk-live-ticker-text { flex: 1; }

/* ── CHECKOUT LOGO — premium wordmark ───────────────────────────── */
.chk-logo {
  font-family: var(--font-title); font-size: 22px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--black);
  margin-top: 28px; margin-bottom: 28px;
  display: block; position: relative;
}
.chk-logo::after {
  content: '®';
  font-size: 9px; vertical-align: super;
  opacity: 0.35; font-weight: 400;
  margin-left: 1px;
}

/* ══════════════════════════════════════════════════════════════════ */


/* ── ORDER SUMMARY — no emojis, clean initials ─────────────────── */
.chk-item-img {
  width: 52px; height: 52px; border-radius: 8px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chk-item-initials {
  font-family: var(--font-title); font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
}

/* ── RESERVED TIMER ─────────────────────────────────────────────── */
.chk-reserved {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: #7C3AED;
  padding: 9px 13px;
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  transition: background 0.3s, border-color 0.3s;
}
.chk-reserved.urgent {
  color: #DC2626;
  background: rgba(220,38,38,0.07);
  border-color: rgba(220,38,38,0.25);
  animation: urgentShake 0.5s ease-in-out;
}
@keyframes urgentShake {
  0%,100% { transform:translateX(0); }
  25%     { transform:translateX(-3px); }
  75%     { transform:translateX(3px); }
}
.chk-reserved svg { flex-shrink:0; animation: tickRotate 2s linear infinite; }
@keyframes tickRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

