/* ==========================================================================
   ADIDAS ELEVATE — CORE STYLESHEET (UNIFIED DARK LUXURY SYSTEM)
   ========================================================================== */

/* Design Tokens & Root Variables */
:root {
  --bg-dark: #0A0B0E;
  --bg-darker: #060709;
  --bg-card: rgba(18, 20, 26, 0.85);

  --text-main: #FFFFFF;
  --text-muted: #A0A5B5;
  --text-dark: #0A0B0E;

  /* Pure Solid Accent Color #a98452 */
  --accent-gold: #a98452;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-gold-glass: 1px solid #a98452;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--theme-bg, #0A0B0E);
  color: var(--theme-text-primary, #FFFFFF);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Dynamic Custom Scrollbars for the 4 Colorway Themes */
html,
body,
body.theme-phantom {
  scrollbar-color: #b88d55 #16191e;
  scrollbar-width: thin;
}

html.theme-dune,
body.theme-dune {
  scrollbar-color: #34271C #bb895a;
  scrollbar-width: thin;
}

html.theme-slate,
body.theme-slate {
  scrollbar-color: #000000 #989898;
  scrollbar-width: thin;
}

html.theme-frost,
body.theme-frost {
  scrollbar-color: #0f172a #f1f1f1;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #16191e;
}

::-webkit-scrollbar-thumb {
  background: #b88d55;
  border-radius: 5px;
  border: 2px solid #16191e;
}

/* ==========================================================================
   DYNAMIC COLORWAY THEME SYSTEM (PHANTOM, DUNE, SLATE, FROST)
   ========================================================================== */

/* ==========================================================================
   DYNAMIC COLORWAY THEME SYSTEM (PHANTOM, DUNE, SLATE, FROST)
   ========================================================================== */

/* 1. ELEVATE PHANTOM (Default Dark Luxury #16191e & Matte Gold) */
body,
body.theme-phantom {
  --theme-bg: #16191e;
  --theme-card-bg: rgba(30, 34, 44, 0.95);
  --theme-card-hover: rgba(40, 45, 60, 0.95);
  --theme-input-bg: rgba(22, 25, 30, 0.9);
  --theme-modal-bg: #1A1D24;
  --theme-accent: #b88d55;
  --theme-accent-hover: #c99e63;
  --theme-accent-light: rgba(184, 141, 85, 0.2);
  --theme-text-primary: #FFFFFF;
  --theme-text-secondary: rgba(255, 255, 255, 0.75);
  --theme-text-muted: rgba(255, 255, 255, 0.55);
  --theme-border: rgba(184, 141, 85, 0.25);
  --theme-border-subtle: rgba(255, 255, 255, 0.1);
  --theme-glow: rgba(184, 141, 85, 0.35);
  --theme-shadow: rgba(0, 0, 0, 0.5);
  --theme-badge-bg: #b88d55;
  --theme-badge-text: #16191e;
  --theme-svg-stroke: #FFFFFF;

  --bg-dark: #16191e;
  --bg-card: rgba(30, 34, 44, 0.95);
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.55);
  --accent-gold: #b88d55;

  background-color: var(--theme-bg);
  color: var(--theme-text-primary);
}

/* 2. ELEVATE DUNE (Warm Sand #bb895a & Deep Earth Brown #3e2917 System) */
body.theme-dune {
  --theme-bg: #bb895a;
  --theme-card-bg: #bb895a;
  --theme-card-hover: #aa794b;
  --theme-input-bg: #bb895a;
  --theme-modal-bg: #bb895a;
  --theme-accent: #3e2917;
  --theme-accent-hover: #27180c;
  --theme-accent-light: rgba(62, 41, 23, 0.12);
  --theme-text-primary: #3e2917;
  --theme-text-secondary: rgba(62, 41, 23, 0.85);
  --theme-text-muted: rgba(62, 41, 23, 0.65);
  --theme-border: rgba(62, 41, 23, 0.2);
  --theme-border-subtle: rgba(62, 41, 23, 0.12);
  --theme-glow: rgba(62, 41, 23, 0.15);
  --theme-shadow: rgba(62, 41, 23, 0.15);
  --theme-badge-bg: #3e2917;
  --theme-badge-text: #bb895a;
  --theme-svg-stroke: #3e2917;

  --bg-dark: #bb895a;
  --bg-card: #bb895a;
  --text-main: #3e2917;
  --text-muted: rgba(62, 41, 23, 0.65);
  --accent-gold: #3e2917;

  background-color: var(--theme-bg);
  color: var(--theme-text-primary);
}

/* Specific Dune Hero Navigation & Subheadline Quote Overrides */
body.theme-dune .main-nav .nav-link {
  color: #f7e6cc !important;
}

body.theme-dune .main-nav .nav-item:not(.active):hover .nav-link,
body.theme-dune .main-nav .nav-item:not(.active) .nav-link:hover {
  color: #ffffff !important;
}

body.theme-dune .main-nav .nav-item.active .nav-link {
  color: #3e2917 !important;
}

body.theme-dune .main-nav .active-dot {
  background-color: #3e2917 !important;
}

body.theme-dune .cart-btn {
  color: #3e2917 !important;
}

body.theme-dune .cart-icon-svg path {
  stroke: #3e2917 !important;
}

body.theme-dune .hero-subheadline {
  color: #3e2917 !important;
}

body.theme-dune #variantLabelText,
body.theme-dune .variant-label-text {
  color: #3e2917 !important;
}

body.theme-dune .btn-reserve {
  color: #f7e6cc !important;
}

body.theme-dune .btn-learn {
  background: #845b33 !important;
  color: #f7e6cc !important;
}

body.theme-dune .btn-learn:hover {
  background: #986a3c !important;
  color: #f7e6cc !important;
}

/* 3. ELEVATE SLATE (Slate Platinum #989898 System - Pure Black #000000 Controls) */
body.theme-slate {
  --theme-bg: #989898;
  --theme-card-bg: #989898;
  --theme-card-hover: #8C8C8C;
  --theme-input-bg: #989898;
  --theme-modal-bg: #989898;
  --theme-accent: #000000;
  --theme-accent-hover: #1A1A1A;
  --theme-accent-light: rgba(0, 0, 0, 0.08);
  --theme-text-primary: #000000;
  --theme-text-secondary: #111111;
  --theme-text-muted: #222222;
  --theme-border: rgba(0, 0, 0, 0.2);
  --theme-border-subtle: rgba(0, 0, 0, 0.12);
  --theme-glow: rgba(0, 0, 0, 0.1);
  --theme-shadow: rgba(0, 0, 0, 0.1);
  --theme-badge-bg: #000000;
  --theme-badge-text: #989898;
  --theme-svg-stroke: #000000;

  --bg-dark: #989898;
  --bg-card: #989898;
  --text-main: #000000;
  --text-muted: #222222;
  --accent-gold: #000000;

  background-color: var(--theme-bg);
  color: var(--theme-text-primary);
}

/* 4. ELEVATE FROST (Clean Light Mode System - #f1f1f1 Soft White) */
body.theme-frost {
  --theme-bg: #f1f1f1;
  --theme-card-bg: #f1f1f1;
  --theme-card-hover: #e2e2e2;
  --theme-input-bg: #f1f1f1;
  --theme-modal-bg: #f1f1f1;
  --theme-accent: #0F172A;
  --theme-accent-hover: #334155;
  --theme-accent-light: rgba(15, 23, 42, 0.08);
  --theme-text-primary: #0F172A;
  --theme-text-secondary: #334155;
  --theme-text-muted: #64748B;
  --theme-border: rgba(15, 23, 42, 0.15);
  --theme-border-subtle: rgba(0, 0, 0, 0.08);
  --theme-glow: rgba(15, 23, 42, 0.1);
  --theme-shadow: rgba(0, 0, 0, 0.08);
  --theme-badge-bg: #0F172A;
  --theme-badge-text: #f1f1f1;
  --theme-svg-stroke: #0F172A;

  --bg-dark: #f1f1f1;
  --bg-card: #f1f1f1;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --accent-gold: #0F172A;

  background-color: var(--theme-bg);
  color: var(--theme-text-primary);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: var(--theme-bg, #0A0B0E);
  color: var(--theme-text-primary, #FFFFFF);
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Dynamic Accent Elements Across Entire Site */
.highlight-gold,
.highlight-brand,
.locomotion-tag-text,
.reviews-gold-tag,
.community-gold-tag,
.footer-col-title,
.footer-link:hover,
.loco-card-num {
  color: var(--theme-accent, #b88d55) !important;
  transition: color 0.4s ease;
}

.locomotion-gold-line,
.footer-title-line-gold,
.footer-brand-subtag-gold,
.reviews-pagination-dots .dot.active,
.editorial-lifestyle-btn,
.newsletter-subscribe-btn,
.subscribe-btn-circle {
  background: var(--theme-accent, #b88d55) !important;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.editorial-lifestyle-btn:hover,
.newsletter-subscribe-btn:hover,
.subscribe-btn-circle:hover {
  background: var(--theme-accent-hover, #c99e63) !important;
}

.author-avatar-img,
.author-avatar-circle {
  background: linear-gradient(135deg, var(--theme-accent, #b88d55) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
  transition: background 0.4s ease;
}

.card-quote-icon {
  color: var(--theme-accent-light, rgba(184, 141, 85, 0.35)) !important;
  transition: color 0.4s ease;
}

/* Sections with Dynamic Theme Backgrounds & Dividers */
.athlete-reviews-section,
.deep-dive-section,
.editorial-community-section,
.editorial-footer-v2 {
  background-color: var(--theme-bg, #0A0B0E) !important;
  transition: background-color 0.5s ease;
}

.athlete-reviews-section::before,
.athlete-reviews-section::after {
  background: linear-gradient(90deg, transparent 0%, var(--theme-accent, #b88d55) 50%, transparent 100%) !important;
  box-shadow: 0 0 14px var(--theme-glow, rgba(184, 141, 85, 0.35)) !important;
  transition: all 0.5s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   HEADER & NAVIGATION (ABS-CENTERED NAV WITH ENLARGED TEXT)
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 100;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header-container {
  max-width: 1820px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-item:hover .nav-link {
  color: var(--text-main);
}

.nav-item.active .nav-link {
  color: var(--theme-accent) !important;
  font-weight: 700;
  text-shadow: none !important;
}

.active-dot {
  width: 5px;
  height: 5px;
  background-color: var(--theme-accent) !important;
  border-radius: 50%;
  position: absolute;
  bottom: -8px;
  box-shadow: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
}

.cart-btn {
  position: relative;
  color: var(--theme-text-primary);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.3s ease;
}

.cart-icon-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.cart-icon-svg path {
  stroke: var(--theme-svg-stroke, currentColor);
}

.cart-btn:hover {
  transform: scale(1.1);
  color: var(--theme-accent);
}

.cart-badge {
  position: absolute;
  bottom: 2px;
  right: 0px;
  background: var(--theme-badge-bg) !important;
  color: var(--theme-badge-text) !important;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

/* ==========================================================================
   HERO MAIN SECTION (FULL-SCREEN BACKGROUND CANVAS)
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--theme-bg);
}

/* Full-Screen Background Image Layers */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
}

.hero-bg-layer.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

/* Vignette Overlay REMOVED completely */
.hero-vignette-overlay {
  display: none !important;
}

/* Interactive Content Layer Over the Background */
.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 130px 40px 45px 40px;
  pointer-events: none;
}

/* Sub-headline: Larger Text Size (1.15rem) */
.hero-subheadline-wrapper {
  margin-top: 10px;
  text-align: center;
  pointer-events: auto;
}

.hero-subheadline {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--theme-accent);
  text-transform: uppercase;
  text-shadow: none !important;
  filter: none !important;
  transition: color 0.4s ease;
}

.hero-subheadline .mobile-br {
  display: none;
}

.hero-subheadline .desktop-space {
  display: inline;
}

body.theme-dune #heroSubheadline,
body.theme-dune .hero-subheadline {
  color: #3e2917 !important;
}

/* Vertical Variant Dot Selector (Right Side) — ENLARGED CIRCLES
   On desktop: absolute from .hero-section (breaks out of hero-bottom-bar)
   On mobile: static, flows in flex column with order property */
.color-picker-column {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 30;
  pointer-events: auto;
}

.color-dot-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.color-dot-btn:hover {
  transform: scale(1.15);
}

.dot-fill {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 2;
}

.active-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--theme-accent) !important;
  box-shadow: none !important;
  animation: none !important;
  z-index: 1;
}

/* Tooltip for Dots */
.color-dot-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.color-dot-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Hero Bottom Control Toolbar */
.hero-bottom-bar {
  width: 100%;
  max-width: 1820px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  z-index: 30;
  padding-bottom: 5px;
  pointer-events: auto;
  /* NOTE: no position:relative here — color-picker-column positions from hero-section */
}

/* Slide Progress Indicator (Left Side) */
.slide-indicator {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--theme-text-muted);
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}

.slide-num.active {
  color: var(--theme-accent) !important;
  font-weight: 700;
  text-shadow: none !important;
}

.slide-track {
  width: 90px;
  height: 2px;
  background: var(--theme-border-subtle);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.slide-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--theme-accent) !important;
  box-shadow: none !important;
  transition: width 0.4s ease, left 0.4s ease;
}

/* Center Action CTA Buttons */
.hero-cta-group {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-reserve {
  background: rgba(18, 20, 26, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-reserve:hover {
  background: rgba(32, 37, 50, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-2px);
}

.btn-learn {
  background: var(--theme-accent) !important;
  color: var(--theme-badge-text) !important;
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  filter: none !important;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-learn:hover {
  background: var(--theme-accent-hover) !important;
  color: var(--theme-badge-text) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4) !important;
  filter: none !important;
  transform: translateY(-2px);
}

/* Variant Label Text (Right Side) */
.variant-label-wrapper {
  justify-self: end;
  text-align: right;
}

.variant-label-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--theme-accent) !important;
  text-transform: uppercase;
  text-shadow: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

/* ==========================================================================
   THEME SPECIFIC HERO OVERRIDES (EXACT DESIGN FROM FIX.ZIP)
   ========================================================================== */

/* 1. ELEVATE PHANTOM */
body.theme-phantom {
  --text-main: #FFFFFF;
  --accent-gold: #a98452;
}

body.theme-phantom .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
}

body.theme-phantom .nav-link {
  color: var(--text-muted);
}

body.theme-phantom .nav-link:hover {
  color: #FFFFFF;
}

body.theme-phantom .nav-item.active .nav-link {
  color: #a98452 !important;
  font-weight: 700;
  text-shadow: none !important;
}

body.theme-phantom .active-dot {
  background-color: #a98452 !important;
  box-shadow: none !important;
}

body.theme-phantom .cart-btn {
  color: #FFFFFF;
}

body.theme-phantom .cart-badge {
  background: #a98452 !important;
  color: #FFFFFF !important;
}

body.theme-phantom .hero-subheadline {
  color: #a98452 !important;
  text-shadow: none !important;
}

body.theme-phantom .variant-label-text {
  color: #a98452 !important;
  text-shadow: none !important;
}

body.theme-phantom .btn-reserve {
  background: rgba(28, 31, 38, 0.85) !important;
  color: #FFFFFF !important;
  border: none !important;
}

body.theme-phantom .btn-reserve:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

body.theme-phantom .btn-learn {
  background: #a98452 !important;
  color: #FFFFFF !important;
  border: none !important;
}

body.theme-phantom .btn-learn:hover {
  background: #b8925d !important;
  color: #FFFFFF !important;
}

body.theme-phantom .slide-progress {
  background: #a98452 !important;
  box-shadow: none !important;
}

body.theme-phantom .active-ring {
  border-color: #a98452 !important;
  box-shadow: none !important;
}

/* 2. ELEVATE FROST */
body.theme-frost {
  --text-main: #000000;
  --text-muted: #374151;
  --accent-gold: #000000;
}

body.theme-frost .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
}

body.theme-frost .nav-link {
  color: #374151 !important;
  font-weight: 600;
}

body.theme-frost .nav-link:hover {
  color: #000000 !important;
}

body.theme-frost .nav-item.active .nav-link {
  color: #000000 !important;
  font-weight: 800;
}

body.theme-frost .active-dot {
  background-color: #000000 !important;
  box-shadow: none !important;
}

body.theme-frost .cart-btn {
  color: #000000 !important;
}

body.theme-frost .cart-badge {
  background: #000000 !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

body.theme-frost .hero-subheadline {
  color: #000000 !important;
  font-weight: 600 !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 0.9;
}

body.theme-frost .variant-label-text {
  color: #000000 !important;
  font-weight: 800;
  text-shadow: none !important;
}

body.theme-frost .slide-indicator {
  color: #374151 !important;
}

body.theme-frost .slide-num.active {
  color: #000000 !important;
  font-weight: 800;
}

body.theme-frost .slide-track {
  background: rgba(0, 0, 0, 0.25) !important;
}

body.theme-frost .slide-progress {
  background: #000000 !important;
  box-shadow: none !important;
}

body.theme-frost .btn-reserve {
  background: #f1f1f1 !important;
  color: #000000 !important;
  border: none !important;
}

body.theme-frost .btn-reserve:hover {
  background: #e2e2e2 !important;
  color: #000000 !important;
}

body.theme-frost .btn-learn {
  background: #000000 !important;
  color: #f1f1f1 !important;
  border: none !important;
}

body.theme-frost .btn-learn:hover {
  background: #1F2937 !important;
  color: #f1f1f1 !important;
}

body.theme-frost .color-dot-btn::after {
  background: #f1f1f1;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

body.theme-frost .active-ring {
  border-color: #000000 !important;
  box-shadow: none !important;
}

/* 3. ELEVATE DUNE (Cart Badge Circle Background #34271C, Number 2 is #f7e6cc) */
body.theme-dune {
  --text-main: #FFFFFF;
  --accent-gold: #f7e6cc;
}

body.theme-dune .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
}

body.theme-dune .nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
}

body.theme-dune .nav-link:hover {
  color: #f7e6cc !important;
}

body.theme-dune .nav-item.active .nav-link {
  color: #f7e6cc !important;
  font-weight: 800;
}

body.theme-dune .active-dot {
  background-color: #f7e6cc !important;
  box-shadow: none !important;
}

body.theme-dune .cart-btn {
  color: #f7e6cc !important;
}

body.theme-dune .cart-badge {
  background: #34271C !important;
  color: #f7e6cc !important;
  box-shadow: none !important;
}

body.theme-dune .hero-subheadline {
  color: #f7e6cc !important;
  text-shadow: none !important;
}

body.theme-dune .variant-label-text {
  color: #f7e6cc !important;
  text-shadow: none !important;
}

body.theme-dune .slide-indicator {
  color: #FFFFFF !important;
}

body.theme-dune .slide-indicator,
body.theme-dune .slide-num {
  color: #3e2917 !important;
}

body.theme-dune .slide-num.active {
  color: #3e2917 !important;
  font-weight: 800;
}

body.theme-dune .slide-progress {
  background: #3e2917 !important;
  box-shadow: none !important;
}

body.theme-dune .btn-reserve {
  background: #34271C !important;
  border: none !important;
  color: #f7e6cc !important;
  box-shadow: 0 10px 25px rgba(52, 39, 28, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

body.theme-dune .btn-reserve:hover {
  background: #453425 !important;
  color: #f7e6cc !important;
  box-shadow: 0 14px 35px rgba(52, 39, 28, 0.6), 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

body.theme-dune .btn-learn {
  background: #845b33 !important;
  color: #f7e6cc !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(132, 91, 51, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

body.theme-dune .btn-learn:hover {
  background: #986a3c !important;
  color: #f7e6cc !important;
  box-shadow: 0 14px 35px rgba(132, 91, 51, 0.6), 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

body.theme-dune .active-ring {
  border-color: #f7e6cc !important;
  box-shadow: none !important;
}

body.theme-dune #variantLabelText,
body.theme-dune .variant-label-text {
  color: #3e2917 !important;
}

/* 4. ELEVATE SLATE (Exact Original Hero Controls from Fix.zip) */
body.theme-slate {
  --text-main: #000000;
  --text-muted: #E6E6E6;
  --accent-gold: #000000;
}

body.theme-slate .site-header {
  background: transparent !important;
  backdrop-filter: none !important;
}

body.theme-slate .nav-link {
  color: #000000 !important;
  font-weight: 600;
}

body.theme-slate .nav-link:hover {
  color: #222222 !important;
}

body.theme-slate .nav-item.active .nav-link {
  color: #000000 !important;
  font-weight: 800;
}

body.theme-slate .active-dot {
  background-color: #000000 !important;
}

body.theme-slate .cart-btn {
  color: #000000 !important;
}

body.theme-slate .cart-icon-svg path {
  stroke: #000000 !important;
}

body.theme-slate .cart-badge {
  background: #000000 !important;
  color: #E6E6E6 !important;
}

body.theme-slate .hero-subheadline {
  color: #000000 !important;
  font-weight: 600 !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 0.9;
}

body.theme-slate .variant-label-text {
  color: #000000 !important;
  font-weight: 800;
  text-shadow: none !important;
}

body.theme-slate .slide-indicator {
  color: #000000 !important;
}

body.theme-slate .slide-num {
  color: #000000 !important;
}

body.theme-slate .slide-num.active {
  color: #000000 !important;
  font-weight: 800;
}

body.theme-slate .slide-track {
  background: rgba(0, 0, 0, 0.4) !important;
}

body.theme-slate .slide-progress {
  background: #000000 !important;
}

body.theme-slate .btn-reserve {
  background: #e8e6e6 !important;
  color: #000000 !important;
  border: none !important;
}

body.theme-slate .btn-reserve:hover {
  background: #D8D8D8 !important;
  color: #000000 !important;
}

body.theme-slate .btn-learn {
  background: #000000 !important;
  color: #E6E6E6 !important;
  border: none !important;
}

body.theme-slate .btn-learn:hover {
  background: #1A1A1A !important;
  color: #FFFFFF !important;
}

body.theme-slate .color-dot-btn::after {
  background: #E6E6E6;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

body.theme-slate .active-ring {
  border-color: #000000 !important;
}

/* Core components consume design tokens directly from :root and body.theme-* */

/* ==========================================================================
   DEEP DIVE / TECH INNOVATIONS SECTION (WITH HEADER CLEARANCE)
   ========================================================================== */

.deep-dive-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg);
  padding: 100px 40px;
  color: var(--theme-text-primary);
  overflow: hidden;
  border-top: 1px solid var(--theme-border-subtle) !important;
}

.deep-dive-section::before {
  display: none !important;
}

.locomotion-ref-container {
  max-width: 1820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Left Content Column */
.locomotion-left-content {
  display: flex;
  flex-direction: column;
  max-width: 580px;
}

.locomotion-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.locomotion-gold-line {
  width: 28px;
  height: 2px;
  background: var(--theme-accent);
}

.locomotion-tag-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--theme-accent);
  text-transform: uppercase;
}

.locomotion-hero-title {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--theme-text-primary);
  margin-bottom: 20px;
}

.locomotion-hero-title .highlight-gold {
  color: var(--theme-accent);
}

.locomotion-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Stacked Horizontal Cards */
.locomotion-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loco-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.loco-card:hover {
  transform: translateX(6px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
}

.loco-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme-accent-light);
  border: 1px solid var(--theme-border);
  color: var(--theme-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.loco-card-body {
  flex: 1;
}

.loco-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--theme-text-primary);
  margin-bottom: 4px;
}

.loco-card-desc {
  font-size: 0.85rem;
  color: var(--theme-text-secondary);
  line-height: 1.45;
}

.loco-card-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--theme-accent);
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-left: 10px;
}

/* Right Stage Layout */
.locomotion-right-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.loco-shoe-ref {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.95));
  animation: levitateShoe 4.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  transition: transform 0.5s ease;
}

@keyframes levitateShoe {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-20px) rotate(-1.5deg);
  }
}

/* Callout Leader Lines */
.loco-callout {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.callout-box {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 12px;
  max-width: 210px;
}

.callout-title {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--theme-accent);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.callout-desc {
  font-size: 0.75rem;
  color: var(--theme-text-secondary);
  line-height: 1.35;
}

.callout-line-svg {
  flex-shrink: 0;
  overflow: visible;
}

.callout-line-svg polyline {
  stroke: var(--theme-text-primary);
  fill: none !important;
  stroke-width: 2px;
}

.callout-line-svg circle {
  stroke: var(--theme-text-primary);
}

.callout-line-svg circle[fill="none"] {
  fill: none !important;
}

.callout-line-svg circle:not([fill="none"]) {
  fill: var(--theme-text-primary);
}

/* Specific Positions matching Reference Image 2 */
.callout-zoned {
  top: 14%;
  left: 20%;
}

.callout-lattice {
  top: 50%;
  left: 8%;
}

.callout-continental {
  bottom: 12%;
  right: 15%;
}

.tech-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
}

.tech-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--theme-accent-light);
  border: 1px solid var(--theme-border);
  color: var(--theme-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.tech-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--theme-text-primary);
  margin-bottom: 12px;
}

.tech-card-desc {
  font-size: 0.95rem;
  color: var(--theme-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   1. BESTSELLERS CAROUSEL / GRID (UNIFIED DARK MODE)
   ========================================================================== */

.bestsellers-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg);
  padding: 100px 40px;
  color: var(--theme-text-primary);
  border: none !important;
}

.bestsellers-container {
  max-width: 1820px;
  margin: 0 auto;
}

.bestsellers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}

.bestsellers-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--theme-text-primary);
}

.see-all-link {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--theme-accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.see-all-link:hover {
  color: var(--theme-text-primary);
  gap: 12px;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.bestseller-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 24px;
  padding: 24px 22px 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.bestseller-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
  box-shadow: 0 15px 35px var(--theme-shadow);
}

.wishlist-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme-card-hover);
  color: var(--theme-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  z-index: 2;
  border: 1px solid var(--theme-border-subtle);
  cursor: pointer;
}

.wishlist-btn:hover {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  border-color: var(--theme-accent);
}

.bs-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--theme-text-muted);
  background: var(--theme-card-hover);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid var(--theme-border-subtle);
  z-index: 2;
  text-transform: uppercase;
}

.bs-badge.sale-badge {
  background: var(--theme-card-hover);
  color: var(--theme-text-secondary);
  border-color: var(--theme-border-subtle);
}

.bs-img-wrapper {
  height: 240px;
  border-radius: 0;
  overflow: visible;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 10px 0;
  position: relative;
  border: none !important;
}

.bs-img-wrapper img {
  max-height: 220px;
  width: 90%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.22);
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.bestseller-card:hover .bs-img-wrapper img {
  transform: scale(1.32) translateY(-6px);
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.4));
}

.bs-info {
  margin-top: auto;
}

.bs-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.bs-desc {
  font-size: 0.82rem;
  color: var(--theme-text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.bs-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bs-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--theme-text-primary);
}

.bs-old-price {
  font-size: 0.85rem;
  color: var(--theme-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 500;
}

.bs-cart-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--theme-card-hover);
  border: 1px solid var(--theme-border-subtle);
  color: var(--theme-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bs-cart-btn:hover {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  border-color: var(--theme-accent);
  transform: scale(1.1);
}

/* ==========================================================================
   DYNAMIC STAGGERED COLORWAYS SHOWCASE ("EVERYONE I ADIDAS IT.")
   ========================================================================== */

.colorways-showcase-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 100px 60px;
  color: var(--theme-text-primary);
  overflow: hidden;
  border: none !important;
}

.colorways-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* Ambient subtle background glow removed */
.colorways-container::before {
  display: none !important;
}

.colorways-header-row {
  margin-bottom: 50px;
  text-align: right;
  position: relative;
  z-index: 3;
  padding-right: 120px;
}

.colorways-sublabel {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--theme-accent);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.colorways-main-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--theme-text-primary);
}

.highlight-brand {
  color: var(--theme-accent);
}

.colorways-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

.colorways-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex: 1;
  max-width: 1350px;
}

.color-card {
  border-radius: 20px;
  padding: 28px 24px 20px 24px;
  position: relative;
  overflow: visible !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
}

.color-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.raised-card {
  transform: translateY(-30px);
}

.raised-card:hover {
  transform: translateY(-40px);
}

.card-brand-logo {
  height: 130px;
  width: auto;
  position: absolute;
  top: 50%;
  right: -42px;
  z-index: 15;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  opacity: 0.88;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.color-card:hover .card-brand-logo {
  transform: translateY(-50%) rotate(-90deg) scale(1.08);
  opacity: 1;
}

.card-crimson {
  background: linear-gradient(145deg, #B91C1C 0%, #7F1D1D 100%);
  color: #FFFFFF;
}

.card-amber {
  background: linear-gradient(145deg, #B45309 0%, #78350F 100%);
  color: #FFFFFF;
}

.card-cobalt {
  background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.card-num-watermark {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4.5rem;
  font-weight: 900;
  opacity: 0.28;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.card-bg-text {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7.5rem;
  font-weight: 900;
  opacity: 0.12;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 1;
}

.color-card-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.color-card-img-wrapper img {
  position: absolute;
  top: -75px;
  left: -65px;
  width: 380px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain;
  filter: drop-shadow(-25px 25px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.color-card:hover .color-card-img-wrapper img {
  transform: scale(1.06) translateY(-8px) rotate(-2deg);
}

.color-card-body {
  position: relative;
  z-index: 12;
  margin-top: auto;
}

.color-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 2px;
  color: #FFFFFF;
}

.color-card-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.color-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.color-card-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
}

.color-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #E53E3E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.color-add-btn:hover {
  transform: scale(1.12);
}

.color-add-btn.accent-btn {
  background: #E53E3E;
  color: #FFFFFF;
}

.vertical-text-accent {
  writing-mode: vertical-rl;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--theme-border-subtle);
  user-select: none;
  margin-left: 20px;
  align-self: center;
}

/* ==========================================================================
   EDITORIAL SPOTLIGHT & NEW ARRIVALS ("FOOTWEAR OF THE WEEK")
   ========================================================================== */

.spotlight-arrivals-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 100px 40px;
  color: var(--theme-text-primary);
  border: none !important;
}

.spotlight-container {
  max-width: 1820px;
  margin: 0 auto;
}

.spotlight-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.spotlight-card {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
}

.spotlight-hollow-watermark {
  position: absolute;
  top: 25px;
  left: 30px;
  font-size: 4.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--theme-border);
  letter-spacing: 0.08em;
  pointer-events: none;
}

.spotlight-bottom-hollow-watermark {
  position: absolute;
  bottom: 25px;
  right: 30px;
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--theme-border);
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 3;
}

.spotlight-img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.spotlight-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.spotlight-card:hover .spotlight-img-box img {
  transform: scale(1.05);
  opacity: 0.8;
}

.spotlight-video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.spotlight-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.spotlight-card:hover .spotlight-video {
  transform: scale(1.05);
  opacity: 1;
}

.spotlight-card-content {
  position: relative;
  z-index: 3;
}

.spotlight-card-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--theme-text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.spotlight-shop-btn {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--theme-accent);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.spotlight-card:hover .spotlight-shop-btn {
  color: var(--theme-text-primary);
  gap: 14px;
}

.line-sep {
  letter-spacing: -2px;
  color: var(--theme-accent);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--theme-card-bg);
  backdrop-filter: blur(10px);
  color: var(--theme-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid var(--theme-border-subtle);
  cursor: pointer;
  z-index: 4;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 15px 35px var(--theme-shadow);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--theme-card-hover);
}

.spotlight-top-tag {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--theme-text-primary);
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  padding: 6px 18px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 3;
  letter-spacing: 0.05em;
}

.new-arrivals-box {
  margin-top: 50px;
}

.new-arrivals-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--theme-text-primary);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.arrival-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 24px;
  padding: 24px 22px 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.arrival-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
  box-shadow: 0 15px 35px var(--theme-shadow);
}

.arrival-img-box {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 10px 0;
  position: relative;
  background: transparent !important;
  border: none !important;
}

.arrival-img-box img {
  max-height: 220px;
  width: 90%;
  object-fit: contain;
  transform: scale(1.22);
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.arrival-card:hover .arrival-img-box img {
  transform: scale(1.32) translateY(-6px);
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.4));
}

.arrival-info {
  margin-top: auto;
}

.arrival-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  text-align: left;
}

.arrival-desc {
  font-size: 0.82rem;
  color: var(--theme-text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: left;
}

.arrival-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrival-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--theme-text-primary);
}

/* ==========================================================================
   2. CATEGORY BANNERS 2x2 GRID (UNIFIED DARK MODE)
   ========================================================================== */

.category-grid-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 100px 40px;
  border: none !important;
}

.lifestyle-layout-container {
  max-width: 1820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Text & CTA Button */
.lifestyle-text-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lifestyle-main-title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--theme-text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.lifestyle-main-title .highlight-gold {
  color: var(--theme-accent);
}

.lifestyle-main-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}

.lifestyle-btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px var(--theme-glow);
}

.lifestyle-btn-action:hover {
  background: var(--theme-accent-hover);
  color: var(--theme-badge-text);
  transform: translateY(-2px);
}

/* Right Column: Photo Mosaic Grid (Exact match to reference layout) */
.lifestyle-photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 210px 290px 200px;
  gap: 20px;
  height: 520px;
}

.mosaic-item {
  position: relative;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid var(--theme-border-subtle);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.mosaic-item:hover {
  transform: scale(1.03);
  border-color: var(--theme-border);
  box-shadow: 0 16px 36px var(--theme-shadow);
  z-index: 2;
}

/* Grid placement matching reference layout */
.item-top-left {
  grid-column: 1;
  grid-row: 1;
}

.item-large-center {
  grid-column: 1;
  grid-row: 2 / 4;
}

.item-tall-right {
  grid-column: 2;
  grid-row: 1 / 3;
}

.item-bottom-right {
  grid-column: 2;
  grid-row: 3;
}

/* ==========================================================================
   3. TECHNOLOGIES FOR YOUR MOTION (UNIFIED DARK MODE)
   ========================================================================== */

.motion-tech-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 100px 40px;
  color: var(--theme-text-primary);
  border: none !important;
}

.motion-tech-container {
  max-width: 1820px;
  margin: 0 auto;
}

.motion-tech-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--theme-text-primary);
  margin-bottom: 45px;
  text-transform: uppercase;
}

.motion-tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.motion-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 20px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.motion-card:hover {
  transform: translateY(-6px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
}

.motion-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme-accent-light);
  border: 1px solid var(--theme-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--theme-accent);
  margin-bottom: 20px;
}

.motion-name {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--theme-text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.motion-desc {
  font-size: 0.8rem;
  color: var(--theme-text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   4. VIP CLUB MEMBER BANNER (UNIFIED DARK MODE)
   ========================================================================== */

.vip-club-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 100px 40px;
  border: none !important;
}

.vip-club-container {
  max-width: 1820px;
  margin: 0 auto;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 32px;
  padding: 55px 65px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.vip-card-graphic {
  width: 240px;
  height: 150px;
  background: var(--theme-card-hover);
  border: 1px solid var(--theme-border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px var(--theme-shadow);
  color: var(--theme-text-primary);
  position: relative;
}

.vip-card-chip {
  width: 34px;
  height: 25px;
  background: var(--theme-accent);
  border-radius: 5px;
}

.vip-card-brand {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--theme-accent);
}

.vip-card-tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.85;
  color: var(--theme-text-secondary);
}

.vip-club-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--theme-text-primary);
  margin-bottom: 8px;
}

.vip-club-desc {
  font-size: 0.95rem;
  color: var(--theme-text-secondary);
  margin-bottom: 25px;
  max-width: 580px;
  line-height: 1.5;
}

.vip-perks-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.vip-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--theme-text-primary);
}

.vip-perk-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--theme-accent-light);
  border: 1px solid var(--theme-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--theme-accent);
}

.vip-club-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-vip-join {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-vip-join:hover {
  background: var(--theme-accent-hover);
  transform: translateY(-2px);
}

.vip-free-note {
  font-size: 0.75rem;
  color: var(--theme-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   NEW MODERN EDITORIAL SECTIONS (UNIFIED DARK MODE)
   ========================================================================== */

/* Section 1: Modern Editorial Catalog Showcase */
.editorial-catalog-section {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 100px 40px;
  color: var(--theme-text-primary);
  border: none !important;
}

.editorial-catalog-container {
  max-width: 1820px;
  margin: 0 auto;
}

.editorial-header-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.editorial-main-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--theme-text-primary);
  text-transform: uppercase;
}

.editorial-header-desc {
  font-size: 1rem;
  color: var(--theme-text-secondary);
  line-height: 1.5;
  max-width: 500px;
}

.editorial-btn-all {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  padding: 14px 32px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  justify-self: end;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--theme-glow);
}

.editorial-btn-all:hover {
  background: var(--theme-accent-hover);
  transform: translateY(-2px);
}

.editorial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.editorial-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 24px;
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.editorial-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
  box-shadow: 0 15px 35px var(--theme-shadow);
}

.editorial-card-img-wrapper {
  height: 240px;
  border-radius: 0;
  overflow: visible;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 10px 0;
  border: none !important;
}

.editorial-card-img-wrapper img {
  max-height: 220px;
  width: 90%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.22);
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.editorial-card:hover .editorial-card-img-wrapper img {
  transform: scale(1.32) translateY(-6px);
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.4));
}

/* Specific shoe image scale equalizer to match large assets */
.bs-img-wrapper img[src*="Ele_Phantom"],
.editorial-card-img-wrapper img[src*="Ele_Phantom"],
.arrival-img-box img[src*="Ele_Phantom"],
.bs-img-wrapper img[src*="Ele_dune"],
.editorial-card-img-wrapper img[src*="Ele_dune"],
.arrival-img-box img[src*="Ele_dune"],
.bs-img-wrapper img[src*="Ele_slate"],
.editorial-card-img-wrapper img[src*="Ele_slate"],
.arrival-img-box img[src*="Ele_slate"],
.bs-img-wrapper img[src*="Ele_vortex3"],
.editorial-card-img-wrapper img[src*="Ele_vortex3"],
.arrival-img-box img[src*="Ele_vortex3"],
.bs-img-wrapper img[src*="shoe_crimson"],
.editorial-card-img-wrapper img[src*="shoe_crimson"],
.arrival-img-box img[src*="shoe_crimson"],
.bs-img-wrapper img[src*="Ele_cityflow"],
.editorial-card-img-wrapper img[src*="Ele_cityflow"],
.arrival-img-box img[src*="Ele_cityflow"] {
  transform: scale(1.58) !important;
}

.bestseller-card:hover .bs-img-wrapper img[src*="Ele_Phantom"],
.editorial-card:hover .editorial-card-img-wrapper img[src*="Ele_Phantom"],
.arrival-card:hover .arrival-img-box img[src*="Ele_Phantom"],
.bestseller-card:hover .bs-img-wrapper img[src*="Ele_dune"],
.editorial-card:hover .editorial-card-img-wrapper img[src*="Ele_dune"],
.arrival-card:hover .arrival-img-box img[src*="Ele_dune"],
.bestseller-card:hover .bs-img-wrapper img[src*="Ele_slate"],
.editorial-card:hover .editorial-card-img-wrapper img[src*="Ele_slate"],
.arrival-card:hover .arrival-img-box img[src*="Ele_slate"],
.bestseller-card:hover .bs-img-wrapper img[src*="Ele_vortex3"],
.editorial-card:hover .editorial-card-img-wrapper img[src*="Ele_vortex3"],
.arrival-card:hover .arrival-img-box img[src*="Ele_vortex3"],
.bestseller-card:hover .bs-img-wrapper img[src*="shoe_crimson"],
.editorial-card:hover .editorial-card-img-wrapper img[src*="shoe_crimson"],
.arrival-card:hover .arrival-img-box img[src*="shoe_crimson"],
.bestseller-card:hover .bs-img-wrapper img[src*="Ele_cityflow"],
.editorial-card:hover .editorial-card-img-wrapper img[src*="Ele_cityflow"],
.arrival-card:hover .arrival-img-box img[src*="Ele_cityflow"] {
  transform: scale(1.68) translateY(-6px) !important;
}

.editorial-card-info {
  margin-top: auto;
}

.editorial-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.editorial-card-category {
  font-size: 0.82rem;
  color: var(--theme-text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.editorial-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.editorial-card-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--theme-text-primary);
}

.editorial-card-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-card-bg);
  color: var(--theme-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid var(--theme-border-subtle);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.editorial-card-action-btn:hover {
  transform: scale(1.1);
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  border-color: var(--theme-accent);
}

/* ==========================================================================
   ATHLETE REVIEWS SECTION (MODERN SPEECH-BUBBLE CONTINUOUS AUTO-MARQUEE)
   ========================================================================== */

.athlete-reviews-section {
  position: relative;
  z-index: 10;
  background: var(--theme-bg);
  padding: 110px 0;
  color: var(--theme-text-primary);
  border-top: none !important;
  border-bottom: none !important;
  overflow: hidden;
  width: 100%;
}

/* Luxury Gold Faded Gradient Top & Bottom Dividers */
.athlete-reviews-section::before,
.athlete-reviews-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--theme-accent) 50%, transparent 100%);
  z-index: 2;
}

.athlete-reviews-section::before {
  top: 0;
  box-shadow: 0 0 14px var(--theme-glow);
}

.athlete-reviews-section::after {
  bottom: 0;
  box-shadow: 0 0 14px var(--theme-glow);
}

.reviews-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.reviews-header-centered .reviews-gold-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--theme-accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  display: block;
}

.reviews-header-centered .reviews-main-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--theme-text-primary);
  text-transform: uppercase;
  margin: 0;
}

/* Full Width Infinite Marquee Viewport & Track */
.reviews-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 40px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
  animation: reviewsInfiniteMarquee 42s linear infinite;
}

.reviews-marquee-viewport:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewsInfiniteMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Speech-Bubble Card Design */
.review-card-bubble {
  width: 410px;
  flex-shrink: 0;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 26px;
  padding: 38px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
  backdrop-filter: blur(12px);
}

.review-card-bubble:hover {
  transform: translateY(-8px);
  border-color: var(--theme-border);
  background: var(--theme-card-hover);
}

.card-quote-icon {
  font-size: 2.2rem;
  color: var(--theme-accent);
  margin-bottom: 18px;
  line-height: 1;
}

.review-quote-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-text-primary) !important;
  line-height: 1.48;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  flex: 1;
}

/* Author Tab at Bottom-Left */
.card-author-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  background: var(--theme-card-hover);
  border: 1px solid var(--theme-border-subtle);
  padding: 8px 18px 8px 10px;
  border-radius: 30px;
}

.author-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name-text {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--theme-text-primary) !important;
  margin: 0 0 1px 0;
}

.author-handle-text {
  font-size: 0.78rem;
  color: var(--theme-text-muted) !important;
}

/* Pagination Dots */
.reviews-pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.reviews-pagination-dots .dot {
  width: 10px;
  height: 6px;
  border-radius: 3px;
  background: var(--theme-border-subtle);
  transition: all 0.3s ease;
}

.reviews-pagination-dots .dot.active {
  width: 28px;
  background: var(--theme-accent);
}

/* Section 3: Modern Newsletter Banner (EXACT MATCH TO REFERENCE IMAGE 2) */
.editorial-community-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(to right, var(--theme-bg) 0%, var(--theme-bg) 18%, transparent 50%), url('assets/footyboy.PNG') center right/cover no-repeat !important;
  padding: 110px 40px;
  color: var(--theme-text-primary);
  border: none;
  border-top: 1px solid var(--theme-border-subtle) !important;
  border-bottom: 1px solid var(--theme-border-subtle) !important;
  overflow: hidden;
}

.editorial-community-container {
  max-width: 1820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.community-content-panel {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.community-gold-tag {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--theme-accent);
  margin: 0 0 14px 5px;
  padding: 0;
  text-transform: uppercase;
  display: block;
}

.community-main-headline {
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--theme-text-primary);
  margin: 0 0 24px 0;
  padding: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.community-main-headline .highlight-gold {
  color: var(--theme-accent);
}

.community-subtext {
  font-size: 1rem;
  color: var(--theme-text-secondary);
  line-height: 1.55;
  margin-bottom: 38px;
  max-width: 490px;
}

/* Integrated Pill Form */
.community-form-pill {
  display: flex;
  background: var(--theme-input-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 12px;
  padding: 4px;
  width: 100%;
  max-width: 680px;
  margin-bottom: 42px;
  backdrop-filter: blur(12px);
}

.community-form-pill input {
  flex: 1;
  min-width: 320px;
  border: none;
  background: transparent;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--theme-text-primary);
  outline: none;
  font-family: inherit;
}

.community-form-pill input::placeholder {
  color: var(--theme-text-muted);
}

.btn-community-subscribe {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  border: none;
  border-radius: 9px;
  padding: 14px 34px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.btn-community-subscribe:hover {
  background: var(--theme-accent-hover);
  transform: translateX(2px);
}

/* Social Circles Row */
.community-socials-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.socials-tag-text {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--theme-accent);
  text-transform: uppercase;
}

.socials-circles-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  color: var(--theme-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-circle-btn:hover {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  color: var(--theme-badge-text);
  transform: translateY(-3px);
}

/* ==========================================================================
   SITE FOOTER (100% EXACT MATCH TO REFERENCE IMAGE 2 & UPDATED LOGO)
   ========================================================================== */

.site-footer {
  position: relative;
  z-index: 10;
  background-color: var(--theme-bg) !important;
  padding: 80px 40px 40px 40px;
  color: var(--theme-text-primary);
  border-top: 1px solid var(--theme-border-subtle);
}

.footer-container {
  max-width: 1520px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr 0.95fr 1.3fr;
  gap: 52px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 65px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  align-self: flex-start !important;
  transform: none !important;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--theme-text-secondary);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 330px;
}

.footer-brand-subtag {
  position: relative;
  width: 100%;
  max-width: 330px;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid var(--theme-border-subtle);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--theme-accent);
  text-transform: uppercase;
  display: block;
}

.footer-gold-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--theme-accent);
}

/* Links Columns */
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--theme-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--theme-accent);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-link-list li {
  border-bottom: 1px solid var(--theme-border-subtle);
}

.footer-link-list li:last-child {
  border-bottom: none;
}

.footer-link-list a {
  display: block;
  width: 100%;
  padding: 11px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--theme-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--theme-text-primary);
}

.footer-club-desc {
  font-size: 0.92rem;
  color: var(--theme-text-secondary);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 310px;
}

/* Footer Input Field */
.footer-newsletter-form-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--theme-input-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: 40px;
  padding: 8px 8px 8px 24px;
  width: 100%;
  max-width: 440px;
}

.footer-newsletter-form-pill input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--theme-text-primary);
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  padding: 6px 0;
}

.footer-newsletter-form-pill input::placeholder {
  color: var(--theme-text-muted);
}

.footer-newsletter-form-pill button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-accent);
  color: var(--theme-badge-text) !important;
  font-weight: 900;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.footer-newsletter-form-pill button i {
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-newsletter-form-pill button:hover {
  background: var(--theme-accent-hover);
}

.footer-newsletter-form-pill button:hover i {
  transform: translateX(3px);
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid var(--theme-border-subtle);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--theme-text-muted);
}

.footer-copyright {
  color: var(--theme-text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  color: var(--theme-text-muted);
  text-decoration: none;
  display: inline-block;
  will-change: transform, color;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-legal-links a:hover {
  color: var(--theme-text-primary);
  transform: translateY(-1px);
}

.footer-legal-links .divider {
  opacity: 0.3;
}

/* ==========================================================================
   MODALS & SHOPPING CART DRAWER
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--theme-modal-bg);
  border-left: 1px solid var(--theme-border);
  color: var(--theme-text-primary);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--theme-border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--theme-accent);
}

.close-drawer-btn {
  color: var(--theme-text-muted);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.close-drawer-btn:hover {
  color: var(--theme-text-primary);
}

.cart-drawer-body {
  flex: 1;
  padding: 24px 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--theme-card-bg);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--theme-border-subtle);
}

.cart-item-img {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--theme-text-primary);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--theme-accent);
  margin-top: 4px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--theme-card-hover);
  color: var(--theme-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.remove-item-btn {
  color: #EF4444;
  font-size: 0.9rem;
  padding: 6px;
}

.cart-drawer-footer {
  padding: 24px 30px;
  border-top: 1px solid var(--theme-border-subtle);
  background: var(--theme-modal-bg);
}

.cart-subtotal-row,
.cart-shipping-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--theme-text-secondary);
}

.subtotal-amount {
  font-weight: 700;
  color: var(--theme-accent);
}

.free-shipping {
  color: #10B981;
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  padding: 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 15px;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-checkout:hover {
  background: var(--theme-accent-hover);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--theme-modal-bg);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--theme-text-muted);
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  color: var(--theme-text-primary);
}

.modal-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--theme-accent);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 6px 0 10px 0;
  color: var(--theme-text-primary);
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--theme-text-secondary);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--theme-text-secondary);
}

.form-group input {
  width: 100%;
  background: var(--theme-input-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--theme-text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: var(--theme-border);
}

.size-buttons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.size-btn {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  color: var(--theme-text-primary);
  padding: 10px 0;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
}

.size-btn.active,
.size-btn:hover {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  border-color: var(--theme-accent);
}

.btn-submit-reserve {
  width: 100%;
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  padding: 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

/* Colorway Mini Selector in Modal */
.colorway-mini-selector {
  display: flex;
  gap: 12px;
}

.color-option-pill {
  flex: 1;
  padding: 10px;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: var(--radius-sm);
  color: var(--theme-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.color-option-pill.active {
  border-color: var(--theme-accent);
  color: var(--theme-accent);
  background: var(--theme-accent-light);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast-msg {
  background: var(--theme-modal-bg);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-primary);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideToast 0.3s ease;
  box-shadow: 0 10px 30px var(--theme-shadow);
}

.toast-msg i {
  color: var(--theme-accent);
}

@keyframes slideToast {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  border: none !important;
  background: var(--theme-bg) !important;
  padding: 80px 40px 40px 40px;
  color: var(--theme-text-primary);
}

.footer-container {
  max-width: 1820px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 28px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--theme-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--theme-accent);
  margin-bottom: 20px;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  color: var(--theme-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-col ul li a:hover {
  color: var(--theme-text-primary);
}

.footer-newsletter-form {
  display: flex;
  background: var(--theme-input-bg);
  border: 1px solid var(--theme-border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: var(--theme-text-primary);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: var(--theme-text-muted);
}

.footer-newsletter-form button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--theme-border-subtle);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--theme-text-muted);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--theme-text-muted);
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--theme-accent);
}

/* ==========================================================================
   HAMBURGER MENU & MOBILE NAVIGATION OVERLAY
   ========================================================================== */

/* Hamburger Button — hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--theme-text-primary, #ffffff);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Full-Screen Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--theme-bg, #16191e);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.is-open {
  transform: translateX(0);
}

.mobile-nav-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 28px 40px;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--theme-border-subtle, rgba(255, 255, 255, 0.08));
  margin-bottom: 24px;
}

.mobile-nav-logo {
  height: 34px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--theme-accent, #b88d55);
  border-radius: 50%;
  color: var(--theme-text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav-close:hover {
  background: var(--theme-accent);
  color: var(--theme-badge-text);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-nav-link {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--theme-text-primary);
  text-decoration: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--theme-border-subtle, rgba(255, 255, 255, 0.07));
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-nav-icon {
  color: var(--theme-accent, #b88d55);
  font-size: 1.35rem;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-nav-arrow {
  color: var(--theme-accent, #b88d55);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--theme-accent);
}

.mobile-nav-link:hover .mobile-nav-arrow {
  transform: translateX(4px);
}

/* Mobile Colorway Dots in nav */
.mobile-nav-colorways {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--theme-border-subtle, rgba(255, 255, 255, 0.07));
}

.mobile-nav-colorways-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--theme-text-muted);
  display: block;
  margin-bottom: 16px;
}

.mobile-nav-dots {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Mobile CTA inside nav */
.mobile-nav-cta {
  margin-top: 24px;
}

.mobile-cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 18px 0 !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  background: var(--theme-accent, #b88d55) !important;
  color: var(--theme-badge-text, #16191e) !important;
  border-radius: 40px !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET + MOBILE)
   ========================================================================== */

/* --- 1400px Tablet Large --- */
@media (max-width: 1400px) {
  .bestsellers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .motion-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-club-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .vip-card-graphic {
    margin: 0 auto;
  }

  .vip-club-desc {
    margin: 0 auto 24px auto;
  }

  .vip-perks-row {
    justify-content: center;
  }

  .lifestyle-layout-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- 1200px Tablet --- */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .locomotion-ref-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .locomotion-right-stage {
    order: -1;
    min-height: 420px;
  }

  .editorial-header-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .editorial-btn-all {
    justify-self: start;
  }

  .editorial-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-lifestyle-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .editorial-community-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- 768px Mobile Breakpoint --- */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav */
  .hamburger-btn {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  /* Header — pushed down slightly, bigger logo */
  .site-header {
    padding: 24px 20px;
  }

  .brand-logo img {
    height: 58px;
  }

  /* =====================================================================
     HERO SECTION — EXACT MATCH TO REFERENCE IMAGE
     
     DOM order inside hero-bottom-bar:
       .slide-indicator | .hero-cta-group | .variant-label-wrapper | .color-picker-column
     
     Visual order on mobile (using CSS order):
       1. .variant-label-wrapper  — "ELEVATE PHANTOM"
       2. .color-picker-column    — dots centered
       3. .hero-cta-group         — RESERVE NOW + LEARN MORE
       4. .slide-indicator        — 01 ——— 02
     ===================================================================== */

  .hero-section {
    min-height: 100svh;
    height: 100svh;
    overflow: hidden;
  }

  /* Background: cover, top-aligned to keep shoe visible */
  .hero-bg-layer {
    background-position: center top;
    background-size: cover;
  }

  /* Content wrapper: flex column, space-between */
  .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 140px 20px 28px 20px;
    height: 100%;
  }

  /* Subheadline — pushed well below the header, bigger, 2 lines */
  .hero-subheadline-wrapper {
    text-align: center;
    flex-shrink: 0;
  }

  .hero-subheadline {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    line-height: 2.1;
  }

  .hero-subheadline .mobile-br {
    display: block;
  }

  .hero-subheadline .desktop-space {
    display: none;
  }

  /* BOTTOM BAR: flex column with order-based layout */
  .hero-bottom-bar {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    grid-template-columns: none !important;
    flex-shrink: 0;
  }

  /* Variant label — absolutely placed ABOVE the Elevate. background text */
  .variant-label-wrapper {
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    z-index: 20;
    order: unset;
    margin-bottom: 0;
  }

  .variant-label-text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    white-space: nowrap;
    text-align: center;
  }

  /* 1st in bottom bar: Color dots — vertical stack, centered */
  .color-picker-column {
    position: static !important;
    transform: none !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    order: 1;
    margin: 0 auto 24px;
    width: auto;
    display: flex !important;
  }

  .color-dot-btn {
    width: 32px;
    height: 32px;
  }

  .active-ring {
    width: 32px;
    height: 32px;
  }

  .dot-fill {
    width: 14px;
    height: 14px;
  }

  .color-dot-btn::after {
    display: none !important;
  }

  /* 2nd: CTA group — full-width stacked */
  .hero-cta-group {
    order: 2;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 16px;
    display: flex !important;
  }

  .btn-reserve {
    width: 100%;
    padding: 18px 24px;
    font-size: 0.82rem;
    text-align: center;
    display: block;
    white-space: nowrap;
  }

  .btn-learn {
    width: 100%;
    padding: 18px 24px;
    font-size: 0.82rem;
    text-align: center;
    display: block;
    white-space: nowrap;
  }

  /* 3rd: Slide indicator — centered */
  .slide-indicator {
    order: 3;
    justify-content: center;
    font-size: 0.78rem;
    gap: 16px;
    width: 100%;
    display: flex !important;
  }

  .slide-track {
    width: 80px;
    flex: 0 0 80px;
  }


  /* Deep Dive / Locomotion Section */
  .deep-dive-section {
    padding: 60px 20px;
  }

  .locomotion-ref-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .locomotion-right-stage {
    order: -1;
    min-height: 280px;
  }

  .loco-shoe-ref {
    max-width: 90%;
  }

  .loco-callout {
    display: none;
    /* Callouts overlap on small screens */
  }

  .locomotion-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .locomotion-left-content {
    max-width: 100%;
  }

  .loco-card {
    padding: 18px 20px;
  }

  /* Bestsellers Section */
  .bestsellers-section {
    padding: 60px 20px;
  }

  .bestsellers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bestsellers-title {
    font-size: 1.6rem;
  }

  .bs-img-wrapper {
    height: 180px;
  }

  .bs-img-wrapper img {
    max-height: 160px;
  }

  /* Colorways Showcase — 3D Parallax Pop-out Depth Effect */
  .colorways-showcase-section {
    padding: 60px 20px 80px;
    overflow: visible !important;
  }

  .colorways-container,
  .colorways-wrapper {
    overflow: visible !important;
  }

  .colorways-header-row {
    text-align: left;
    padding-right: 0;
    margin-bottom: 36px;
  }

  .colorways-sublabel {
    text-align: left;
  }

  .colorways-main-title {
    font-size: 2rem;
  }

  .colorways-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .colorways-cards-grid {
    grid-template-columns: 1fr;
    gap: 55px; /* Vertical spacing allowing shoes to pop out over card tops */
    max-width: 100%;
    flex: unset;
    margin-top: 40px; /* Space for 1st shoe breakout */
  }

  .color-card {
    min-height: 320px;
    padding: 24px;
    overflow: visible !important; /* Allow 3D shoe pop-out beyond card edges */
    position: relative;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  }

  .color-card-body {
    position: relative;
    z-index: 25;
    margin-top: auto;
  }

  /* Remove stagger offset on mobile */
  .raised-card {
    transform: none !important;
  }

  .raised-card:hover {
    transform: translateY(-6px) !important;
  }

  /* Rotated side logo on mobile cards — right side like PC version */
  .card-brand-logo {
    display: block !important;
    height: 90px !important;
    width: auto !important;
    position: absolute !important;
    top: 45% !important;
    right: -24px !important;
    z-index: 18 !important;
    transform: translateY(-50%) rotate(-90deg) !important;
    transform-origin: center center !important;
    opacity: 0.85 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) !important;
  }

  /* Crisp, clear, and visible "Colors" background watermark text on mobile */
  .vertical-text-accent {
    writing-mode: horizontal-tb !important;
    text-align: center !important;
    align-self: center !important;
    margin: 28px auto 0 auto !important;
    font-size: clamp(3rem, 12vw, 4.5rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.15em !important;
    color: var(--theme-text-primary) !important;
    display: block !important;
    width: 100% !important;
    opacity: 0.38 !important;
  }

  .color-card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
    overflow: visible !important;
  }

  /* Base 3D Floating Pop-Out Shoe Styling for Mobile */
  .color-card-img-wrapper img {
    max-width: none !important;
    height: auto !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Custom 3D Pop-out Positioning per Shoe Silhouete */
  /* 1. Crimson Red Shoe */
  .card-crimson .color-card-img-wrapper img {
    width: 330px !important;
    top: -85px !important;
    left: -50px !important;
    transform: rotate(-7deg);
    filter: drop-shadow(-22px 22px 25px rgba(0, 0, 0, 0.75)) !important;
  }

  /* 2. Amber Gold Shoe */
  .card-amber .color-card-img-wrapper img {
    width: 310px !important;
    top: -75px !important;
    left: -35px !important;
    transform: rotate(-3deg);
    filter: drop-shadow(-20px 22px 25px rgba(0, 0, 0, 0.75)) !important;
  }

  /* 3. Cobalt Navy Shoe */
  .card-cobalt .color-card-img-wrapper img {
    width: 340px !important;
    top: -88px !important;
    left: -55px !important;
    transform: rotate(-8deg);
    filter: drop-shadow(-22px 24px 28px rgba(0, 0, 0, 0.8)) !important;
  }

  .color-card:hover .color-card-img-wrapper img {
    transform: rotate(-9deg) scale(1.04) translateY(-6px);
  }

  /* Vertical text accent becomes inline horizontal label */
  .vertical-text-accent {
    writing-mode: horizontal-tb;
    font-size: 2rem;
    margin-left: 0;
    margin-top: 0;
    align-self: flex-start;
    opacity: 0.15;
  }

  /* -----------------------------------------------------------------------
     LIFESTYLE / CATEGORY SECTION
     ----------------------------------------------------------------------- */
  .category-grid-section {
    padding: 64px 20px;
  }

  .lifestyle-layout-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lifestyle-main-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .lifestyle-photo-mosaic {
    grid-template-columns: 1fr 1fr;
    height: auto;
    grid-template-rows: auto;
    gap: 10px;
  }

  .mosaic-item {
    height: 160px;
    grid-column: auto !important;
    grid-row: auto !important;
    border-radius: 12px;
  }

  .item-tall-right {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 160px;
  }

  /* -----------------------------------------------------------------------
     SPOTLIGHT & NEW ARRIVALS
     ----------------------------------------------------------------------- */
  .spotlight-arrivals-section {
    padding: 64px 20px;
  }

  .spotlight-split-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .spotlight-card {
    height: 300px;
    padding: 24px;
  }

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

  .arrival-img-box {
    height: 190px;
  }

  /* -----------------------------------------------------------------------
     MOTION TECH SECTION
     ----------------------------------------------------------------------- */
  .motion-tech-section {
    padding: 64px 20px;
  }

  .motion-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .motion-tech-title {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    text-align: center;
  }

  .motion-card {
    padding: 20px 16px;
  }

  /* -----------------------------------------------------------------------
     VIP CLUB SECTION — ULTRA-PREMIUM MOBILE LAYOUT
     ----------------------------------------------------------------------- */
  .vip-club-section {
    padding: 48px 16px;
  }

  .vip-club-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
    padding: 32px 20px;
    border-radius: 28px;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border-subtle);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }

  .vip-card-graphic {
    margin: 0 auto 4px;
    width: 100%;
    max-width: 270px;
    height: 155px;
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), var(--theme-card-hover);
    border: 1px solid var(--theme-border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: rotate(-2deg);
  }

  .vip-club-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .vip-club-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .vip-perks-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
  }

  .vip-perk-item {
    font-size: 0.78rem;
    gap: 8px;
  }

  .vip-perk-item i {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .vip-club-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
  }

  .btn-vip-join {
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  }

  /* Editorial Catalog / Store Section Mobile Layout */
  .editorial-catalog-section {
    padding: 56px 20px;
  }

  .editorial-header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .editorial-main-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.1;
  }

  .editorial-header-desc {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .editorial-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .editorial-btn-all {
    width: auto !important;
    padding: 12px 24px !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    background: transparent !important;
    border: 1px solid var(--theme-accent) !important;
    color: var(--theme-accent) !important;
    box-shadow: none !important;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .editorial-btn-all:hover {
    background: var(--theme-accent) !important;
    color: var(--theme-badge-text) !important;
  }

  /* -----------------------------------------------------------------------
     ATHLETE REVIEWS SECTION
     ----------------------------------------------------------------------- */
  .athlete-reviews-section {
    padding: 64px 0;
  }

  .reviews-header-centered {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .reviews-main-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .review-card-bubble {
    width: 272px;
    padding: 22px 18px;
  }

  /* -----------------------------------------------------------------------
     NEWSLETTER / COMMUNITY SECTION — GLASS CAPSULE PILL FORM
     ----------------------------------------------------------------------- */
  .editorial-community-section {
    padding: 64px 20px;
  }

  .editorial-community-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .community-main-headline {
    font-size: clamp(2.2rem, 8.5vw, 3rem);
    white-space: normal;
  }

  .community-subtext {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  /* Mobile Community Email Form — Exact Match to PC Version Theme Adaptation */
  .community-form-pill {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: var(--theme-input-bg) !important;
    border: 1px solid var(--theme-border-subtle) !important;
    border-radius: 50px !important;
    padding: 6px 6px 6px 18px !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 32px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: none !important;
  }

  .community-form-pill input {
    flex: 1 !important;
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    padding: 10px 4px !important;
    font-size: 0.82rem !important;
    color: var(--theme-text-primary) !important;
    outline: none !important;
  }

  .community-form-pill input::placeholder {
    color: var(--theme-text-muted) !important;
    opacity: 0.85 !important;
  }

  .btn-community-subscribe {
    width: auto !important;
    padding: 12px 18px !important;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    border-radius: 40px !important;
    background: var(--theme-accent) !important;
    color: var(--theme-badge-text) !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
  }

  /* -----------------------------------------------------------------------
     SITE FOOTER — 100% SYMMETRICAL BALANCED MOBILE LAYOUT
     ----------------------------------------------------------------------- */
  .site-footer {
    padding: 48px 20px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
    margin-bottom: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-brand-desc {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .footer-brand-subtag {
    max-width: 100%;
    padding-top: 14px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .footer-links-col {
    display: flex;
    flex-direction: column;
  }

  .footer-links-col:last-child {
    grid-column: span 2;
  }

  .footer-col-title {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .footer-link-list li {
    padding: 7px 0;
  }

  .footer-link-list a {
    font-size: 0.84rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--theme-border-subtle);
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
  }

  /* Mobile Email Input Enlargement */
  .footer-newsletter-form-pill {
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px 8px 8px 22px !important;
    border-radius: 40px !important;
  }

  .footer-newsletter-form-pill input {
    font-size: 0.95rem !important;
    padding: 10px 4px !important;
  }

  .footer-newsletter-form-pill button {
    width: 44px !important;
    height: 44px !important;
    font-size: 1rem !important;
  }

  /* -----------------------------------------------------------------------
     MISC
     ----------------------------------------------------------------------- */
  .marquee-content {
    font-size: 0.72rem;
    gap: 16px;
    letter-spacing: 0.18em;
  }

  .brand-connector-divider {
    padding: 10px 20px;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .cart-drawer-overlay.is-open .cart-drawer {
    transform: translateY(0);
  }

  /* Modals */
  .modal-card {
    padding: 28px 20px;
    margin: 16px;
    max-width: calc(100% - 32px);
    width: auto;
  }

  .size-buttons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- 480px Small Mobile --- */
@media (max-width: 480px) {

  /* Header */
  .site-header {
    padding: 20px 16px;
  }

  .brand-logo img {
    height: 52px;
  }

  /* Hero */
  .hero-content-wrapper {
    padding-top: 120px;
  }

  .hero-subheadline {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .btn-reserve,
  .btn-learn {
    padding: 14px 16px;
    font-size: 0.78rem;
  }

  /* Bestsellers — single column on tiny screens */
  .bestsellers-grid {
    grid-template-columns: 1fr;
  }

  .bs-img-wrapper {
    height: 210px;
  }

  .bs-img-wrapper img {
    max-height: 190px;
  }

  /* Motion tech — single column */
  .motion-tech-grid {
    grid-template-columns: 1fr;
  }

  /* Mosaic — single column */
  .lifestyle-photo-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-item {
    height: 200px;
    border-radius: 12px;
  }

  /* Color cards */
  .colorways-cards-grid {
    gap: 50px;
  }

  .color-card {
    min-height: 310px;
  }

  /* Editorial grid single col */
  .editorial-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Review cards narrower */
  .review-card-bubble {
    width: 240px;
    padding: 20px 16px;
  }

  .review-quote-text {
    font-size: 0.82rem;
  }

  /* Loco cards compact */
  .loco-card {
    padding: 14px 16px;
    gap: 14px;
  }

  .loco-card-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .loco-card-title {
    font-size: 1rem;
  }

  /* VIP perks */
  .vip-perk-item {
    font-size: 0.8rem;
  }

  /* Size buttons */
  .size-buttons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Modal */
  .modal-card {
    padding: 24px 16px;
  }
}

/* --- Landscape Mobile Fix --- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 100svh;
  }

  .hero-content-wrapper {
    padding: 80px 20px 28px 20px;
  }

  .mobile-nav-link {
    font-size: 1.5rem;
    padding: 11px 0;
  }
}

/* --- Theme overrides for hamburger lines (non-phantom themes) --- */
body.theme-frost .hamburger-line,
body.theme-slate .hamburger-line {
  background: #000000;
}

body.theme-dune .hamburger-line {
  background: #34271c !important;
}

@media (max-width: 768px) {

  body.theme-dune .cart-btn,
  body.theme-dune .cart-icon-svg,
  body.theme-dune .cart-icon-svg path {
    color: #34271c !important;
    stroke: #34271c !important;
  }
}

/* --- Mobile Nav themed backgrounds --- */
body.theme-phantom .mobile-nav-logo {
  filter: invert(1);
}

body.theme-dune .mobile-nav-logo {
  filter: brightness(0) saturate(100%) invert(13%) sepia(27%) saturate(1487%) hue-rotate(345deg) brightness(94%) contrast(92%) !important;
}

body.theme-dune .mobile-nav-overlay {
  background: #bb895a;
}

body.theme-slate .mobile-nav-overlay {
  background: #989898;
}

body.theme-frost .mobile-nav-overlay {
  background: #f1f1f1;
}

body.theme-dune .mobile-nav-link,
body.theme-dune .mobile-nav-close,
body.theme-dune .mobile-nav-colorways-label {
  color: #3e2917;
}

body.theme-dune .mobile-nav-header {
  border-color: rgba(62, 41, 23, 0.15);
}

body.theme-dune .mobile-nav-link {
  border-color: rgba(62, 41, 23, 0.1);
}

body.theme-dune .mobile-nav-close {
  background: rgba(62, 41, 23, 0.1);
  border-color: rgba(62, 41, 23, 0.15);
}

body.theme-dune .mobile-nav-close:hover {
  background: #3e2917;
  color: #bb895a;
}

body.theme-slate .mobile-nav-link,
body.theme-slate .mobile-nav-close,
body.theme-slate .mobile-nav-colorways-label {
  color: #000000;
}

body.theme-slate .mobile-nav-header,
body.theme-slate .mobile-nav-link {
  border-color: rgba(0, 0, 0, 0.1);
}

body.theme-slate .mobile-nav-close {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

body.theme-slate .mobile-nav-close:hover {
  background: #000000;
  color: #989898;
}

body.theme-frost .mobile-nav-link,
body.theme-frost .mobile-nav-close,
body.theme-frost .mobile-nav-colorways-label {
  color: #0F172A;
}

body.theme-frost .mobile-nav-header,
body.theme-frost .mobile-nav-link {
  border-color: rgba(15, 23, 42, 0.1);
}

body.theme-frost .mobile-nav-close {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.1);
}

body.theme-frost .mobile-nav-close:hover {
  background: #0F172A;
  color: #f1f1f1;
}

/* ==========================================================================
   DYNAMIC SECTION CONNECTORS & MARQUEE DIVIDERS
   ========================================================================== */

/* 1. Infinite Slanted Marquee Ticker Tape Strip */
.marquee-divider-strip {
  position: relative;
  z-index: 12;
  width: 100%;
  overflow: hidden;
  background: var(--theme-bg);
  border-top: 1px solid var(--theme-border-subtle);
  border-bottom: 1px solid var(--theme-border-subtle);
  padding: 16px 0;
  margin: -10px 0;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 10px 30px var(--theme-shadow);
}

.marquee-divider-strip.alt-strip {
  transform: rotate(1deg) scale(1.02);
  background: var(--theme-card-bg);
  border-top: 1px solid var(--theme-border);
  border-bottom: 1px solid var(--theme-border);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track.reverse-track {
  animation: marqueeScrollReverse 28s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--theme-text-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

.accent-slash {
  color: var(--theme-accent);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.alt-strip .accent-slash {
  color: var(--theme-accent);
}

/* 2. Geometric Brand Connector Node — Redesigned */
.brand-connector-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  background-color: var(--theme-bg);
  position: relative;
  z-index: 12;
}

.connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--theme-accent) 100%);
}

.connector-line:last-child {
  background: linear-gradient(to left, transparent 0%, var(--theme-accent) 100%);
}

.connector-badge {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--theme-accent-light);
  border: 1px solid var(--theme-border);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px var(--theme-glow);
  margin: 0 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.connector-badge:hover {
  transform: scale(1.12) rotate(15deg);
  box-shadow: 0 0 50px var(--theme-glow);
}

.connector-logo {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* ==========================================================================
   FIGMA PRESENTATION & MOTION PROTOTYPE SYSTEM
   ========================================================================== */

/* ==========================================================================
   SNAPPY HIGH-PERFORMANCE MOTION SYSTEM
   ========================================================================== */

/* Fast & Crisp Scroll Reveal (0.35s) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Micro-Stagger Delays (Ultra-fast) */
.stagger-1 {
  transition-delay: 0.02s;
}

.stagger-2 {
  transition-delay: 0.05s;
}

.stagger-3 {
  transition-delay: 0.08s;
}

.stagger-4 {
  transition-delay: 0.1s;
}

/* 3D Perspective Tilt Cards */
.figma-tilt-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ==========================================================================
   SCROLL TO TOP (UP) BUTTON - DYNAMIC ACCENT COLORING
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme-accent, #b88d55);
  color: var(--theme-badge-text, #16191e);
  border: 1px solid var(--theme-border, rgba(255, 255, 255, 0.2));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: var(--theme-accent-hover, #c99e63);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), 0 6px 16px rgba(0, 0, 0, 0.25);
}

.scroll-top-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Theme Accent Overrides for Up Button */
body.theme-phantom .scroll-top-btn {
  background: #b88d55 !important;
  color: #16191e !important;
  border-color: rgba(184, 141, 85, 0.4) !important;
  box-shadow: 0 10px 25px rgba(184, 141, 85, 0.4), 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

body.theme-phantom .scroll-top-btn:hover {
  background: #c99e63 !important;
  color: #16191e !important;
  box-shadow: 0 14px 32px rgba(201, 158, 99, 0.5), 0 6px 16px rgba(0, 0, 0, 0.5) !important;
}

body.theme-dune .scroll-top-btn {
  background: #34271C !important;
  color: #bb895a !important;
  border-color: rgba(187, 137, 90, 0.3) !important;
  box-shadow: 0 10px 25px rgba(52, 39, 28, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

body.theme-dune .scroll-top-btn:hover {
  background: #453425 !important;
  color: #bb895a !important;
  box-shadow: 0 14px 32px rgba(52, 39, 28, 0.65), 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

body.theme-slate .scroll-top-btn {
  background: #000000 !important;
  color: #989898 !important;
  border-color: rgba(152, 152, 152, 0.3) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

body.theme-slate .scroll-top-btn:hover {
  background: #1A1A1A !important;
  color: #989898 !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55), 0 6px 16px rgba(0, 0, 0, 0.3) !important;
}

body.theme-frost .scroll-top-btn {
  background: #0F172A !important;
  color: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.25) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

body.theme-frost .scroll-top-btn:hover {
  background: #1E293B !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(30, 41, 59, 0.45), 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}