/* ============================================
   HYBRIDS CREW — SPLIT SCREEN DROP STORE
   Dark editorial left | White product right
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --charcoal: #1A1A1A;
  --volt: #C8F000;
  --volt-dim: rgba(200,240,0,0.15);
  --orange: #F5821F;
  --white: #FFFFFF;
  --offwhite: #F5F5F3;
  --snow: #FAFAFA;
  --muted: #888888;
  --border-dark: rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.08);
  --font: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* ─── Custom Cursor ──────────────────────────── */
.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--volt);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  mix-blend-mode: difference;
}
.custom-cursor.hover {
  width: 36px;
  height: 36px;
  background: var(--volt);
}

/* ─── Background Video ───────────────────────── */
.bg-video-container {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.bg-video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.04;
  filter: saturate(0) contrast(1.2);
}

/* ─── TOP COUNTDOWN BAR ──────────────────────── */
.top-countdown-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: #000000;
  border-bottom: 1px solid var(--border-dark);
  z-index: 110;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.top-countdown-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}
.top-countdown-badge {
  background: var(--volt);
  color: var(--black);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.top-countdown-title {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.top-countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--volt);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(200, 240, 0, 0.3);
}
.tcd-digit {
  min-width: 18px;
  text-align: center;
}
.tcd-label {
  font-size: 9px;
  color: var(--muted);
  text-transform: lowercase;
  margin-left: 1px;
}
.tcd-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  margin: 0 2px;
}

/* ─── HEADER ─────────────────────────────────── */
.main-header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.header-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-accent { color: var(--volt); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  text-decoration: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active { border-bottom: 2px solid var(--volt); padding-bottom: 2px; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--volt);
  color: var(--black);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 40px;
  border: none;
  cursor: none;
  transition: all 0.2s var(--ease);
  text-transform: uppercase;
}
.btn-pill:hover {
  background: var(--white);
  transform: scale(1.04);
}

/* ─── MAIN LAYOUT ────────────────────────────── */
.app-container {
  position: relative;
  z-index: 1;
}

/* ─── SPLIT SCREEN HERO ──────────────────────── */
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 104px;
}

/* LEFT — Dark brand editorial panel */
.panel-left {
  background: var(--dark);
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-dark);
  position: sticky;
  top: 104px;
  height: calc(100vh - 104px);
  overflow: hidden;
}

/* Subtle grid texture on left panel */
.panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.panel-left-inner { position: relative; z-index: 1; }

/* Collection tabs */
.collection-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
}
.tab-btn {
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--muted);
  border-radius: 6px;
  cursor: none;
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--volt);
  color: var(--black);
}

/* Gender filter pills */
.gender-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 5px 14px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--border-dark);
  color: var(--muted);
  border-radius: 40px;
  cursor: none;
  transition: all 0.2s;
}
.filter-pill.active, .filter-pill:hover {
  border-color: var(--volt);
  color: var(--volt);
}
.filter-pill.test-btn { border-color: rgba(245,130,31,0.3); color: var(--orange); font-size: 10px; }
.filter-pill.test-btn.active { background: var(--orange); color: var(--black); }

/* Product details in left panel */
.product-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--volt);
  color: var(--black);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 16px;
}

.product-title {
  font-family: var(--font);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.price-block {
  margin-bottom: 16px;
}
.price-total {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.price-abono {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 380px;
}

/* Stock bar */
.stock-wrapper {
  margin-bottom: 24px;
}
.stock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.stock-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.stock-value {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: var(--volt);
}
.stock-bar-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.stock-bar-fill {
  height: 100%;
  background: var(--volt);
  border-radius: 2px;
  transition: width 0.6s var(--ease);
}
.stock-bar-fill.low-stock {
  background: linear-gradient(90deg, #F5821F, #FF3333) !important;
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.7);
  animation: pulse-stock 1.5s infinite alternate;
}
@keyframes pulse-stock {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #FF3333;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot-anim 1s infinite alternate;
  vertical-align: middle;
}
@keyframes pulse-dot-anim {
  0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px 3px rgba(255, 51, 51, 0); }
}
.pulse-fomo {
  animation: text-glow 1.5s infinite alternate;
}
@keyframes text-glow {
  0% { text-shadow: 0 0 2px rgba(255, 51, 51, 0.3); }
  100% { text-shadow: 0 0 8px rgba(255, 51, 51, 0.8); }
}


/* CTA button */
.cta-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--volt);
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: none;
  transition: all 0.25s var(--ease);
  margin-bottom: 12px;
}
.cta-btn:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,240,0,0.2); }
.cta-btn.btn-locked {
  background: var(--charcoal);
  color: #444;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Countdown */
.countdown-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.countdown-label-sm {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cd-unit {
  text-align: center;
}
.cd-value {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  color: var(--volt);
  line-height: 1;
  display: block;
}
.cd-label {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cd-sep {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  color: var(--volt);
  opacity: 0.4;
  margin-bottom: 12px;
}

/* HUD diagnostics */
.hud-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.hud-stat {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(200,240,0,0.4);
  letter-spacing: 0.05em;
}
#hud-stock-diagnose { color: var(--volt); opacity: 0.6; }

/* ─── RIGHT PANEL — Dark product showcase ────── */
.panel-right {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: calc(100vh - 64px);
}

/* Product image viewer */
.product-viewer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px 24px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* Sutil halo neón Volt Green para dar contraste a las prendas oscuras */
.product-viewer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 240, 0, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.main-product-img {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
  animation: float-product 6s ease-in-out infinite;
}

@keyframes float-product {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* View toggle (Frente/Espalda) */
.view-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.view-btn {
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1.5px solid var(--border-dark);
  color: var(--muted);
  border-radius: 40px;
  cursor: none;
  transition: all 0.2s;
}
.view-btn.active {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--black);
}
.view-btn:hover:not(.active) {
  border-color: var(--white);
  color: var(--white);
}

/* FOMO Lock overlay on dark right panel */
.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  transition: all 0.4s var(--ease);
}
.lock-overlay.hidden { opacity: 0; pointer-events: none; }

.lock-icon-box {
  width: 72px; height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(255, 255, 255, 0.1); }
  50% { border-color: var(--volt); }
}
.lock-svg { width: 32px; height: 32px; fill: var(--white); }

.lock-badge {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--volt);
  padding: 4px 12px;
  border-radius: 3px;
}
.lock-timer-display {
  font-family: 'Courier New', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.lock-hint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.lock-bypass-btn {
  margin-top: 8px;
  padding: 8px 20px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  border-radius: 40px;
  cursor: none;
  transition: all 0.2s;
}
.lock-bypass-btn:hover { background: var(--white); color: var(--black); }

/* ─── PRODUCT NAVIGATION (arrows + thumbnails) ─ */
.nav-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px 32px;
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
}
.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  cursor: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.arrow-btn:hover {
  background: var(--volt);
  color: var(--black);
  border-color: var(--volt);
  transform: scale(1.08);
}

.product-counter {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.product-counter span { color: var(--white); }

/* ─── THUMBNAIL STRIP ────────────────────────── */
.thumbnail-strip {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal);
  border: 2px solid transparent;
  cursor: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.thumb.active {
  border-color: var(--volt);
}
.thumb:hover:not(.active) {
  border-color: rgba(255,255,255,0.2);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── INFO SECTION (below split) ─────────────── */
.info-section {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}

.newsletter-block h3 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 8px;
}
.newsletter-block p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-input-group input {
  background: var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  transition: border-color 0.2s;
}
.newsletter-input-group input:focus {
  border-color: var(--volt);
  outline: none;
}
.nl-btn {
  background: var(--volt);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nl-btn:hover {
  background: var(--white);
}
.nl-success-msg {
  color: var(--volt);
  font-size: 12px;
  margin-top: 10px;
  font-weight: 600;
}

.community-block h3 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 8px;
}
.community-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wp-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
}
.wp-qr {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
  flex-shrink: 0;
}
.wp-info h4 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.wp-info p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.btn-wp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn-wp:hover { background: #1ab955; transform: translateY(-1px); }

.sponsors-block {
  text-align: right;
}
.sponsor-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}
.sponsor-name {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}
.sponsor-sub {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─────────────────────────────────── */
.main-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border-dark);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-stat {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-center {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}
.coordinates {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(200,240,0,0.4);
}

/* ─── FLOATING WHATSAPP BUTTON ───────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ─── MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.active {
  opacity: 1; pointer-events: all;
}
.modal-card {
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.close-modal {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 22px; cursor: none;
  transition: color 0.2s;
}
.close-modal:hover { color: var(--white); }

#modal-title {
  font-family: var(--font);
  font-size: 20px; font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
#modal-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

.form-group { margin-bottom: 12px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus { border-color: var(--volt); }
.form-group select { cursor: none; }
.form-group select option { background: var(--dark); color: var(--white); }

.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }

.checkout-summary-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}
.summary-line {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
  padding: 4px 0;
}
.summary-line strong { color: var(--volt); }

.form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--volt);
  color: var(--black);
  font-family: var(--font);
  font-size: 14px; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px;
  cursor: none; transition: all 0.2s var(--ease);
}
.form-submit-btn:hover { background: var(--white); transform: translateY(-2px); }

.success-message { text-align: center; }
.success-icon { margin-bottom: 12px; }
.success-message h4 {
  font-family: var(--font); font-size: 18px; font-weight: 900;
  color: var(--volt); margin-bottom: 8px;
}
.success-message p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.hud-ticket {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(200,240,0,0.2);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--muted);
  text-align: left;
}
.ticket-header { color: var(--volt); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }
.ticket-line { font-size: 11px; }
.ticket-hint { font-size: 11px; color: var(--muted); margin-top: 8px; }

.payment-redirect-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--volt);
  color: var(--black);
  font-family: var(--font); font-size: 13px; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 8px;
  transition: all 0.2s;
}
.payment-redirect-btn:hover { background: var(--white); }

.hidden { display: none !important; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .split-screen {
    display: flex;
    flex-direction: column;
  }
  .panel-left {
    order: 2;
    position: static;
    height: auto;
    padding: 32px 24px;
  }
  .panel-right {
    order: 1;
    min-height: 70vw;
  }
  .info-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
    text-align: left;
  }
  .sponsors-block { text-align: left; }
  .main-header { padding: 0 20px; }
  .nav-menu { gap: 16px; }
  .nav-link { font-size: 11px; }
  .product-title { font-size: 24px; }
}

@media (max-width: 600px) {
  .top-countdown-bar {
    height: 52px;
  }
  .top-countdown-inner {
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
  }
  .top-countdown-badge {
    display: none;
  }
  .top-countdown-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .top-countdown-timer {
    font-size: 15px;
    font-weight: 900;
    gap: 6px;
    color: var(--volt);
    text-shadow: 0 0 10px rgba(200, 240, 0, 0.5);
  }
  .tcd-digit {
    min-width: 18px;
  }
  .tcd-label {
    font-size: 10px;
    color: var(--white);
    font-weight: 700;
  }
  
  .main-header { height: 56px; top: 52px; }
  .split-screen { padding-top: 108px; } /* 56px header + 52px countdown bar */
  .nav-menu { display: none !important; }
  .header-right { display: block !important; }
  .btn-pill { padding: 6px 14px; font-size: 10px; }
  .hud-stats { display: none; }
  
  .gender-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gender-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    flex-shrink: 0;
  }
  
  .product-viewer { padding: 24px 16px 16px; }
  .nav-arrows { padding: 12px 16px 24px; }
  .thumbnail-strip { gap: 6px; }
  .thumb { width: 44px; height: 44px; }
  .form-row-grid { grid-template-columns: 1fr; }
}
