/* ==========================================================================
   VIRON SPORTS - Official Stylesheet
   Modern Athletic Aesthetic: High Contrast Dark Stealth & Electric Volt
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Teko:wght@500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #0a0d14;
  --bg-secondary: #101522;
  --bg-tertiary: #171e30;
  --bg-card: rgba(22, 29, 46, 0.75);
  --bg-card-hover: rgba(28, 38, 61, 0.9);
  
  --primary-volt: #00f076;
  --primary-volt-glow: rgba(0, 240, 118, 0.35);
  --primary-volt-dark: #00c762;
  --accent-cyan: #00e5ff;
  --accent-cyan-glow: rgba(0, 229, 255, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #0a0d14;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: var(--primary-volt);
  
  --danger: #ff4757;
  --warning: #ffa502;
  --success: #2ed573;
  
  /* Typography */
  --font-heading: 'Teko', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--primary-volt-glow);
  --shadow-drawer: -10px 0 35px rgba(0, 0, 0, 0.8);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(circle at 50% 0%, #151d2f 0%, #0a0d14 70%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
  background: transparent;
  transition: all var(--transition-fast);
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
}

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-volt {
  color: var(--primary-volt) !important;
}

.text-cyan {
  color: var(--accent-cyan) !important;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #0f172a, #00f076, #00e5ff, #0f172a);
  background-size: 300% 100%;
  animation: gradientShift 10s ease infinite;
  color: #06090e;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  text-align: center;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-volt), var(--accent-cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  box-shadow: 0 0 15px var(--primary-volt-glow);
  transform: skewX(-10deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 0.9;
  color: #ffffff;
  text-transform: uppercase;
}

.logo-title span {
  color: var(--primary-volt);
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-volt);
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--primary-volt);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  position: relative;
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  background: rgba(0, 240, 118, 0.15);
  border-color: var(--primary-volt);
  color: var(--primary-volt);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary-volt);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px var(--primary-volt);
}

.menu-toggle {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 13, 20, 0.95) 0%, rgba(10, 13, 20, 0.75) 50%, rgba(10, 13, 20, 0.85) 100%),
              url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  z-index: 1;
}

.hero-glow-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-volt-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 240, 118, 0.12);
  border: 1px solid rgba(0, 240, 118, 0.3);
  color: var(--primary-volt);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--primary-volt);
  text-shadow: 0 0 30px var(--primary-volt-glow);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 580px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.btn-primary {
  background: var(--primary-volt);
  color: #000;
  box-shadow: 0 4px 20px var(--primary-volt-glow);
  transform: skewX(-5deg);
}

.btn-primary span {
  transform: skewX(5deg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: #25ff8d;
  box-shadow: 0 6px 28px rgba(0, 240, 118, 0.6);
  transform: skewX(-5deg) translateY(-3px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: skewX(-5deg);
}

.btn-outline span {
  transform: skewX(5deg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: skewX(-5deg) translateY(-3px);
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.stat-number span {
  color: var(--primary-volt);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-volt);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   Store / Product Catalog Section
   ========================================================================== */
.store-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Category Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-tab {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.filter-tab.active {
  background: var(--primary-volt);
  border-color: var(--primary-volt);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--primary-volt-glow);
}

/* Search and Sort Toolbar */
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-box svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-dim);
}

.search-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.8rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-volt);
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.sort-select {
  padding: 0.7rem 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.sort-select:focus {
  border-color: var(--primary-volt);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 240, 118, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 118, 0.15);
}

.card-image-wrap {
  position: relative;
  height: 270px;
  background: #0d121c;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .card-img {
  transform: scale(1.08);
}

/* Badges */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.badge-hot {
  background: var(--primary-volt);
  color: #000;
  box-shadow: 0 0 10px var(--primary-volt-glow);
}

.badge-shield {
  background: var(--accent-cyan);
  color: #000;
}

.badge-exclusive {
  background: #a855f7;
  color: #fff;
}

.badge-aqua {
  background: #3b82f6;
  color: #fff;
}

.badge-value {
  background: #f59e0b;
  color: #000;
}

.badge-new {
  background: #ec4899;
  color: #fff;
}

/* Quick Actions overlay */
.card-quick-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  transition: bottom var(--transition-fast);
  z-index: 3;
}

.product-card:hover .card-quick-actions {
  bottom: 0;
}

.btn-quick {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-quick:hover {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Card Body */
.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.product-card:hover .card-title {
  color: var(--primary-volt);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.card-rating span {
  color: var(--text-dim);
  margin-left: 0.2rem;
}

.card-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--primary-volt);
  margin-bottom: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.btn-card-add {
  background: rgba(0, 240, 118, 0.15);
  border: 1px solid var(--primary-volt);
  color: var(--primary-volt);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-card-add:hover {
  background: var(--primary-volt);
  color: #000;
  box-shadow: 0 0 12px var(--primary-volt-glow);
}

/* ==========================================================================
   Glove Technology Showcase
   ========================================================================== */
.tech-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: linear-gradient(180deg, rgba(22, 29, 46, 0.8) 0%, rgba(16, 21, 34, 0.8) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.tech-card:hover {
  border-color: var(--primary-volt);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 118, 0.15);
}

.tech-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(0, 240, 118, 0.12);
  border: 1px solid rgba(0, 240, 118, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-volt);
  margin-bottom: 1.5rem;
}

.tech-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.tech-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

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

/* ==========================================================================
   Cut & Sizing Interactive Guide
   ========================================================================== */
.guide-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Cuts Comparison */
.cuts-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cut-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-cyan);
  transition: transform var(--transition-fast);
}

.cut-box:hover {
  transform: translateX(6px);
}

.cut-box.active-cut {
  border-left-color: var(--primary-volt);
  background: rgba(0, 240, 118, 0.05);
}

.cut-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cut-tag {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.cut-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Interactive Calculator */
.calc-card {
  background: linear-gradient(145deg, #182236 0%, #101726 100%);
  border: 1px solid rgba(0, 240, 118, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-volt-glow) 0%, transparent 70%);
  pointer-events: none;
}

.calc-header h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.5rem;
}

.calc-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.calc-form-group {
  margin-bottom: 1.5rem;
}

.calc-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.calc-input-row {
  display: flex;
  gap: 0.75rem;
}

.calc-input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
}

.calc-input:focus {
  border-color: var(--primary-volt);
}

.unit-select {
  width: 100px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  padding: 0 0.75rem;
  cursor: pointer;
}

.calc-result-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 240, 118, 0.08);
  border: 1px solid rgba(0, 240, 118, 0.3);
  border-radius: var(--radius-md);
  text-align: center;
}

.calc-result-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.calc-result-size {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--primary-volt);
  margin: 0.3rem 0;
  text-shadow: 0 0 20px var(--primary-volt-glow);
}

.calc-result-tip {
  font-size: 0.85rem;
  color: var(--text-main);
}

/* ==========================================================================
   Custom Teamwear / Wholesale Section
   ========================================================================== */
.teamwear-section {
  padding: 6rem 0;
  position: relative;
}

.teamwear-banner {
  background: linear-gradient(135deg, rgba(20, 27, 43, 0.95), rgba(11, 15, 25, 0.98)),
              url('https://images.unsplash.com/photo-1515523110800-9415d13b84a8?auto=format&fit=crop&w=1600&q=80') center/cover;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.teamwear-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.teamwear-info h2 span {
  color: var(--primary-volt);
}

.teamwear-info p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.teamwear-perks {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.teamwear-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #fff;
}

.teamwear-perks svg {
  color: var(--primary-volt);
  width: 18px;
  height: 18px;
}

/* Teamwear Form */
.teamwear-form-card {
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.teamwear-form-card h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: var(--primary-volt);
}

/* ==========================================================================
   Athlete Testimonials
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testi-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testi-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.75rem;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-volt);
}

.testi-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #06080e;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-volt);
  padding-left: 4px;
}

.newsletter-box {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
}

.newsletter-input:focus {
  border-color: var(--primary-volt);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Slide-out Cart Drawer
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #0f1422;
  border-left: 1px solid var(--border-light);
  box-shadow: var(--shadow-drawer);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
}

.cart-close-btn {
  color: var(--text-muted);
  font-size: 1.5rem;
}

.cart-close-btn:hover {
  color: #fff;
}

/* Free shipping bar */
.shipping-progress-wrap {
  padding: 0.85rem 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-light);
}

.shipping-progress-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  display: flex;
  justify-content: space-between;
}

.shipping-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.shipping-bar-fill {
  height: 100%;
  background: var(--primary-volt);
  width: 0%;
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--primary-volt);
}

/* Cart Items */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  margin: auto;
  text-align: center;
  color: var(--text-dim);
  padding: 2rem;
}

.cart-empty-state svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.cart-item-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
}

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

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

.cart-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
}

.qty-btn {
  padding: 0.2rem 0.6rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.qty-val {
  padding: 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-volt);
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.cart-item-remove {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.cart-item-remove:hover {
  color: var(--danger);
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: #0b0f19;
}

.promo-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0.8rem 0 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-light);
}

.cart-total-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-volt);
}

.cart-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1eb954;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

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

.modal-content {
  background: #111728;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--danger);
}

.modal-gallery {
  position: relative;
  background: #0a0e1a;
  min-height: 360px;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-volt);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-volt);
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.size-select-group {
  margin-bottom: 1.5rem;
}

.size-select-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-btn {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.size-btn:hover {
  border-color: #fff;
}

.size-btn.active {
  background: var(--primary-volt);
  border-color: var(--primary-volt);
  color: #000;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #172033;
  border-left: 4px solid var(--primary-volt);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .guide-layout,
  .teamwear-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #0a0d14;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: left var(--transition-smooth);
    border-top: 1px solid var(--border-light);
  }

  .nav-links.mobile-open {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }

  .teamwear-banner {
    padding: 2.5rem 1.5rem;
  }
  
  .store-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
