/* ============================================
   STADIUM ELECTRIC - Sports World Collectibles
   Bold sports energy / Jumbotron aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --midnight: #0b0b0f;
  --electric: #00ff87;
  --electric-dim: #00cc6a;
  --electric-glow: rgba(0, 255, 135, 0.25);
  --electric-subtle: rgba(0, 255, 135, 0.08);
  --white-hot: #f0f0f0;
  --steel: #2a2d35;
  --steel-light: #3a3e48;
  --steel-dark: #1a1c22;
  --charcoal: #141418;
  --red-hot: #ff3b4a;
  --amber: #ffaa00;
  --blue-ice: #00b4ff;

  --font-display: 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--white-hot);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--steel); }
::-webkit-scrollbar-thumb:hover { background: var(--electric); }

/* ---- Utility: Diagonal Stripe BG ---- */
.stripe-bg {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0, 255, 135, 0.03) 10px,
    rgba(0, 255, 135, 0.03) 20px
  );
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
  background: rgba(11, 11, 15, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(11, 11, 15, 0.95);
  border-bottom: 2px solid var(--electric);
  box-shadow: 0 0 30px var(--electric-glow);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white-hot);
  text-transform: uppercase;
}
.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--electric);
  color: var(--midnight);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-display);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.6);
  transition: color 0.3s;
  position: relative;
}
.nav__links a:hover { color: var(--electric); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric);
  transition: width 0.3s;
}
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__search-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 36px;
  transition: max-width 0.4s var(--ease-out-expo);
}
.nav__search-form.open {
  max-width: 260px;
}
.nav__search-input {
  width: 200px;
  padding: 8px 14px;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  border-right: none;
  color: var(--white-hot);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  border-radius: 0;
}
.nav__search-input:focus {
  border-color: var(--electric);
}
.nav__search-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  color: var(--white-hot);
  font-size: 1rem;
  transition: all 0.3s;
}
.nav__search-btn:hover {
  background: var(--electric);
  color: var(--midnight);
  border-color: var(--electric);
}

.nav__cart-link {
  position: relative;
  font-size: 1.2rem;
  color: var(--white-hot);
  transition: color 0.3s;
}
.nav__cart-link:hover { color: var(--electric); }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--electric);
  color: var(--midnight);
  border-radius: 0;
  clip-path: polygon(3px 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
  padding: 0 5px;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--electric);
  color: var(--midnight);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.3s;
}
.nav__cta:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--electric-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--electric);
}

/* Mobile Nav */
@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(11, 11, 15, 0.97);
    border-bottom: 2px solid var(--electric);
    padding: 24px;
    gap: 20px;
  }
  .nav__links--open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}

.btn--primary {
  background: var(--electric);
  color: var(--midnight);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn--primary:hover {
  background: #fff;
  box-shadow: 0 0 30px var(--electric-glow);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--electric);
  border: 2px solid var(--electric);
  clip-path: none;
}
.btn--ghost:hover {
  background: var(--electric-subtle);
  box-shadow: 0 0 20px var(--electric-glow);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn--full { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 200px) clamp(24px, 6vw, 100px) clamp(80px, 10vh, 160px);
  background: var(--midnight);
  overflow: hidden;
}

/* Diagonal stripe overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0, 255, 135, 0.015) 40px,
    rgba(0, 255, 135, 0.015) 80px
  );
  pointer-events: none;
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,135,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,135,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__badge {
  display: inline-block;
  padding: 8px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--electric);
  border: 1px solid var(--electric);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  color: var(--white-hot);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.hero__title em {
  font-style: normal;
  color: var(--electric);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--electric);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 10px var(--electric), 0 0 30px var(--electric-glow);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 20px var(--electric), 0 0 60px var(--electric-glow);
    opacity: 0.8;
  }
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(240, 240, 240, 0.6);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero__scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--electric);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--electric), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Bottom diagonal cut */
.hero__cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--midnight);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--electric);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white-hot);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(240, 240, 240, 0.5);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ============================================
   CATEGORIES - Horizontal Scroll Strip
   ============================================ */
.categories {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

/* Top diagonal accent */
.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
}

.categories__header {
  padding: 0 clamp(24px, 6vw, 80px);
  margin-bottom: 40px;
}

.cat-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 clamp(24px, 6vw, 80px) 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  overflow: hidden;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  transition: all 0.4s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.cat-card:hover {
  border-color: var(--electric);
  box-shadow: 0 0 30px var(--electric-glow);
  transform: translateY(-4px);
}

/* Diagonal overlay */
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 255, 135, 0.06));
  pointer-events: none;
  transition: opacity 0.4s;
}
.cat-card:hover::before { opacity: 1.5; }

.cat-card__bg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: 0.12;
  transition: all 0.4s;
}
.cat-card:hover .cat-card__bg {
  opacity: 0.25;
  transform: translateY(-50%) scale(1.15);
}

.cat-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white-hot);
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}

.cat-card__count {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240,240,240,0.4);
  position: relative;
  z-index: 1;
}

.cat-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1rem;
  color: var(--electric);
  opacity: 0;
  transition: all 0.3s;
  transform: translate(-4px, 4px);
}
.cat-card:hover .cat-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

/* ============================================
   PRODUCT CARD - Ticket Stub Style
   ============================================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

/* Perforated left edge (ticket stub) */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle 4px at 0 50%, var(--midnight) 98%, transparent) 0 -8px / 12px 16px repeat-y;
}

.product-card:hover {
  border-color: var(--electric);
  box-shadow: 0 0 25px var(--electric-glow);
  transform: translateY(-4px);
}

.product-card--oos { opacity: 0.6; }

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__image-placeholder {
  font-size: 4rem;
  opacity: 0.15;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--electric);
  color: var(--midnight);
}
.product-card__tag--preorder { background: var(--blue-ice); color: #fff; }
.product-card__tag--rare { background: var(--red-hot); color: #fff; }

.product-card__oos-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 15, 0.7);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--red-hot);
  letter-spacing: 0.2em;
}

.product-card__body {
  padding: 20px 20px 20px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__sport {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--white-hot);
  text-transform: uppercase;
  flex: 1;
  margin-bottom: 16px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--steel);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--electric);
}

.product-card__cart {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric);
  color: var(--midnight);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.product-card__cart:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--electric-glow);
}

/* ============================================
   FEATURED SECTION
   ============================================ */
.featured {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}
.featured__header {
  max-width: 1400px;
  margin: 0 auto 48px;
  padding: 0 clamp(24px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.view-all {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  border-bottom: 2px solid var(--electric);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.view-all:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--electric-glow);
}

/* ============================================
   HERITAGE / STATS - Scoreboard Style
   ============================================ */
.heritage {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  position: relative;
  background: var(--charcoal);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.heritage__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.heritage__text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(240,240,240,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}
.heritage__text strong { color: var(--electric); font-weight: 600; }

.heritage__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Scoreboard LED dots effect */
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1px, rgba(0,255,135,0.08) 50%, transparent 50%);
  background-size: 6px 6px;
  pointer-events: none;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--electric);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--electric-glow);
  position: relative;
  z-index: 1;
}

.stat-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.4);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .heritage { clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%); }
  .heritage__inner { grid-template-columns: 1fr; }
}

/* ============================================
   AUTOGRAPHS / TRUST SECTION
   ============================================ */
.autographs {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
}

.autographs__seal {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--electric);
  font-size: 1.5rem;
  color: var(--electric);
  position: relative;
}
.autographs__seal::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0,255,135,0.2);
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 130px;
}
.trust-badge__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--steel);
  background: var(--steel-dark);
  font-size: 1.2rem;
  color: var(--electric);
  transition: all 0.3s;
}
.trust-badge:hover .trust-badge__icon {
  border-color: var(--electric);
  box-shadow: 0 0 20px var(--electric-glow);
}
.trust-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(240,240,240,0.5);
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
}

.locations__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.location-card {
  display: flex;
  gap: 20px;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  padding: 28px;
  transition: all 0.3s;
}
.location-card:hover {
  border-color: var(--electric);
  box-shadow: 0 0 20px var(--electric-glow);
}

.location-card__icon {
  font-size: 1.2rem;
  color: var(--electric);
  flex-shrink: 0;
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white-hot);
  margin-bottom: 6px;
}

.location-card__address {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.5);
  line-height: 1.5;
  margin-bottom: 8px;
}

.location-card__hours {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--electric);
  letter-spacing: 0.05em;
}

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

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 16px 20px;
  background: var(--steel-dark);
  border: 2px solid var(--steel);
  border-right: none;
  color: var(--white-hot);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.newsletter__input:focus {
  border-color: var(--electric);
}
.newsletter__input::placeholder { color: rgba(240,240,240,0.3); }

.newsletter__btn {
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--electric);
  color: var(--midnight);
  border: 2px solid var(--electric);
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter__btn:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--electric-glow);
}

/* ============================================
   FOOTER - Industrial
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 3px solid var(--electric);
  padding: 60px clamp(24px, 6vw, 80px) 0;
  position: relative;
}

.footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--steel);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white-hot);
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--steel);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(240,240,240,0.4);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--electric);
  color: var(--electric);
  box-shadow: 0 0 15px var(--electric-glow);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--electric);
  display: inline-block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.4);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--electric); }

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(240,240,240,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.75rem;
  color: rgba(240,240,240,0.3);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--electric); }

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 120px clamp(24px, 6vw, 80px) 40px;
  background: var(--charcoal);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--electric);
}

.page-header__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-header__breadcrumb {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-header__breadcrumb a { color: rgba(240,240,240,0.35); transition: color 0.3s; }
.page-header__breadcrumb a:hover { color: var(--electric); }
.page-header__breadcrumb .sep { color: var(--steel); }

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--white-hot);
  line-height: 1;
}

/* ============================================
   TOOLBAR
   ============================================ */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 0 clamp(24px, 6vw, 80px);
}

.toolbar__count {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(240,240,240,0.4);
}

.filter-select {
  padding: 10px 36px 10px 16px;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  color: var(--white-hot);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2300ff87' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.filter-select:focus { border-color: var(--electric); }

/* ============================================
   LOADING & EMPTY STATES
   ============================================ */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  grid-column: 1 / -1;
}

.loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--steel);
  border-top-color: var(--electric);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}
.empty-state__icon {
  font-size: 3.5rem;
  opacity: 0.2;
  margin-bottom: 20px;
}
.empty-state__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: rgba(240,240,240,0.4);
  margin-bottom: 20px;
}

/* ============================================
   CART NOTIFICATION
   ============================================ */
.cart-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 28px;
  background: var(--electric);
  color: var(--midnight);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.cart-notification.visible {
  transform: translateY(0);
  opacity: 1;
}
.cart-notification span {
  font-weight: 400;
  opacity: 0.7;
  margin-right: 4px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SUBCATEGORY FILTERS
   ============================================ */
.subcat-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 0 clamp(24px, 6vw, 80px);
}

.subcat-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  background: var(--steel-dark);
  border: 1px solid var(--steel);
  color: rgba(240,240,240,0.5);
  transition: all 0.3s;
}
.subcat-btn:hover {
  border-color: var(--electric);
  color: var(--white-hot);
}
.subcat-btn--active {
  background: var(--electric);
  color: var(--midnight);
  border-color: var(--electric);
}
.subcat-btn--active:hover {
  background: #fff;
  border-color: #fff;
  color: var(--midnight);
}

/* ============================================
   SEARCH TERM HIGHLIGHT
   ============================================ */
.search-term {
  color: var(--electric);
  font-style: italic;
}

/* ============================================
   BROWSE SECTION
   ============================================ */
.browse-section {
  padding: clamp(40px, 6vw, 60px) 0 clamp(60px, 10vw, 120px);
}
