@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  --bg: #030303;
  --bg-2: #090909;
  --bg-3: #121212;
  --bg-4: #1a1a1a;
  --bg-card: #0c0c0c;
  --bg-glass: rgba(255,255,255,0.03);
  --green: #b3f000;
  --green-bright: #ccff00;
  --green-dim: rgba(179,240,0,0.1);
  --green-glow: rgba(179,240,0,0.35);
  --ink: #ffffff;
  --white: #ffffff;
  --gray: #888888;
  --gray-2: #222222;
  --gray-light: #cccccc;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(179,240,0,0.4);
  --border-green: rgba(179,240,0,0.35);
  --stripe-dark: #0e0e0e;
  --stripe-light: #161616;
  --font-cyber: 'Montserrat', sans-serif;
  --font-hero: 'Montserrat', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-price: 'Orbitron', monospace;
  --font-price-alt: 'Orbitron', sans-serif;
  --transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  --transition-slow: all 0.6s cubic-bezier(0.16,1,0.3,1);
  --spring: cubic-bezier(0.175,0.885,0.32,1.275);
  --radius: 8px;
  --radius-pill: 9999px;
  --radius-card: 22px;
  --radius-inner: 16px;
  --stripe-angle: 45deg;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Particles Canvas ─── */
.particles-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}

/* ─── High-Tech Crosshairs ─── */
.crosshair-ch {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  font-weight: 300;
  color: rgba(179, 240, 0, 0.4);
  pointer-events: none;
  z-index: 10;
  line-height: 1;
}
.cx-tl { top: 6px; left: 8px; }
.cx-tr { top: 6px; right: 8px; }

/* ─── Grain Overlay ─── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Cyber Ambient Glows ─── */
.fluid-blob-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(140px);
  opacity: 0.35;
}
.fluid-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: blob-float 18s ease-in-out infinite alternate;
}
.blob-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(179, 240, 0, 0.1) 0%, transparent 70%);
  top: -10%;
  left: 5%;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.6) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-duration: 25s;
}
.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(179, 240, 0, 0.06) 0%, transparent 70%);
  top: 45%;
  left: 50%;
  animation-duration: 20s;
}
@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ─── Cursor Spotlight ─── */
.cursor-spotlight {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(179,240,0,0.03) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: left, top;
}

/* ─── Scroll Fade Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Layout ─── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
main { min-height: 100vh; }

/* ─── Header ─── */
header {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 500;
  transition: background 0.3s ease, border-color 0.3s ease;
}
header.scrolled {
  background: rgba(3,3,3,0.96);
  border-bottom-color: rgba(255,255,255,0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.header-logo-img { height: 54px; max-height: 56px; }
.logo:hover .header-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 16px rgba(179, 240, 0, 0.6));
}
.logo-cyber-text {
  font-family: var(--font-cyber);
  font-weight: 900;
  font-style: italic;
  font-size: 1.85rem;
  letter-spacing: -0.5px;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  text-transform: uppercase;
  line-height: 1;
}
.logo-dot {
  color: var(--green);
  font-weight: 900;
  margin-left: 2px;
  text-shadow: 0 0 12px var(--green);
}
.logo-img {
  display: flex;
  align-items: center;
}
.logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ─── Hamburger Menu Button ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--green);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--green);
}

/* Nav */
nav { display: flex; align-items: center; gap: 32px; }

nav a {
  font-family: var(--font-cyber);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  padding: 6px 0;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 8px var(--green);
  border-radius: 2px;
}
nav a:hover { color: var(--white); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--white); }

/* Nav icons */
.nav-icons { display: flex; align-items: center; gap: 14px; }
.nav-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.nav-icon:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.nav-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Region / Country Selector */
.region-selector-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}
.region-selector-container .globe-icon {
  color: var(--green);
}
.header-region-select {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}
.header-region-select option {
  background: #111;
  color: #fff;
}

/* Cart button */
.cart-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-cyber);
  font-weight: 800;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.cart-btn:hover {
  border-color: var(--green);
  background: var(--green-dim);
  box-shadow: 0 0 20px var(--green-glow);
}
.cart-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

#cart-count {
  background: var(--green);
  color: #000;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 9999px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  transition: transform 0.2s var(--spring);
}
@keyframes cart-bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}
#cart-count.bump { animation: cart-bump 0.35s var(--spring); }


/* ─── HERO (Exact Cyber Style from Reference Screenshots) ─── */
.hero {
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(179, 240, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-right {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(179, 240, 0, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.hero-badge svg {
  color: var(--green);
}
.hero-badge.highlight svg {
  color: #a855f7;
}

/* Slanted Massive Cyber Heading */
.hero-heading {
  font-family: var(--font-cyber);
  font-size: clamp(85px, 13vw, 180px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  padding-left: 8px;
  padding-right: 14px;
  padding-bottom: 6px;
  overflow: visible;
}
.hero-heading .line-white {
  color: #ffffff;
  display: block;
  padding-bottom: 4px;
}
.hero-heading .line-green {
  color: var(--green);
  background: linear-gradient(135deg, #b3f000 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  filter: drop-shadow(0 0 25px rgba(179, 240, 0, 0.35));
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Glowing Neon Lime Pill Button */
.btn-browse {
  background: var(--green);
  color: #000;
  border: none;
  border-radius: var(--radius-pill);
  padding: 18px 44px;
  font-family: var(--font-cyber);
  font-size: 0.98rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 0 35px rgba(179, 240, 0, 0.45);
}
.btn-browse:hover {
  background: var(--green-bright);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 0 50px rgba(179, 240, 0, 0.7);
}
.btn-browse svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  transition: transform 0.2s ease;
}
.btn-browse:hover svg {
  transform: translateX(4px);
}

.hero-desc {
  max-width: 340px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.7;
}

.hero-active {
  text-align: right;
  flex-shrink: 0;
}
.hero-active .label {
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.hero-active .value {
}
.hero-dot { height: 3px; border-radius: 2px; cursor: pointer; transition: var(--transition); }
.hero-dot.active { width: 44px; background: var(--green); box-shadow: 0 0 8px var(--green); }
.hero-dot:not(.active) { width: 16px; background: var(--gray-2); }

/* ÔöÇÔöÇÔöÇ Marquee Strip ÔÇö Drippy ÔöÇÔöÇÔöÇ */
.marquee-strip {
  border-top: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 40px
  );
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  font-family: var(--font-hero);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.35);
}
.marquee-item.green { color: var(--green); }
.marquee-sep {
  width: 6px; height: 6px;
  border-radius: 0;
  transform: rotate(45deg);
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

/* ÔöÇÔöÇÔöÇ Stats Strip ÔöÇÔöÇÔöÇ */
.stats-strip {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(179,240,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 5%; height: 90%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.stat-number {
  font-family: var(--font-hero);
  font-size: clamp(2.8rem,5vw,4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}
.stat-number .suffix { color: var(--green); }
.stat-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ÔöÇÔöÇÔöÇ Pricing Strip ÔöÇÔöÇÔöÇ */
.pricing-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pricing-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(179,240,0,0.012) 50%, transparent 100%);
  pointer-events: none;
}
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 0;
}
.pricing-item {
  text-align: center;
  padding: 0 52px;
  position: relative;
  flex: 1;
  max-width: 240px;
  cursor: default;
  transition: var(--transition);
}
.pricing-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.pricing-item:hover .pricing-value { color: var(--green); }
.pricing-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.pricing-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ÔöÇÔöÇÔöÇ Section Layout ÔöÇÔöÇÔöÇ */
.section { padding: 80px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  position: relative;
}
/* Drip underline on section titles */
.section-header::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 4px 100%);
}
.section-title {
  font-family: var(--font-cyber);
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 32px rgba(179, 240, 0, 0.45);
}
.section-title span { color: #ffffff; }

.section-subtitle-text,
.section-subtitle {
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 700;
  color: #777777;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
}

.section-link {
  font-family: var(--font-cyber);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
}
.section-link:hover {
  color: #000;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(179, 240, 0, 0.4);
}

/* ─── Category Filter Pills ─── */
.category-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}
.cat-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-family: var(--font-cyber);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cat-filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.cat-filter-btn.active {
  background: var(--green);
  color: #000000;
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(179, 240, 0, 0.5);
}

/* ─── Jersey Grid ─── */
.jersey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ─── Jersey Card (Exact Cyber Style from Reference Screenshots) ─── */
.jersey-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-card);
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.jersey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 240, 0, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(179, 240, 0, 0.18);
}

/* Card image area: Seamless fit, no white container */
.jersey-card-image-wrapper {
  background: var(--bg-2);
  border-radius: var(--radius-inner);
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.jersey-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.jersey-card:hover .jersey-card-image-wrapper img {
  transform: scale(1.05);
}

/* Verified badge top-left on image */
.card-verified-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(30, 30, 30, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-family: var(--font-cyber);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
}
.card-verified-badge svg {
  color: #a3e635;
}

/* Card lower info */
.jersey-card .info {
  padding: 12px 6px 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.jersey-card .card-badge-category,
.jersey-card .info .team-label {
  font-family: var(--font-cyber);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #777777;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.jersey-card .card-title,
.jersey-card .info h4 {
  font-family: var(--font-cyber);
  font-size: 1.12rem;
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jersey-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
  border-top: none;
  overflow: visible;
}
.jersey-card .price-block,
.jersey-card .card-price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.jersey-card .price {
  font-family: var(--font-price);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}
.jersey-card .price-original {
  font-family: var(--font-price);
  font-size: 0.78rem;
  font-weight: 600;
  color: #666666;
  text-decoration: line-through;
}

/* Circular Bag Button */
.card-action-btn,
.jersey-card .info .view-details-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.jersey-card:hover .card-action-btn,
.jersey-card:hover .info .view-details-btn {
  background: var(--green);
  color: #000000;
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(179, 240, 0, 0.5);
  transform: scale(1.08);
}

/* Hot badge */
.jersey-card .hot-badge {
  position: absolute;
  top: 10px;
  left: 14px;
  background: var(--green);
  color: #000;
  font-family: var(--font-cyber);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 4;
}

/* SVG placeholder */
.jersey-placeholder-svg {
  width: 52%; height: 52%;
  fill: none;
  stroke: var(--gray-2);
  stroke-width: 1.5;
  opacity: 0.55;
}
.jersey-placeholder-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.jersey-placeholder-jersey { transition: transform 0.6s var(--spring); }
.jersey-card:hover .jersey-placeholder-jersey { transform: scale(1.14); }

/* ÔöÇÔöÇÔöÇ Teams Grid ÔöÇÔöÇÔöÇ */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 12px;
}
.team-card {
  background: var(--bg-2);
  border: 1.5px solid rgba(255,255,255,0.06);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.4s ease, transform 0.3s var(--spring);
  will-change: transform;
  opacity: 0;
  animation: card-in 0.55s var(--spring) forwards;
}
/* Diagonal stripe top bar on team card */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 6px,
    transparent 6px,
    transparent 10px
  );
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.team-card:hover {
  border-color: rgba(179,240,0,0.28);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(179,240,0,0.1);
  transform: translateY(-3px);
}
.team-card:hover::before {
  background: repeating-linear-gradient(
    90deg,
    rgba(179,240,0,0.5) 0px,
    rgba(179,240,0,0.5) 6px,
    transparent 6px,
    transparent 10px
  );
}
.team-card h3 {
  font-family: var(--font-hero);
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}
.team-card p {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* ÔöÇÔöÇÔöÇ Back Link ÔöÇÔöÇÔöÇ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 32px;
  transition: var(--transition);
}
.back-link:hover { color: var(--green); transform: translateX(-4px); }

/* ÔöÇÔöÇÔöÇ Detail View ÔöÇÔöÇÔöÇ */
#jersey-detail {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
  gap: 60px !important;
  margin-top: 20px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
}
#jersey-detail > * {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
.detail-carousel-column {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
}
.detail-image,
.detail-carousel {
  width: 100% !important;
  max-width: 100% !important;
  height: 580px !important;
  min-height: 540px !important;
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: zoom-in !important;
  overflow: hidden !important;
  position: relative !important;
  transition: border-color 0.3s ease, box-shadow 0.4s ease !important;
  border-radius: var(--radius) !important;
}
.detail-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(179,240,0,0.035), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.detail-image:hover { border-color: rgba(179,240,0,0.18); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.detail-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.detail-image:hover img { transform: scale(1.03); }
.detail-image .zoom-overlay {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--border-hover);
  padding: 7px 15px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.detail-image:hover .zoom-overlay { color: var(--white); border-color: var(--border-green); }

.detail-info { display: flex; flex-direction: column; }
.detail-info .team-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.detail-info h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
  background: none;
  -webkit-text-fill-color: unset;
}
.selector-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.version-selector, .size-selector { margin-bottom: 28px; }
.version-options, .size-options { display: flex; flex-wrap: wrap; gap: 10px; }

.version-option {
  flex: 1; min-width: 100px;
  border: 1px solid var(--border-hover);
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--bg-2);
  color: var(--gray);
  transition: var(--transition);
  border-radius: var(--radius);
}
.version-option h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2px;
}
.version-option span { font-size: 0.8rem; }
.version-option.active {
  border-color: var(--green);
  background: rgba(179,240,0,0.07);
  color: var(--green);
  box-shadow: 0 0 20px rgba(179,240,0,0.07), inset 0 0 20px rgba(179,240,0,0.03);
}
.version-option.active h5 { color: var(--green); }
.version-option:hover:not(.active) { border-color: var(--border-hover); background: var(--bg-3); }

.size-option {
  width: 50px; height: 50px;
  border: 1px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: var(--bg-2);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}
.size-option.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(179,240,0,0.22);
}
.size-option:hover:not(.active) { border-color: var(--white); background: var(--bg-3); }

.name-printing {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.name-printing:focus-within { border-color: var(--border-green); box-shadow: 0 0 20px rgba(179,240,0,0.06); }
.name-printing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.name-printing-price {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(179,240,0,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.name-printing input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.name-printing input:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 2px rgba(179,240,0,0.1); }
.name-printing .fee-note { font-size: 0.72rem; color: var(--gray); margin-top: 6px; }

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.detail-price-box .label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.detail-price {
  font-family: var(--font-price);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(179, 240, 0, 0.25);
}

/* ÔöÇÔöÇÔöÇ Cart ÔöÇÔöÇÔöÇ */
#cart-items { margin-bottom: 32px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.cart-item:hover { border-color: var(--border-hover); }
.cart-item-img {
  width: 80px; height: 80px;
  background: var(--bg-3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cart-item-info p { font-size: 0.8rem; color: var(--gray); margin-bottom: 2px; }
.cart-item-info .item-customization { color: var(--green); font-weight: 600; }
.cart-item-price-qty { display: flex; align-items: center; gap: 20px; }
.cart-item-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--white); }
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-hover);
  overflow: hidden;
  border-radius: var(--radius);
}
.cart-item-qty button {
  background: var(--bg-3);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.cart-item-qty button:hover { background: var(--green); color: var(--bg); }
.cart-item-qty span { padding: 0 12px; font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; }
.cart-item-remove {
  background: none; border: none;
  color: #666;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.cart-item-remove:hover { color: #ef4444; }

#cart-summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
#cart-summary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
#cart-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.85rem;
  color: var(--gray);
}
#cart-summary .row.total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}
#cart-summary .row.total span:last-child { color: var(--green); }

.cart-empty { text-align: center; padding: 100px 0; color: var(--gray); }
.cart-empty-svg { width: 72px; height: 72px; stroke: var(--gray-2); fill: none; margin-bottom: 20px; }

/* ÔöÇÔöÇÔöÇ Checkout ÔöÇÔöÇÔöÇ */
.checkout-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--bg-2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(179,240,0,0.1);
}
.form-group textarea { resize: vertical; }

/* ÔöÇÔöÇÔöÇ Buttons ÔÇö Drippy Style ÔöÇÔöÇÔöÇ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border: none;
  font-family: var(--font-hero);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn:hover::after { left: 150%; }
.btn-primary { background: var(--green); color: #000; }
.btn-primary:hover { background: #ccff33; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(179,240,0,0.3); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.15); clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); background: var(--green-dim); }
.btn-block { display: flex; width: 100%; clip-path: none; border-radius: 0; }
.btn-outline-gold { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.btn-outline-gold:hover { background: var(--green); color: #000; box-shadow: 0 8px 28px rgba(179,240,0,0.22); }

.btn-add-cart {
  background: var(--green);
  color: #000;
  border: none;
  padding: 18px 0;
  width: 100%;
  font-family: var(--font-hero);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.btn-add-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.05) 8px,
    rgba(0,0,0,0.05) 10px
  );
  pointer-events: none;
}
.btn-add-cart::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-add-cart:hover::after { left: 150%; }
.btn-add-cart:hover { background: #ccff33; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(179,240,0,0.35); }

/* ÔöÇÔöÇÔöÇ Page Headings ÔÇö Drippy ÔöÇÔöÇÔöÇ */
h2, h3 {
  font-family: var(--font-hero);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: unset;
  display: block;
  letter-spacing: 4px;
}
h2 { font-size: 3.2rem; margin-bottom: 32px; }
h3 { font-size: 2.2rem; margin: 40px 0 24px; }

/* ÔöÇÔöÇÔöÇ Modal ÔöÇÔöÇÔöÇ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(24px);
}
.modal.active { opacity: 1; pointer-events: auto; }
.modal img {
  max-width: 85%; max-height: 85%;
  object-fit: contain;
  border: 1px solid var(--border-hover);
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
  transform: scale(0.9);
  transition: transform 0.45s var(--spring);
  border-radius: var(--radius);
}
.modal.active img { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 1.4rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.04);
}
.modal-close:hover { color: var(--white); border-color: var(--border-hover); background: rgba(255,255,255,0.08); }

/* ÔöÇÔöÇÔöÇ Order Confirmation ÔöÇÔöÇÔöÇ */
.confirmation-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.confirmation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.success-icon-svg { width: 64px; height: 64px; stroke: var(--green); stroke-width: 1.5; fill: none; margin-bottom: 24px; }
.confirmation-card h2 { font-size: 2.5rem; margin-bottom: 12px; }
.confirmation-card p { color: var(--gray); margin-bottom: 30px; }
.confirmation-details {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 30px;
  text-align: left;
}
.confirmation-details .row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 10px; }
.confirmation-details .row:last-child { margin-bottom: 0; }
.confirmation-details .row span:first-child { color: var(--gray); }
.confirmation-details .row span:last-child { font-weight: 600; }

/* ÔöÇÔöÇÔöÇ Footer ÔÇö Drippy ÔöÇÔöÇÔöÇ */
footer {
  background: var(--bg-2);
  border-top: 2px solid rgba(255,255,255,0.07);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px,
    var(--green) 28px,
    transparent 28px,
    transparent 36px
  );
  opacity: 0.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer-brand .logo-footer-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}
.footer-brand .logo-footer span { display: none; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: var(--transition);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-decoration: none;
}
.footer-social-link:hover { border-color: var(--green); color: var(--green); background: var(--green-dim); box-shadow: 0 0 14px rgba(179,240,0,0.1); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray);
  transition: color 0.25s ease;
  cursor: default;
}
.footer-col ul li span:hover { color: var(--gray-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-2);
}
.footer-specs { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-specs span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-specs span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
}

/* ÔöÇÔöÇÔöÇ Responsive ÔöÇÔöÇÔöÇ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}


/* ÔöÇÔöÇÔöÇ Auth Modal Overlay ÔöÇÔöÇÔöÇ */
.overlay-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}
.overlay-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.overlay-modal-content {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay-modal.active .overlay-modal-content {
  transform: scale(1) translateY(0);
}
.overlay-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.overlay-close:hover { color: var(--white); }
.overlay-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.overlay-modal-content .form-group {
  margin-bottom: 18px;
}
.overlay-modal-content .form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.overlay-modal-content .form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.overlay-modal-content .form-group input:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(179,240,0,0.1);
}
.form-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
  min-height: 1.2em;
}

/* ÔöÇÔöÇÔöÇ User Dropdown ÔöÇÔöÇÔöÇ */
.user-dropdown {
  position: fixed;
  top: 72px;
  right: 120px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 2001;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  padding: 8px 0;
}
.user-dropdown-header {
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.user-dropdown-header span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.user-dropdown-email {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}
.user-dropdown-item {
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.user-dropdown-item:hover {
  background: var(--green-dim);
  color: var(--white);
}
.user-dropdown-item:last-child {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  color: #ef4444;
}

/* ÔöÇÔöÇÔöÇ Search Overlay ÔöÇÔöÇÔöÇ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.search-overlay-inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
}
#search-input {
  width: 100%;
  padding: 20px 160px 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}
#search-input:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(179,240,0,0.1);
}
.search-btn {
  position: absolute;
  right: 56px;
  background: var(--green);
  border: none;
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.search-btn:hover {
  background: var(--white);
  box-shadow: 0 0 20px rgba(179,240,0,0.3);
}
.search-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.search-close:hover { color: var(--white); }
.search-results {
  width: 100%;
  max-width: 600px;
  margin-top: 24px;
  max-height: 60vh;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.search-result-item:hover {
  border-color: var(--green);
  background: var(--green-dim);
}
.search-result-item img, .search-result-item .jersey-placeholder-svg {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.search-result-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.search-result-info span {
  font-size: 0.78rem;
  color: var(--gray);
}
.search-empty {
  text-align: center;
  padding: 40px;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ÔöÇÔöÇÔöÇ Badge on account icon when logged in ÔöÇÔöÇÔöÇ */
.nav-icon.logged-in::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}
.nav-icon {
  position: relative;
}

/* ÔöÇÔöÇÔöÇ ADMIN PANEL ÔöÇÔöÇÔöÇ */
.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.admin-tab {
  background: transparent;
  border: none;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.admin-tab:hover { color: var(--white); }
.admin-tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}
.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.admin-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.admin-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
}
.admin-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}
.admin-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .admin-charts-grid { grid-template-columns: 1fr; }
}
.admin-chart-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.admin-chart-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
  color: var(--white);
}
.admin-table-wrapper {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.admin-table th {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.admin-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(255,255,255,0.03); }
.admin-table .jersey-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}
.admin-table .btn-small {
  padding: 4px 12px;
  font-size: 0.7rem;
}
.admin-table .btn-danger {
  background: #ef4444;
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
}
.admin-table .btn-danger:hover { opacity: 0.8; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.admin-nav-link { display: none; }

/* ÔöÇÔöÇÔöÇ Region & Currency Selector ÔöÇÔöÇÔöÇ */
.region-selector-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.region-selector-container:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 12px rgba(179, 240, 0, 0.08);
}
.region-selector-container .globe-icon {
  color: var(--green);
  flex-shrink: 0;
}
.header-region-select {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  padding-right: 4px;
}
.header-region-select option {
  background: var(--bg-2);
  color: var(--white);
  padding: 8px;
}

/* ÔöÇÔöÇÔöÇ Category Filter Bar ÔöÇÔöÇÔöÇ */
.category-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.category-filter-bar::-webkit-scrollbar {
  height: 4px;
}
.category-filter-bar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.cat-filter-btn {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.cat-filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--white);
}
.cat-filter-btn.active {
  background: rgba(179, 240, 0, 0.12);
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 15px rgba(179, 240, 0, 0.1);
}

/* ÔöÇÔöÇÔöÇ Checkout Payment Method Selector ÔöÇÔöÇÔöÇ */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}
.payment-method-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.payment-method-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}
.payment-method-card.active {
  border-color: var(--green);
  background: rgba(179, 240, 0, 0.04);
  box-shadow: 0 0 15px rgba(179, 240, 0, 0.08);
}
.payment-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.payment-card-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.3;
}



/* ══════════════
     DETAIL CAROUSEL (added for multi-image)
══════════════ */
.detail-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(179, 240, 0, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.detail-carousel:hover {
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px var(--green-glow);
}
.detail-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.detail-carousel-track.dragging { transition: none; }
.detail-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.detail-carousel-slide img,
.detail-carousel-track .carousel-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
}
.detail-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(9, 10, 15, 0.75);
  border: 1px solid rgba(179, 240, 0, 0.3);
  color: var(--green);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
.detail-carousel-nav:hover {
  border-color: var(--green);
  background: var(--green);
  color: #090a0f;
  box-shadow: 0 0 20px var(--green-glow);
}
.detail-carousel-prev { left: 16px; }
.detail-carousel-next { right: 16px; }
.detail-carousel-counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--green);
  background: rgba(9, 10, 15, 0.75);
  border: 1px solid rgba(179, 240, 0, 0.2);
  padding: 5px 14px;
  border-radius: 3px;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.detail-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.detail-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.detail-carousel-dot.active {
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
  width: 26px;
  border-radius: 4px;
}
#image-reorder-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 9, 0.95);
  z-index: 10000;
  display: none;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
#image-reorder-overlay.active { display: flex; }



/* ═════════════════════════════════════════════════════════════════
   PERFECTED ULTRA-ERGONOMIC RESPONSIVE DESIGN SYSTEM
   ═════════════════════════════════════════════════════════════════ */

/* ─── Mobile Navigation Drawer ─── */
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
  }
  nav, #main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 260px !important;
    max-width: 82vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(8, 8, 12, 0.98) !important;
    backdrop-filter: blur(28px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 75px 22px 30px !important;
    gap: 14px !important;
    z-index: 1050 !important;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease !important;
    box-shadow: none !important;
    overflow-y: auto !important;
  }
  nav.active, #main-nav.active {
    right: 0 !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(179, 240, 0, 0.1) !important;
  }
  nav a, #main-nav a {
    display: flex !important;
    font-size: 0.95rem !important;
    letter-spacing: 1.5px !important;
    padding: 10px 0 !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: var(--gray-light) !important;
  }
  nav a:hover, nav a.active, #main-nav a:hover, #main-nav a.active {
    color: var(--green) !important;
    transform: translateX(4px) !important;
  }
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  #jersey-detail {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 10px !important;
  }
  .detail-image,
  .detail-carousel {
    min-height: 300px !important;
    height: 360px !important;
    max-height: 48vh !important;
  }
  .detail-info h2 {
    font-size: 1.6rem !important;
    margin-bottom: 14px !important;
  }
  .checkout-container { grid-template-columns: 1fr; gap: 24px; }
  .hero-heading { font-size: clamp(64px, 15vw, 115px) !important; line-height: 0.94 !important; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 0; }
  .stat-item { padding: 0 12px; }
}

/* ─── Compact Mobile Devices (<= 768px) ─── */
@media (max-width: 768px) {
  /* Global Page Layout */
  .container {
    padding: 0 12px !important;
  }

  /* Header */
  header {
    height: 58px !important;
    padding: 0 12px !important;
  }
  .header-inner {
    gap: 6px !important;
  }
  .logo {
    gap: 6px !important;
  }
  .header-logo-img {
    height: 36px !important;
    max-height: 38px !important;
  }
  .logo-cyber-text {
    font-size: 1.12rem !important;
  }
  .nav-icons {
    gap: 6px !important;
  }
  .nav-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .nav-icon svg {
    width: 15px !important;
    height: 15px !important;
  }
  .region-selector-container {
    padding: 3px 6px !important;
    border-radius: 6px !important;
    gap: 4px !important;
  }
  .region-selector-container .globe-icon {
    width: 13px !important;
    height: 13px !important;
  }
  .header-region-select {
    font-size: 0.62rem !important;
    max-width: 66px !important;
  }
  .cart-btn {
    padding: 5px 10px !important;
    gap: 4px !important;
    font-size: 0.72rem !important;
    height: 32px !important;
    border-radius: 6px !important;
  }
  .cart-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  .cart-btn-label {
    display: none !important;
  }
  .hamburger {
    width: 24px !important;
    height: 17px !important;
  }

  /* Compact Hero */
  .hero {
    padding: 18px 0 14px !important;
    min-height: auto !important;
  }
  .hero-badges {
    gap: 6px !important;
    margin-bottom: 10px !important;
  }
  .hero-badge {
    padding: 4px 10px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.8px !important;
    gap: 5px !important;
  }
  .hero-badge svg {
    width: 11px !important;
    height: 11px !important;
  }
  .hero-heading {
    font-size: clamp(56px, 17.5vw, 92px) !important;
    line-height: 0.92 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 14px !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .hero-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 4px !important;
  }
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .btn-browse {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 18px !important;
    font-size: 0.82rem !important;
    height: 40px !important;
    border-radius: 6px !important;
  }
  .btn-browse svg {
    width: 14px !important;
    height: 14px !important;
  }
  .hero-desc {
    max-width: 100% !important;
    font-size: 0.68rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* Marquee */
  .marquee-track {
    padding: 6px 0 !important;
  }
  .marquee-item {
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
  }

  /* Section Headers & Filter Pills */
  .section {
    padding: 24px 0 !important;
  }
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
  }
  .section-title {
    font-size: 1.25rem !important;
  }
  .category-pills, .filter-bar {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 6px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }
  .category-pills::-webkit-scrollbar, .filter-bar::-webkit-scrollbar {
    display: none !important;
  }
  .category-pill, .filter-btn {
    padding: 5px 12px !important;
    font-size: 0.68rem !important;
    border-radius: 18px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* 2-Column Jersey Grid */
  .jersey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .teams-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .jersey-card {
    border-radius: 10px !important;
    padding: 8px !important;
  }
  .jersey-card-image-wrapper {
    height: 145px !important;
  }
  .card-verified-badge {
    top: 6px !important;
    right: 6px !important;
    padding: 2px 6px !important;
    font-size: 0.52rem !important;
  }
  .jersey-card-info {
    padding: 8px !important;
  }
  .jersey-card-title, .jersey-card h3 {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    margin: 4px 0 3px !important;
    height: 2.4em !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .jersey-card-team {
    font-size: 0.58rem !important;
    margin-bottom: 2px !important;
  }
  .jersey-card-price {
    font-size: 0.82rem !important;
  }
  .card-actions {
    margin-top: 6px !important;
  }
  .card-btn {
    padding: 6px 10px !important;
    font-size: 0.68rem !important;
    height: 28px !important;
    border-radius: 5px !important;
  }
  .jersey-card .card-footer {
    gap: 6px !important;
    padding-right: 2px !important;
  }
  .card-action-btn {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    flex-shrink: 0 !important;
  }
  .jersey-card .card-price-group {
    min-width: 0 !important;
    flex: 1 !important;
    overflow: hidden !important;
  }
  .jersey-card .price {
    font-size: 1rem !important;
    white-space: nowrap !important;
  }
  .jersey-card .price-original {
    font-size: 0.65rem !important;
  }

  /* Product Detail Page */
  #page-detail > div {
    padding-top: 10px !important;
  }
  .back-link {
    font-size: 0.68rem !important;
    padding: 4px 0 !important;
    margin-bottom: 6px !important;
  }
  #jersey-detail {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 4px !important;
  }
  .detail-image,
  .detail-carousel {
    height: 250px !important;
    min-height: 230px !important;
    max-height: 38vh !important;
    border-radius: 10px !important;
  }
  .detail-carousel-nav {
    width: 28px !important;
    height: 28px !important;
  }
  .detail-carousel-nav svg {
    width: 12px !important;
    height: 12px !important;
  }
  .detail-carousel-prev { left: 6px !important; }
  .detail-carousel-next { right: 6px !important; }
  .detail-carousel-counter {
    font-size: 0.58rem !important;
    padding: 3px 7px !important;
    bottom: 6px !important;
    left: 6px !important;
  }
  .detail-carousel-dots {
    margin-top: 6px !important;
    gap: 5px !important;
  }
  .detail-carousel-dot {
    width: 5px !important;
    height: 5px !important;
  }
  .detail-carousel-dot.active {
    width: 16px !important;
  }
  .detail-info h2 {
    font-size: 1.25rem !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
  }
  .detail-info .team-label {
    font-size: 0.6rem !important;
    margin-bottom: 8px !important;
  }
  .selector-title {
    font-size: 0.6rem !important;
    margin-bottom: 5px !important;
  }
  .version-options {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
  }
  .version-option {
    padding: 7px 9px !important;
    border-radius: 6px !important;
  }
  .version-option h5 {
    font-size: 0.7rem !important;
    margin-bottom: 2px !important;
  }
  .version-option span {
    font-size: 0.65rem !important;
  }
  .size-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin-bottom: 10px !important;
  }
  .size-option {
    flex: 1 0 calc(20% - 5px) !important;
    min-width: 32px !important;
    height: 32px !important;
    font-size: 0.72rem !important;
    border-radius: 5px !important;
  }
  .name-printing {
    margin-bottom: 10px !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
  }
  .name-printing input {
    padding: 7px 10px !important;
    font-size: 16px !important;
    height: 34px !important;
    border-radius: 5px !important;
  }
  .fee-note {
    font-size: 0.56rem !important;
    margin-top: 3px !important;
  }
  .detail-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 10px !important;
  }
  .btn-add-cart, .btn-buy-now {
    width: 100% !important;
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
    height: 40px !important;
  }
  .detail-price-display {
    font-size: 1.15rem !important;
    margin-top: 4px !important;
  }

  /* Cart Items */
  .cart-item {
    padding: 8px 10px !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
  }
  .cart-item-img {
    width: 48px !important;
    height: 48px !important;
  }
  .cart-item-info h4 {
    font-size: 0.72rem !important;
    margin-bottom: 2px !important;
  }
  .cart-item-info p {
    font-size: 0.62rem !important;
  }
  .cart-item-price {
    font-size: 0.8rem !important;
  }
  .cart-item-qty button {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.75rem !important;
  }
  .cart-item-qty span {
    padding: 0 5px !important;
    font-size: 0.7rem !important;
  }
  #cart-summary {
    padding: 12px 14px !important;
  }
  .summary-row {
    font-size: 0.72rem !important;
    margin-bottom: 6px !important;
  }
  .summary-total {
    font-size: 0.95rem !important;
  }

  /* Forms & Modals iOS Protection */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }
  .overlay-modal .modal-content,
  .auth-modal {
    width: 94% !important;
    max-width: 100% !important;
    padding: 20px 14px !important;
    margin: 0 auto;
  }

  /* Compact Footer */
  footer {
    padding: 24px 0 14px !important;
    margin-top: 32px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
  }
  .footer-brand .logo-footer-img {
    height: 36px !important;
    margin-bottom: 8px !important;
  }
  .footer-brand p {
    font-size: 0.66rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    max-width: 100% !important;
  }
  .footer-social-link {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.6rem !important;
  }
  .footer-col h5 {
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
  }
  .footer-col ul li {
    margin-bottom: 4px !important;
  }
  .footer-col ul li span {
    font-size: 0.64rem !important;
  }
  .footer-bottom {
    padding-top: 10px !important;
    gap: 6px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-bottom p, .footer-specs span {
    font-size: 0.55rem !important;
  }
}

@media (max-width: 480px) {
  .logo-cyber-text {
    font-size: 0.98rem !important;
  }
  .header-logo-img {
    height: 32px !important;
    max-height: 34px !important;
  }
  .region-selector-container {
    display: none !important;
  }
  .hero-heading {
    font-size: clamp(50px, 16.5vw, 76px) !important;
    line-height: 0.93 !important;
    letter-spacing: -1px !important;
  }
  .detail-image,
  .detail-carousel {
    height: 230px !important;
    min-height: 210px !important;
  }
  .detail-info h2 {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 360px) {
  .jersey-grid {
    grid-template-columns: 1fr !important;
  }
  .teams-grid {
    grid-template-columns: 1fr !important;
  }
}
