/* =============================================
       CSS VARIABLES — JERSEY JUNCTION DESIGN SYSTEM
    ============================================= */
:root {
  --bg-primary: #0a0812;
  --bg-secondary: #0f0d1a;
  --bg-card: #13111f;
  --bg-card-hover: #1a1729;
  --purple-deep: #3d1f8a;
  --purple-mid: #6c3ce8;
  --purple-light: #9b6ef5;
  --pink-hot: #e8196e;
  --pink-light: #ff4d8f;
  --pink-glow: rgba(232, 25, 110, 0.25);
  --purple-glow: rgba(108, 60, 232, 0.25);
  --text-primary: #f0eaf8;
  --text-secondary: #a89cc8;
  --text-muted: #6b5f8a;
  --border-subtle: rgba(155, 110, 245, 0.12);
  --border-glow: rgba(232, 25, 110, 0.3);
  --gradient-brand: linear-gradient(135deg, var(--purple-mid), var(--pink-hot));
  --gradient-dark: linear-gradient(180deg, #0a0812 0%, #0f0d1a 100%);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-pink: 0 0 30px rgba(232, 25, 110, 0.3);
  --shadow-glow-purple: 0 0 30px rgba(108, 60, 232, 0.3);
}

/* =============================================
       RESET & BASE
    ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

/* =============================================
       SCROLLBAR
    ============================================= */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-mid);
  border-radius: 2px;
}

/* =============================================
       UTILITY CLASSES
    ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 60, 232, 0.15);
  border: 1px solid rgba(108, 60, 232, 0.3);
  color: var(--purple-light);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

/* =============================================
       NOISE TEXTURE OVERLAY
    ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* =============================================
       NAVBAR
    ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 8, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
}

.nav-section {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-center {
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: white;
  box-shadow: var(--shadow-glow-pink);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-icons-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--pink-hot);
  transform: translateY(-2px);
}

.icon-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--pink-hot);
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(232, 25, 110, 0.4);
}

.nav-brand-group {
  display: none;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Search Modal Styles */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 18, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.search-modal {
  width: 100%;
  max-width: 800px;
}

.search-input-wrap {
  position: relative;
  border-bottom: 2px solid var(--border-subtle);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-input-wrap i {
  font-size: 24px;
  color: var(--pink-hot);
}

.search-input-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  outline: none;
}

.search-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.search-close:hover {
  color: white;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .navbar-inner { display: flex; justify-content: space-between; padding: 0 20px; }
  .nav-center { display: none; }
  .nav-left { flex: 1; gap: 15px; }
  .nav-right { flex: initial; }
  .nav-icons-group { display: none; }
  .mobile-only { display: block; }

  .hero-badge { margin-top: 20px; padding: 6px 12px; }
  .hero-badge-dot { display: none; }
}

.nav-link {
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(155, 110, 245, 0.08);
}

.nav-link.active {
  color: var(--pink-light);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--pink-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-pink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-icons {
  display: none;
}

.hamburger-adjacent {
  display: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 8, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  padding: 12px 16px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  color: var(--text-primary);
  background: rgba(155, 110, 245, 0.08);
  border-color: var(--border-subtle);
}

/* =============================================
       HERO SECTION
    ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(108, 60, 232, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 25, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 0%, rgba(108, 60, 232, 0.1) 0%, transparent 60%),
    var(--bg-primary);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 110, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 110, 245, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 25, 110, 0.1);
  border: 1px solid rgba(232, 25, 110, 0.25);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 10px var(--pink-hot);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-title .line1 {
  display: block;
  color: var(--text-primary);
}

.hero-title .line2 {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line3 {
  display: block;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 30px var(--pink-glow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(232, 25, 110, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px solid rgba(155, 110, 245, 0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  background: rgba(108, 60, 232, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}



.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(108, 60, 232, 0.2) 0%, transparent 60%);
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 8, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-visual-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}



.hero-visual-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-visual-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-float-1,
.hero-float-2 {
  position: absolute;
  background: rgba(10, 8, 18, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.hero-float-1 {
  top: 20px;
  right: -20px;
  animation: float1 4s ease-in-out infinite;
}

.hero-float-2 {
  top: 45%;
  right: -30px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.float-icon {
  font-size: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}

.float-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.float-sub {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
       SECTION DIVIDER — TWO SECTIONS
    ============================================= */
.section-chooser {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.chooser-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.chooser-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.chooser-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.chooser-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.chooser-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px 36px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.chooser-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-pink);
}

.chooser-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(232, 25, 110, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.chooser-card:hover::before {
  opacity: 1;
}

.chooser-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow-pink);
}

.chooser-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.chooser-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.chooser-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-light);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.chooser-card-link:hover {
  gap: 14px;
}

.chooser-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(232, 25, 110, 0.15);
  border: 1px solid rgba(232, 25, 110, 0.25);
}

.chooser-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(232, 25, 110, 0.15);
  border: 1px solid rgba(232, 25, 110, 0.25);
  color: var(--pink-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* =============================================
       FONT COLLECTION MARQUEE
    ============================================= */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee-left 40s linear infinite;
}

.marquee-content-right {
  display: inline-block;
  animation: marquee-right 40s linear infinite;
}

.marquee-container:hover .marquee-content,
.marquee-container:hover .marquee-content-right {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

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

@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }

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

.font-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 320px;
  height: 160px;
  padding: 30px;
  margin: 0 10px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  vertical-align: top;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  text-align: center;
}

.font-card:hover {
  border-color: var(--pink-hot);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-pink);
}

.font-card .font-preview {
  font-size: 56px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
       CUSTOM JERSEY SECTION
    ============================================= */
.custom-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

/* Design Gallery */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.design-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1 / 1 !important;
  display: block;
}

.design-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-pink);
}

.design-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.design-card:hover img {
  transform: scale(1.05);
}

.design-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 8, 18, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.design-card-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.design-card-code {
  font-size: 11px;
  color: var(--pink-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.show-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid rgba(155, 110, 245, 0.3);
  color: var(--purple-light);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.show-more-btn:hover {
  border-color: var(--purple-light);
  background: rgba(108, 60, 232, 0.1);
}

/* Price Table */
.price-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--pink-hot);
  box-shadow: var(--shadow-glow-pink);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.price-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.price-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 1px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.price-unit {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✦';
  color: var(--pink-hot);
  font-size: 10px;
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.price-btn-outline {
  background: transparent;
  border: 1px solid rgba(155, 110, 245, 0.3);
  color: var(--purple-light);
}

.price-btn-outline:hover {
  border-color: var(--purple-light);
  background: rgba(108, 60, 232, 0.1);
}

.price-btn-filled {
  background: var(--gradient-brand);
  color: white;
  border: none;
  box-shadow: 0 4px 20px var(--pink-glow);
}

.price-btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-pink);
}

/* Collar & Fabric Gallery */
.gallery-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.gallery-row::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex-shrink: 0;
  width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item-label {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Size Chart */
.size-table {
  width: 100%;
  border-collapse: collapse;
}

.size-table th {
  background: rgba(108, 60, 232, 0.15);
  color: var(--purple-light);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.size-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.size-table tr:hover td {
  background: rgba(108, 60, 232, 0.05);
  color: var(--text-primary);
}

.size-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

/* Font Collection */
.font-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.font-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.font-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-pink);
}

.font-preview {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.font-name {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Shipping Partners */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shipping-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.shipping-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.shipping-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.shipping-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.shipping-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* Happy Customers */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.customer-photo {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  transition: var(--transition);
  position: relative;
}

.customer-photo:hover {
  border-color: var(--pink-hot);
  transform: scale(1.03);
}

.customer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(232, 25, 110, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: var(--transition);
}

.customer-photo:hover .customer-photo-overlay {
  opacity: 1;
}

.customer-photo-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

/* Feedback */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feedback-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}

.feedback-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.feedback-stars {
  color: var(--pink-hot);
  font-size: 14px;
  margin-bottom: 14px;
}

.feedback-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.feedback-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.feedback-tag {
  font-size: 11px;
  color: var(--pink-light);
}

/* Request Call */
.call-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.call-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.call-title {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.call-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.call-form {
  display: flex;
  gap: 12px;
}

.call-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.call-input:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(108, 60, 232, 0.15);
}

.call-input::placeholder {
  color: var(--text-muted);
}

.call-submit {
  padding: 14px 28px;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.call-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-pink);
}

/* =============================================
       THAI PREMIUM SECTION
    ============================================= */
.thai-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

/* Filter Bar */
.filter-bar {
  margin-bottom: 40px;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.filter-btn {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(155, 110, 245, 0.15);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--purple-light);
  background: rgba(155, 110, 245, 0.08);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px var(--pink-glow);
}

.filter-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
  align-self: center;
}

/* Jersey Grid */
.jersey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.jersey-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.jersey-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-pink);
}

.jersey-card-img {
  position: relative;
  aspect-ratio: 1 / 1.1;
}

.jersey-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jersey-edition {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edition-player {
  background: rgba(232, 25, 110, 0.2);
  color: var(--pink-light);
  border: 1px solid rgba(232, 25, 110, 0.3);
}

.edition-fan {
  background: rgba(108, 60, 232, 0.2);
  color: var(--purple-light);
  border: 1px solid rgba(108, 60, 232, 0.3);
}

.jersey-stock {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(10, 8, 18, 0.8);
  backdrop-filter: blur(5px);
}

.stock-in { color: #4ade80; }
.stock-out { color: #f87171; }

.jersey-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(10, 8, 18, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.jersey-wishlist:hover {
  color: var(--pink-hot);
  transform: scale(1.1);
}

.jersey-wishlist .fas.fa-heart {
  color: var(--pink-hot);
}

.jersey-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jersey-card-team {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.jersey-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  flex-grow: 1;
}

.jersey-card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent, var(--pink-light));
  margin-bottom: 16px;
}

.jersey-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.jersey-cart-btn, .jersey-order-btn {
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 1px;
}

.jersey-cart-btn {
  background: rgba(155, 110, 245, 0.1);
  color: var(--purple-light);
  border: 1px solid var(--border-subtle);
}

.jersey-order-btn {
  background: var(--gradient-brand);
  color: white;
}

@media (max-width: 767px) {
  .jersey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .jersey-card {
    border-radius: 12px;
  }
  .jersey-card-info {
    padding: 10px;
  }
  .jersey-card-team {
    font-size: 10px;
  }
  .jersey-card-name {
    font-size: 13px;
    margin-bottom: 6px;
    height: 34px; /* Force 2 lines or stable height */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .jersey-card-price {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .jersey-card-actions {
    display: flex;
    gap: 4px;
  }
  .jersey-cart-btn, .jersey-order-btn {
    padding: 8px 4px;
    font-size: 9px;
    border-radius: 6px;
    letter-spacing: 0px;
    white-space: nowrap;
  }
  .jersey-cart-btn {
    flex: 0 0 35%; /* Make cart button smaller to give room to 'Order Now' */
  }
  .jersey-order-btn {
    flex: 1;
  }
  .jersey-edition {
    font-size: 9px;
    padding: 2px 8px;
    top: 6px;
    left: 6px;
  }
  .jersey-stock {
    font-size: 9px;
    padding: 2px 8px;
    bottom: 6px;
    left: 6px;
  }
  .jersey-wishlist {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* =============================================
       PAYMENT SECTION
    ============================================= */
.payment-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.payment-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.payment-divider {
  width: 1px;
  height: 30px;
  background: var(--border-subtle);
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 18px;
  transition: var(--transition);
}

.payment-badge:hover {
  border-color: var(--border-glow);
}

.payment-badge-icon {
  font-size: 20px;
}

.payment-badge-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* =============================================
       FOOTER
    ============================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--pink-hot);
  background: rgba(232, 25, 110, 0.1);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--pink-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-copy span {
  color: var(--pink-light);
}

.footer-since {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* =============================================
       SCROLL REVEAL ANIMATION
    ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .chooser-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger,
  .hamburger-adjacent,
  .mobile-nav-icons {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .custom-section,
  .thai-section,
  .font-collection-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-chooser {
    padding: 46px 0;
  }

  .chooser-inner {
    padding: 0 14px;
  }

  .chooser-title {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .chooser-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .chooser-cards {
    gap: 12px;
  }

  .chooser-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .chooser-card-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .chooser-card-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .hamburger,
  .hamburger-adjacent {
    display: flex;
  }

  .section-pad {
    padding: 60px 0;
  }

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

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

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

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

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

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .jersey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thai-section .jersey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .thai-section .jersey-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .call-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .design-grid {
    grid-template-columns: 1fr;
  }

  .jersey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thai-section .jersey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}