/* ============================================================
   SPORTS REPACK — MOBILE INNER PAGES
   Slim hero + chip group + slim footer for non-home / non-shop pages
   ============================================================ */

.srmi-hero,
.srmi-chips,
.srmi-footer { display: none; }

@media (max-width: 768px) {

html.srmi-active .srmi-hero,
html.srmi-active .srmi-chips,
html.srmi-active .srmi-footer {
  display: block;
}

/* Force mobile-inner sections to always render (override content-visibility:auto from mobile.css) */
html.srmi-active .srmi-hero,
html.srmi-active .srmi-chips,
html.srmi-active .srmi-footer,
html.srmi-active section {
  content-visibility: visible !important;
  contain-intrinsic-size: none !important;
  contain: none !important;
}

/* Hide the original desktop footer when our slim mobile footer is in play */
html.srmi-active footer,
html.srmi-active .footer { display: none !important; }

/* ────────────────────────────────────────────────────────
   MOBILE HERO (inner page version)
   ──────────────────────────────────────────────────────── */
.srmi-hero {
  padding: 28px 20px 8px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(168,85,247,0.18), transparent 60%),
    linear-gradient(180deg, rgba(5,3,21,0) 0%, rgba(5,3,21,0.4) 100%);
  position: relative;
  z-index: 5;
}
.srmi-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.srmi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff3b6b;
  box-shadow: 0 0 12px #ff3b6b;
  animation: srmi-pulse 1.8s ease-in-out infinite;
}
@keyframes srmi-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.srmi-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 14vw, 80px);
  letter-spacing: 0.02em;
  line-height: 0.96;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #00c8ff 80%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(168, 85, 247, 0.25);
}
.srmi-hero-sub {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 320px;
}

/* ────────────────────────────────────────────────────────
   CHIPS — Quick links between pages
   ──────────────────────────────────────────────────────── */
.srmi-chips {
  padding: 32px 20px;
  background: linear-gradient(180deg, transparent, rgba(168,85,247,0.04));
  border-top: 1px solid rgba(255,255,255,0.06);
}
.srmi-chips-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
  text-align: center;
  text-transform: uppercase;
}
.srmi-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.srmi-chip {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1), border-color 200ms ease, background 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.srmi-chip:active {
  transform: scale(0.94);
  border-color: rgba(255,215,0,0.5);
  background: rgba(255,215,0,0.06);
  color: #ffd700;
}

/* ────────────────────────────────────────────────────────
   SLIM FOOTER
   ──────────────────────────────────────────────────────── */
.srmi-footer {
  padding: 20px 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.srmi-fs-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.srmi-fs-row a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.srmi-fs-mark {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

} /* end @media max-width: 768px */
