/* ============================================================
   ADISIF Athletics & Co â€” Master Stylesheet v3.0
   Written clean from scratch. No duplicates.
   ============================================================ */

/* â”€â”€ 1. GOOGLE FONTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* â”€â”€ 2. CSS VARIABLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Core colors */
  --black: #0D0D0D;
  --white: #FFFFFF;
  --neon: #AAFF00;
  --neon-dark: #88CC00;
  --electric: #00C6FF;
  --grey-light: #F4F6F8;
  --grey-mid: #D4D8DD;
  --grey-dark: #6C7280;
  --danger: #EF4444;
  --success: #22C55E;
  --warning: #F59E0B;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .18);
  --shadow-xl: 0 24px 72px rgba(0, 0, 0, .28);

  /* Radii */
  --radius: 10px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --t: .28s cubic-bezier(.4, 0, .2, 1);
  --t-fast: .14s ease;

  /* Layout */
  --navbar-h: 72px;
  --container: 1280px;
}

/* â”€â”€ 3. RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* â”€â”€ 4. LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* â”€â”€ 5. TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

/* â”€â”€ 6. BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: .48rem 1rem;
  font-size: .75rem;
}

.btn-lg {
  padding: .9rem 2.2rem;
  font-size: .88rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-neon {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
}

.btn-neon:hover {
  background: var(--neon-dark);
  border-color: var(--neon-dark);
  box-shadow: 0 8px 24px rgba(170, 255, 0, .35);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: #222;
  border-color: #222;
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  color: var(--white);
}

.btn-glass {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-danger:hover {
  background: #dc2626;
}

/* Ripple */
.btn-ripple::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  transition: transform .5s ease;
}

.btn-ripple:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

/* â”€â”€ 7. BADGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .25rem .6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.badge-neon {
  background: var(--neon);
  color: var(--black);
}

.badge-black {
  background: var(--black);
  color: var(--white);
}

.badge-danger {
  background: var(--danger);
  color: #fff;
}

.badge-success {
  background: var(--success);
  color: #fff;
}

.badge-warning {
  background: var(--warning);
  color: #fff;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   8. NAVBAR
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, .6);
  border-bottom-color: rgba(170, 255, 0, .12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 100%;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--neon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: #0D0D0D;
  letter-spacing: -.06em;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.navbar-brand:hover .brand-icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 4px 18px rgba(170, 255, 0, .45);
}

.brand-texts {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -.03em;
  text-transform: uppercase;
  transition: color .18s ease;
}

.brand-name em {
  font-style: normal;
  color: var(--neon);
}

.navbar-brand:hover .brand-name {
  color: var(--neon);
}

.brand-tagline {
  font-size: .52rem;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.navbar-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .5rem .8rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.navbar-nav a:hover {
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .06);
}

.navbar-nav a.active {
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .07);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: width .18s ease;
}

.navbar-nav a:hover::after {
  width: 45%;
}

.navbar-nav a.active::after {
  width: 55%;
}

/* Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

/* Search bar */
.navbar-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.navbar-search:focus-within {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(170, 255, 0, .5);
  box-shadow: 0 0 0 3px rgba(170, 255, 0, .1);
}

.navbar-search input {
  background: none;
  border: none;
  outline: none;
  padding: .42rem .9rem;
  color: #fff;
  font-size: .8rem;
  width: 155px;
}

.navbar-search input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.navbar-search button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .4);
  padding: .42rem .72rem;
  font-size: .82rem;
  cursor: pointer;
  transition: color .18s ease;
}

.navbar-search button:hover {
  color: var(--neon);
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: .38rem;
  background: rgba(170, 255, 0, .09);
  border: 1px solid rgba(170, 255, 0, .22);
  border-radius: 50px;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .74rem;
  padding: .46rem .95rem;
  transition: all .18s ease;
}

.cart-btn:hover {
  background: rgba(170, 255, 0, .16);
  border-color: rgba(170, 255, 0, .5);
  color: #fff;
  box-shadow: 0 0 18px rgba(170, 255, 0, .18);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--neon);
  color: #0D0D0D;
  font-size: .58rem;
  font-weight: 900;
  min-width: 17px;
  height: 17px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 2px solid #111;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
  transition: all .22s ease;
}

.hamburger.active {
  background: rgba(170, 255, 0, .09);
  border-color: rgba(170, 255, 0, .3);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--neon);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--neon);
}

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.mobile-menu.open {
  display: flex;
  animation: mmFadeIn .22s ease;
}

@keyframes mmFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mobile-menu a {
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
  padding: .55rem 2rem;
  border-radius: 10px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.mobile-menu a:hover {
  color: var(--neon);
  background: rgba(170, 255, 0, .07);
  transform: translateX(6px);
}

.close-menu {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .18s ease;
}

.close-menu:hover {
  background: rgba(170, 255, 0, .1);
  border-color: var(--neon);
  color: var(--neon);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   9. HERO SLIDER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  height: 88vh;
  min-height: 540px;
  max-height: 900px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .85s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 9s linear;
  will-change: transform;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.05);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 8, .88) 0%, rgba(8, 8, 8, .55) 48%, rgba(8, 8, 8, .1) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 0 2rem;
  animation: heroSlideIn .75s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--neon);
  color: #0D0D0D;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .36rem 1.05rem;
  border-radius: 99px;
  margin-bottom: 1.3rem;
  box-shadow: 0 4px 20px rgba(170, 255, 0, .38);
}

.hero-slide-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -.04em;
  margin-bottom: 1.1rem;
}

.hero-slide-content h1 .accent {
  color: var(--neon);
  display: block;
}

.hero-slide-content p {
  color: rgba(255, 255, 255, .7);
  font-size: .98rem;
  margin-bottom: 1.9rem;
  max-width: 440px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: .35;
}

.hero-scroll-hint span {
  font-family: var(--font-heading);
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1.5px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .7), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 1.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.slider-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid rgba(255, 255, 255, .18);
}

.slider-dot.active {
  background: var(--neon);
  width: 24px;
  border-radius: 4px;
  border-color: transparent;
  box-shadow: 0 0 8px rgba(170, 255, 0, .55);
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s ease;
}

.slider-arrow:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(170, 255, 0, .07);
  box-shadow: 0 0 14px rgba(170, 255, 0, .22);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   10. TRUST BAR
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar {
  background: #111;
  border-top: 1px solid rgba(170, 255, 0, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: .95rem 0;
}

.trust-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

.trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  flex: 1;
  justify-content: center;
  padding: .35rem .5rem;
  min-width: 0;
}

.trust-icon {
  font-size: 1.2rem;
  color: var(--neon);
  flex-shrink: 0;
}

.trust-text {
  line-height: 1.3;
  min-width: 0;
}

.trust-text strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .86rem;
  white-space: nowrap;
}

.trust-text span {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   11. SECTION HEADERS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
  padding: 5rem 0;
}

.section-grey {
  background: var(--grey-light);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--grey-dark);
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  padding: .26rem .88rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: .45rem;
  line-height: 1.1;
}

.section-title span {
  color: var(--neon);
}

.section-subtitle {
  color: var(--grey-dark);
  font-size: .92rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   12. CATEGORY GRID
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 10;
  position: relative;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .25) 55%, rgba(8, 8, 8, 0) 100%);
}

.category-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: .85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cat-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(170, 255, 0, .15);
  border: 1.5px solid rgba(170, 255, 0, .38);
  color: var(--neon);
  font-size: .82rem;
  margin-bottom: .38rem;
  flex-shrink: 0;
  transition: transform var(--t);
}

.category-card:hover .cat-icon-ring {
  transform: scale(1.18) rotate(-10deg);
}

.category-card-info h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .18rem;
  line-height: 1.2;
}

.cat-link {
  color: var(--neon);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .22rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   13. PRODUCT CARDS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(170, 255, 0, .18);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.07);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, .5);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-overlay .btn {
  transform: translateY(10px);
  transition: all var(--t);
}

.product-card:hover .product-card-overlay .btn {
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  z-index: 2;
}

.product-card-body {
  padding: 1.1rem 1.1rem .6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grey-dark);
  margin-bottom: .28rem;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-name a {
  color: var(--black);
}

.product-name a:hover {
  color: var(--neon-dark);
}

.product-price {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: .65rem;
}

.product-price .current {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

.product-price .original {
  font-size: .82rem;
  color: var(--grey-dark);
  text-decoration: line-through;
}

.product-price .discount {
  background: var(--danger);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: .1rem .38rem;
  border-radius: 4px;
}

.product-card-footer {
  padding: .6rem 1.1rem 1.1rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   14. FEATURES / WHY CHOOSE US
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--grey-mid);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(170, 255, 0, .35);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin: 0 auto 1.2rem;
  transition: transform var(--t);
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(-7deg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .45rem;
  color: var(--black);
}

.feature-card p {
  color: var(--grey-dark);
  font-size: .86rem;
  line-height: 1.75;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   15. PROMO BANNERS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Full-width banner */
.promo-banner-full {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.promo-banner-full:hover .promo-banner-bg {
  transform: scale(1.035);
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, .9) 25%, rgba(8, 8, 8, .55) 65%, rgba(8, 8, 8, .08) 100%);
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  padding: 1.4rem;
}

.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  background: rgba(170, 255, 0, .11);
  border: 1px solid rgba(170, 255, 0, .28);
  color: var(--neon);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .26rem .8rem;
  border-radius: 99px;
  margin-bottom: .8rem;
  width: fit-content;
}

.promo-banner-content h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: .6rem;
  line-height: 1.05;
}

.promo-banner-content h2 span {
  color: var(--neon);
}

.promo-banner-content p {
  color: rgba(255, 255, 255, .68);
  font-size: .87rem;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

/* Split promo */
.promo-split-section {
  background: var(--grey-light);
}

.promo-split-banner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1520 100%);
  box-shadow: var(--shadow-xl);
  min-height: 360px;
}

.promo-split-img {
  position: relative;
  overflow: hidden;
  order: 2;
}

.promo-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.promo-split-banner:hover .promo-split-img img {
  transform: scale(1.04);
}

.promo-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, .45) 0%, transparent 60%);
}

.promo-split-content {
  padding: 2.8rem 2.4rem;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-split-content h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  margin: .85rem 0;
  line-height: 1.22;
}

.promo-split-content h2 strong {
  color: var(--neon);
}

.promo-split-content p {
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.promo-checklist {
  list-style: none;
  margin-bottom: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .48rem;
}

.promo-checklist li {
  display: flex;
  align-items: center;
  gap: .52rem;
  color: rgba(255, 255, 255, .7);
  font-size: .84rem;
  font-weight: 500;
}

.promo-checklist li i {
  color: var(--neon);
  font-size: .84rem;
  flex-shrink: 0;
}

.promo-split-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Action strip */
.promo-action-strip {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.promo-action-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.promo-action-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, .94) 0%, rgba(8, 8, 8, .82) 100%);
}

.promo-action-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-action-text {
  max-width: 520px;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  background: rgba(170, 255, 0, .1);
  border: 1px solid rgba(170, 255, 0, .22);
  color: var(--neon);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .24rem .78rem;
  border-radius: 99px;
  margin-bottom: .8rem;
}

.promo-action-text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: .6rem;
  line-height: 1.1;
}

.promo-action-text p {
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
  line-height: 1.72;
}

.promo-action-buttons {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   16. SPORTS TICKER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sports-strip {
  background: var(--neon);
  overflow: hidden;
  white-space: nowrap;
  padding: .78rem 0;
}

.sports-strip-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.sports-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #0D0D0D;
  padding: 0 1.8rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.33%);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   17. TESTIMONIALS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(170, 255, 0, .3);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: .2rem;
  font-size: .82rem;
}

.testimonial-text {
  color: var(--grey-dark);
  font-size: .9rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .85rem;
  border-top: 1px solid var(--grey-light);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: .88rem;
  font-family: var(--font-heading);
}

.testimonial-author-loc {
  font-size: .75rem;
  color: var(--grey-dark);
  margin-top: 1px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   18. GUARANTEE STRIP
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.guarantee-strip {
  background: var(--grey-light);
  border-top: 1px solid var(--grey-mid);
  padding: 1.8rem 0;
}

.guarantee-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .48rem;
  text-align: center;
  min-width: 100px;
  flex: 1;
  padding: .4rem;
}

.guarantee-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform var(--t), box-shadow var(--t);
}

.guarantee-item:hover .guarantee-icon {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14), 0 0 12px rgba(170, 255, 0, .18);
}

.guarantee-item>span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .7rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   19. FORMS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .45rem;
  color: var(--black);
}

.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-control:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(13, 13, 13, .08);
}

.form-control.error {
  border-color: var(--danger);
}

.form-error {
  font-size: .78rem;
  color: var(--danger);
  margin-top: .3rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/xml' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236C7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ──────────────────────────────────────────────────────────
   21. CONTACT PAGE
────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grey-light);
  transition: all .2s ease;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--black);
  color: var(--neon);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
  transition: all .3s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: rotate(8deg) scale(1.1);
  background: var(--neon);
  color: var(--black);
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: .25rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: .95rem;
  color: var(--grey-dark);
  line-height: 1.6;
  text-decoration: none;
  display: block;
}

.contact-info-text a:hover {
  color: var(--black);
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────────
   24. CMS PAGES
────────────────────────────────────────────────────────── */

/* Cinematic Hero */
.page-hero.cinematic {
  background: var(--black);
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(170, 255, 0, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .6;
}

/* CMS Layout System */
.cms-layout {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.cms-layout.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 1200px;
}

.cms-content-card {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--grey-mid);
  box-shadow: var(--shadow-sm);
}

.cms-main-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.cms-main-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin: 2rem 0 .85rem;
}

.cms-main-content p {
  color: var(--grey-dark);
  line-height: 1.95;
  margin-bottom: 1.4rem;
  font-size: 1rem;
}

/* Sidebar */
.cms-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--grey-mid);
  box-shadow: var(--shadow-sm);
}

.sidebar-box.neon-box {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.sidebar-box.neon-box h4 {
  color: var(--neon);
}

.sidebar-box.neon-box p {
  color: rgba(255, 255, 255, .6);
}

.sidebar-box h4 {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.sidebar-box h4 i {
  color: var(--neon);
  font-size: 1.1rem;
}

.sidebar-box p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--grey-dark);
  margin-bottom: 0;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  font-size: .88rem;
  font-weight: 600;
  padding: .6rem 0;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--black);
}

.sidebar-list li::before {
  content: '→';
  color: var(--neon);
  font-weight: 900;
}

.sidebar-list li:last-child {
  border-bottom: none;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   20. CART & CHECKOUT
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
  vertical-align: middle;
}

.cart-table th {
  font-family: var(--font-heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-dark);
  font-weight: 700;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  object-fit: cover;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--grey-light);
  font-size: .9rem;
  color: var(--black);
  transition: background var(--t-fast);
}

.qty-control button:hover {
  background: var(--grey-mid);
}

.qty-control input {
  width: 44px;
  height: 34px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  outline: none;
}

.order-summary {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--navbar-h) + 1.5rem);
}

.order-summary h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--grey-mid);
}

.summary-row:last-child {
  border: none;
  font-weight: 800;
  font-size: 1rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   21. SIZE BUTTONS (Quick-Add)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.size-options {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.size-btn {
  min-width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: all var(--t-fast);
  padding: 0 .75rem;
}

.size-btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.size-btn.active {
  border-color: var(--neon);
  background: var(--neon);
  color: var(--black);
}

.size-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: .65rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   22. PRODUCT DETAIL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--neon);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   23. PRODUCT LISTING (Shop page)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.listing-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: calc(var(--navbar-h) + 1.5rem);
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  color: var(--black);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem 0;
  cursor: pointer;
  font-size: .88rem;
}

.filter-option input[type="checkbox"] {
  accent-color: var(--neon);
  width: 16px;
  height: 16px;
}

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grey-light);
  flex-wrap: wrap;
}

.results-count {
  color: var(--grey-dark);
  font-size: .88rem;
}

.sort-select {
  padding: .45rem .85rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: .85rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

.sort-select:focus {
  border-color: var(--black);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   24. PAGE HERO
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #111 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(170, 255, 0, .08) 0%, transparent 65%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -.03em;
  position: relative;
}

.page-hero h1 span {
  color: var(--neon);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  position: relative;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--t-fast);
}

.page-hero .breadcrumb a:hover {
  color: var(--neon);
}

.cms-page {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cms-page h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  margin: 2.5rem 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--grey-light);
}

.cms-page h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin: 1.8rem 0 .75rem;
}

.cms-page p {
  color: var(--grey-dark);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: .98rem;
}

.cms-page ul,
.cms-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.cms-page li {
  color: var(--grey-dark);
  margin-bottom: .65rem;
  line-height: 1.8;
  font-size: .98rem;
}

.cms-page a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--neon);
  transition: all .2s ease;
}

.cms-page a:hover {
  background: var(--neon);
  color: var(--black);
}

/* ────────────────────────────────────────────────────────────────────────────────────────────────────
   25. FOOTER
──────────────────────────────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, .55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .65rem;
}

.footer-brand .brand-name span {
  color: var(--neon);
}

.footer-brand p {
  font-size: .86rem;
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .72rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: .86rem;
  padding: .25rem 0;
  color: rgba(255, 255, 255, .5);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-col a:hover {
  color: var(--neon);
  padding-left: 4px;
}

/* Contact info in footer */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.25rem 0 1.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--t-fast);
}

.contact-info a i {
  color: var(--neon);
  font-size: .95rem;
  width: 1.2rem;
  text-align: center;
}

.contact-info a:hover {
  color: var(--neon);
}

/* Social links */
.social-links {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all var(--t-fast);
}

.social-link:hover {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(170, 255, 0, .25);
}

/* Newsletter Section */
.newsletter-section {
  background: rgba(255, 255, 255, .02);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 3rem 0;
}

.newsletter-section h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  margin-bottom: .4rem;
}

.newsletter-section p {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 420px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input:focus {
  border-color: var(--neon);
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  transition: all var(--t-fast);
}

.footer-social-btn:hover {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a:hover {
  color: var(--neon);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   26. ADMIN / TABLES (used in admin CSS too)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
  vertical-align: middle;
}

.table th {
  font-family: var(--font-heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-dark);
  font-weight: 700;
  background: var(--grey-light);
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: rgba(170, 255, 0, .03);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   27. UTILITY CLASSES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-neon {
  color: var(--neon) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-muted {
  color: var(--grey-dark) !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-1 {
  gap: .5rem;
}

.gap-2 {
  gap: 1rem;
}

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: .5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.p-1 {
  padding: .5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   28. SPECIAL COMPONENTS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Toast notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.toast {
  background: var(--black);
  color: var(--white);
  border-left: 4px solid var(--neon);
  padding: .85rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  font-weight: 600;
  max-width: 300px;
  animation: toastIn .35s ease both;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.success {
  border-left-color: var(--success);
}

.toast.hiding {
  opacity: 0;
  transform: translateX(20px);
  transition: all .25s ease;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* â”€â”€ Page Loader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HTML uses: .loading-overlay > .loader + .loading-brand
   JS hides with: loader.classList.add('hide')
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 99999;
  transition: opacity .5s ease, visibility .5s ease;
  visibility: visible;
}

.loading-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(170, 255, 0, .18);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-brand {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.loading-brand span {
  color: var(--neon);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
  color: #fff;
}

/* Floating WhatsApp (Unified Class) */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
  z-index: 999;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
  color: #fff;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Popover animations */
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-icon {
  font-size: 3.5rem;
  opacity: .28;
  margin-bottom: .85rem;
}

.empty-state h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .45rem;
  font-family: var(--font-heading);
}

.empty-state p {
  color: var(--grey-dark);
  margin-bottom: 1.4rem;
  font-size: .92rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, #111827 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(170, 255, 0, .12) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: .45rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--neon);
  display: block;
  line-height: 1;
  margin-bottom: .38rem;
}

.stat-label {
  font-size: .76rem;
  color: rgba(255, 255, 255, .48);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

/* CMS Pages */
.cms-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 4rem 0;
}

.cms-page h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 2.4rem 0 .7rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-light);
}

.cms-page h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.2rem 0 .38rem;
}

.cms-page p {
  color: #444;
  line-height: 1.9;
  margin-bottom: .9rem;
  font-size: .92rem;
}

.cms-page ul,
.cms-page ol {
  padding-left: 1.65rem;
  margin-bottom: 1.1rem;
}

.cms-page li {
  color: #444;
  margin-bottom: .45rem;
  line-height: 1.8;
  font-size: .92rem;
}

.cms-page a {
  color: var(--black);
  text-decoration: underline;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€

/* ──────────────────────────────────────────────────────────
   SHOP / PRODUCT LISTING PAGE
────────────────────────────────────────────────────────── */

/* Two-column layout: sidebar + grid */
.listing-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Filters panel (sidebar) */
.filters-panel {
  position: sticky;
  top: calc(var(--navbar-h) + 1.25rem);
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.filter-section {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--grey-light);
}

.filter-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--black);
  margin-bottom: .85rem;
}

/* Category radio labels */
.filter-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .38rem 0;
  cursor: pointer;
  font-size: .88rem;
  color: var(--grey-dark);
  transition: color .15s ease;
  width: 100%;
}

.filter-check:hover {
  color: var(--black);
}

.filter-check input[type="radio"] {
  accent-color: var(--black);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

.filter-check input[type="radio"]:checked+* {
  color: var(--black);
  font-weight: 600;
}

/* Price inputs */
.price-inputs {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.price-inputs input[type="number"] {
  flex: 1;
  min-width: 0;
  padding: .48rem .65rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: .82rem;
  font-family: var(--font-body);
  color: var(--black);
  outline: none;
  background: var(--white);
  transition: border-color .15s ease;
  width: 100%;
}

.price-inputs input[type="number"]:focus {
  border-color: var(--black);
}

.price-inputs span {
  color: var(--grey-dark);
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}

/* Size filter buttons */
.size-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.size-filter-btn {
  min-width: 38px;
  height: 36px;
  padding: 0 .6rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .72rem;
  color: var(--grey-dark);
  cursor: pointer;
  transition: all .15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--grey-light);
}

.size-filter-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* Listing header (count + sort) */
.listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1.5px solid var(--grey-light);
}

.listing-count {
  font-size: .9rem;
  color: var(--grey-dark);
}

.listing-count strong {
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
}

.sort-select {
  padding: .48rem .9rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: .84rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color .15s ease;
}

.sort-select:focus {
  border-color: var(--black);
}

/* Pagination */
.pagination {
  margin-top: 2.5rem;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .75rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  color: var(--grey-dark);
  background: var(--white);
  transition: all .15s ease;
  text-decoration: none;
}

.page-item .page-link:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--grey-light);
}

.page-item.active .page-link {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ──────────────────────────────────────────────────────────
   29. RESPONSIVE
────────────────────────────────────────────────────────── */

/* Tablet — hide desktop nav, show hamburger */
@media(max-width: 1024px) {
  .navbar-nav {
    display: none;
  }

  .navbar-search {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-split-banner {
    grid-template-columns: 1fr;
  }

  .promo-split-img {
    order: 1;
    height: 220px;
  }

  .promo-split-content {
    order: 2;
    padding: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Large tablet */
@media(max-width: 900px) {
  .trust-grid {
    flex-wrap: wrap;
    gap: .5rem;
  }

  .trust-item {
    min-width: calc(50% - 1rem);
    flex: none;
  }

  .trust-divider {
    display: none;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile landscape */
@media(max-width: 768px) {
  .promo-action-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-action-strip {
    padding: 3rem 0;
  }

  .promo-action-buttons {
    width: 100%;
  }

  .promo-action-buttons .btn {
    flex: 1;
    justify-content: center;
  }
}

/* Mobile */
@media(max-width: 640px) {
  .hero-slider {
    height: 72vh;
    min-height: 480px;
  }

  .hero-slide-content h1 {
    font-size: 2.1rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.25rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .promo-banner-full {
    height: 240px;
  }

  .guarantee-item {
    min-width: calc(50% - 1rem);
  }

  .trust-item {
    min-width: 100%;
  }

  .trust-divider {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
  }

  .cart-table tr {
    border-bottom: 1px solid var(--grey-light);
    display: block;
    padding: .65rem 0;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: .76rem;
    text-transform: uppercase;
  }

  .cms-page {
    padding: 1.5rem;
  }
}

/* Small mobile */
@media(max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* CMS Responsive */
.cms-layout.about-layout {
  grid-template-columns: 1fr;
}

.cms-sidebar {
  order: 2;
}

.cms-main-content {
  order: 1;
}

.cms-content-card {
  padding: 2rem;
}

.page-hero.cinematic {
  padding: 4.5rem 0 3.5rem;
}

/* ==========================================================
   CHECKOUT PAGE — Full Styles
   ========================================================== */

/* Two-column grid: delivery form left, order summary right */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* Checkout card panels */
.checkout-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 20px;
  padding: 2rem 2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-card h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  color: var(--black);
}

/* Form rows & groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.payment-option input[type="radio"] {
  margin-top: .2rem;
  accent-color: var(--black);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.payment-option.selected {
  border-color: var(--black);
  background: #fafafa;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.payment-option-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .88rem;
  color: var(--black);
  margin-bottom: .2rem;
}

.payment-option-desc {
  font-size: .78rem;
  color: var(--grey-dark);
  line-height: 1.5;
}

/* Order summary sticky card on the right */
.cart-summary-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 20px;
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--navbar-h) + 1rem);
}

.cart-summary-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #f0f0f0;
}

/* Order review item row */
.order-review-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid #f4f4f4;
}

.order-review-item:last-of-type {
  border-bottom: none;
}

/* KEY FIX — constrain thumbnail to 64×64, never full-width */
.order-review-img {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid #eee;
  background: #f9f9f9;
  flex-shrink: 0;
  display: block;
}

.order-review-name {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: .2rem;
}

.order-review-meta {
  font-size: .75rem;
  color: var(--grey-dark);
}

.order-review-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9rem;
  color: var(--black);
  margin-left: auto;
  flex-shrink: 0;
}

/* Summary rows */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  font-size: .88rem;
  color: var(--grey-dark);
  border-bottom: 1px dashed #f0f0f0;
}

.summary-row.total {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--black);
  border-bottom: none;
  border-top: 2px solid #000;
  padding-top: .75rem;
  margin-top: .25rem;
}

/* ==========================================================
   RELATED PRODUCTS / COMPLETE THE LOOK
   ========================================================== */

.related-section {
  padding: 6rem 0 3rem;
  border-top: 1px solid #eee;
  margin-top: 4rem;
}

.related-title {
  font-family: var(--font-heading);
  font-weight: 950;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.related-title span { color: var(--neon-dark); }

/* 4-column grid for mini product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* Mini card — used in related / complete the look sections */
.product-mini-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.175,.885,.32,1.275);
  border: 1.5px solid #eee;
}

.product-mini-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border-color: #000;
}

/* The image wrapper — fixed square, no overflow */
.mini-card-img {
  display: block;
  aspect-ratio: 1 / 1;
  background: #fdfdfd;
  overflow: hidden;
  position: relative;
}

/* KEY FIX — image fills the box, no giant bleed */
.mini-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-mini-card:hover .mini-card-img img {
  transform: scale(1.08);
}

.mini-card-info {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
}

.mini-card-info h4 {
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card-info h4 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.mini-card-info h4 a:hover { color: var(--neon-dark); }

.mini-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #000;
}

/* ==========================================================
   TRENDING MARQUEE STRIP
   ========================================================== */

.trending-strip {
  background: var(--black);
  border-bottom: 1.5px solid rgba(170,255,0,.15);
  padding: .7rem 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  padding-left: 2rem;
  animation: scroll-marquee 40s linear infinite;
  min-width: 100%;
}

.marquee-content:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s ease;
}

.marquee-item:hover { color: var(--neon); }
.marquee-item i { color: var(--neon); font-size: .75rem; }
.marquee-item::after { content: '•'; margin-left: 2rem; color: rgba(255,255,255,.1); }

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   FONT AWESOME RESET
   ========================================================== */

.fas, .fab, .far, .fa-solid, .fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   CATEGORY GRID & CARDS
   ========================================================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(8,8,8,.9) 0%,
    rgba(8,8,8,.25) 55%,
    rgba(8,8,8,0) 100%
  );
}

.category-card-info {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Icon ring — neon tinted circle sitting above the dark overlay */
.cat-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(170,255,0,.18);
  border: 1.5px solid rgba(170,255,0,.45);
  color: var(--neon);
  font-size: .85rem;
  margin-bottom: .5rem;
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}

.category-card:hover .cat-icon-ring {
  transform: scale(1.18) rotate(-10deg);
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}

.category-card-info h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .18rem;
  line-height: 1.2;
}

.cat-link {
  color: var(--neon);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .3rem;
  transition: gap var(--t);
}

.category-card:hover .cat-link {
  gap: .55rem;
}

/* ==========================================================
   FOOTER COMPONENT (restored)
   ========================================================== */

.footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .65rem;
}

.footer-brand .brand-name span { color: var(--neon); }
.footer-brand p { font-size: .86rem; line-height: 1.8; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .72rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .65rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-col a:hover { color: var(--neon); padding-left: 4px; }

/* ==========================================================
   PROMO SPLIT BANNER (Design a Custom Jersey section)
   ========================================================== */

.promo-split-section { padding: 5rem 0; }

.promo-split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
  min-height: 500px;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

@media (max-width: 900px) {
  .promo-split-banner { grid-template-columns: 1fr; }
}

/* LEFT: the image side */
.promo-split-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.promo-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}

.promo-split-banner:hover .promo-split-img img {
  transform: scale(1.06);
}

.promo-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(8,8,8,0) 0%,
    rgba(8,8,8,.6) 100%
  );
}

@media (max-width: 900px) {
  .promo-split-img { min-height: 260px; }
  .promo-split-img-overlay {
    background: linear-gradient(0deg,
      rgba(8,8,8,.7) 0%,
      rgba(8,8,8,0) 60%
    );
  }
}

/* RIGHT: the content side */
.promo-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
}

.promo-split-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 1rem 0 1.25rem;
}

.promo-split-content h2 strong {
  color: var(--neon);
  font-weight: 950;
}

.promo-split-content p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.promo-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}

.promo-checklist li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
}

.promo-checklist li i {
  color: var(--neon);
  font-size: 1rem;
  flex-shrink: 0;
}

.promo-split-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================
   TRUST BAR
   ========================================================== */

.trust-bar {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 1.25rem 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.trust-icon {
  font-size: 1.4rem;
  color: var(--black);
}

.trust-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: .92rem;
  color: var(--black);
  line-height: 1.2;
}

.trust-text span {
  font-size: .75rem;
  color: #888;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: #e8e8e8;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-grid { gap: 1.5rem; justify-content: flex-start; }
}

/* ==========================================================
   PROMO BANNER FULL (full-width feature banner)
   ========================================================== */

.promo-banner-full {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .65s ease;
}

.promo-banner-full:hover .promo-banner-bg { transform: scale(1.04); }

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(8,8,8,.88) 0%,
    rgba(8,8,8,.3) 70%,
    rgba(8,8,8,.05) 100%
  );
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
  max-width: 600px;
}

.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--neon);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}

.promo-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 950;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.promo-banner-content h2 span { color: var(--neon); }

.promo-banner-content p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==========================================================
   PROMO ACTION STRIP (dark banner with 2-col layout)
   ========================================================== */

.promo-action-strip {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.promo-action-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.promo-action-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.85);
}

.promo-action-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem 0;
  flex-wrap: wrap;
}

.promo-action-text h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  margin: .5rem 0 .4rem;
}

.promo-action-text p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  max-width: 480px;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(170,255,0,.12);
  border: 1px solid rgba(170,255,0,.3);
  color: var(--neon);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.promo-action-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .promo-action-content { flex-direction: column; align-items: flex-start; }
  .promo-action-text h2 { font-size: 1.4rem; }
}

/* ==========================================================
   SPORTS TICKER STRIP
   ========================================================== */

.sports-strip {
  background: var(--neon);
  padding: .6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.sports-strip-inner {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker-scroll 30s linear infinite;
}

.sports-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #000;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   SECTION UTILITIES (section-grey, section-header, etc.)
   ========================================================== */

.section { padding: 5rem 0; }

.section-grey { background: #f7f7f7; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--neon-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 950;
  color: var(--black);
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}

.section-title span { color: var(--neon-dark); }

.section-subtitle {
  color: var(--grey-dark);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================
   FEATURES / WHY US GRID
   ========================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all .35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
  border-color: #ddd;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .875rem;
  color: var(--grey-dark);
  line-height: 1.75;
}

/* ==========================================================
   TESTIMONIALS GRID
   ========================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 20px;
  padding: 2rem;
  transition: all .35s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
}

.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #333;
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--black);
  color: var(--neon);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .88rem;
  color: var(--black);
}

.testimonial-author-loc {
  font-size: .75rem;
  color: #999;
  margin-top: .15rem;
}

/* ==========================================================
   FOOTER GRID (Corrected 5 Columns)
   ========================================================== */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Contact Info & Socials in Brand Col */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--t-fast);
}

.contact-info a i { color: var(--neon); font-size: .95rem; }
.contact-info a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  transition: all var(--t-fast);
  text-decoration: none;
}

.social-link:hover {
  background: var(--neon);
  color: #000;
  transform: translateY(-3px);
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .65rem; }

/* ==========================================================
   GUARANTEE STRIP
   ========================================================== */

.guarantee-strip {
  background: var(--black);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.guarantee-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .guarantee-grid { gap: 2rem; }
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  transition: transform var(--t);
}

.guarantee-item:hover { transform: translateY(-2px); }

.guarantee-item span {
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(170,255,0,0.12);
  border: 1.5px solid rgba(170,255,0,0.3);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ==========================================================
   NEWSLETTER SECTION
   ========================================================== */

.newsletter-section {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: .75rem 1.25rem;
  color: #fff;
  font-family: var(--font-body);
  transition: all var(--t-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--neon);
  background: rgba(255,255,255,0.08);
}

/* ==========================================================
   FOOTER BOTTOM
   ========================================================== */

.footer-bottom {
  background: #080808;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a {
  color: var(--neon);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
}


