:root {
  --ink: #101418;
  --muted: #65717d;
  --line: #dce3e8;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #0b6f3a;
  --green-dark: #064524;
  --orange: #f15a24;
  --gold: #f4be2c;
  --red: #d91f2f;
  --blue: #1464a5;
  --shadow: 0 22px 60px rgba(10, 20, 28, 0.16);
}

body.dark-theme {
  --ink: #f4f7f7;
  --muted: #aebbc3;
  --line: #25323a;
  --paper: #0b1013;
  --white: #121a1f;
  --green: #31c978;
  --green-dark: #0f8d51;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

section {
  scroll-margin-top: 86px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 23, 20, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 180ms ease;
}

body.dark-theme .theme-toggle-thumb {
  transform: translateX(16px);
}

body.dark-theme .score-strip {
  background: var(--line);
}

body.dark-theme .shop {
  background: #0f1518;
}

body.dark-theme .product-gallery,
body.dark-theme .gallery-frame,
body.dark-theme .gallery-thumbs button,
body.dark-theme .cart-summary,
body.dark-theme .remove-cart-item,
body.dark-theme .product-detail,
body.dark-theme .checkout-panel,
body.dark-theme .order-form {
  background: var(--white);
}

body.dark-theme .gallery-frame {
  border-color: #2d3a43;
}

body.dark-theme .product-info input,
body.dark-theme .product-info select,
body.dark-theme .order-form input,
body.dark-theme .order-form select,
body.dark-theme .order-form textarea,
body.dark-theme .single-size strong {
  background: #0b1013;
  color: var(--ink);
}

body.dark-theme .download {
  background: linear-gradient(135deg, #10181c, #121f18);
}

body.dark-theme .site-footer {
  background: #0f1518;
}

body.dark-theme .site-header,
body.dark-theme .theme-toggle,
body.dark-theme .store-link,
body.dark-theme .hero,
body.dark-theme .ghost-link,
body.dark-theme .features,
body.dark-theme .features .feature-copy h2,
body.dark-theme .features .feature-copy p,
body.dark-theme .buy-button,
body.dark-theme .cart-button,
body.dark-theme .buy-now-button {
  color: #ffffff;
}

body.dark-theme .store-link {
  border-color: rgba(255, 255, 255, 0.34);
}

body.dark-theme .main-nav a:hover {
  color: #ffffff;
}

body.dark-theme .feature-list article,
body.dark-theme .score-strip article,
body.dark-theme .fixture-card,
body.dark-theme .cart-item {
  background: var(--white);
  color: var(--ink);
}

body.dark-theme .gallery-arrow {
  color: #101418;
}

body.dark-theme .remove-cart-item {
  color: #ff6b78;
}

body.dark-theme .buy-now-button {
  background: #050505;
}

body.dark-theme .buy-now-button:hover {
  background: #000000;
}

body.dark-theme .ticker {
  color: #1e1a0c;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 40px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-label-short {
  display: none;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  max-width: 100%;
  gap: 12px;
  padding: 7px 16px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #050505;
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  background: #000000;
}

.store-link.compact {
  min-height: 44px;
  padding: 5px 11px;
  box-shadow: none;
}

.store-link.large {
  min-width: 210px;
}

.play-icon {
  position: relative;
  width: 26px;
  height: 28px;
  flex: 0 0 26px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background:
    linear-gradient(135deg, #00f0ff 0 38%, transparent 39%),
    linear-gradient(45deg, #00d46a 0 46%, transparent 47%),
    linear-gradient(315deg, #ffcf31 0 48%, transparent 49%),
    linear-gradient(225deg, #ff3d32 0 48%, transparent 49%);
}

.store-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.store-copy small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
}

.store-copy strong {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero {
  background: #071714;
  color: var(--white);
}

.slider {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  padding: clamp(52px, 7vw, 90px) clamp(18px, 5vw, 72px) 104px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 700ms ease;
}

.slide > * {
  position: relative;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.football-slide {
  background:
    linear-gradient(90deg, rgba(4, 15, 13, 0.98) 0%, rgba(4, 15, 13, 0.82) 35%, rgba(4, 15, 13, 0.18) 72%, rgba(4, 15, 13, 0.36) 100%),
    url("assets/world-cup-2026-hero-v2.png?v=20260525") center right / cover no-repeat,
    linear-gradient(135deg, #09281b 0%, #0e5a36 48%, #081817 100%);
}

.football-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 78% 42%, rgba(244, 190, 44, 0.26), transparent 28%);
}

.cricket-slide {
  background:
    linear-gradient(90deg, rgba(10, 14, 16, 0.98) 0%, rgba(10, 14, 16, 0.82) 36%, rgba(10, 14, 16, 0.16) 72%, rgba(10, 14, 16, 0.38) 100%),
    url("assets/cricket-match-center-hero.png") center right / cover no-repeat,
    linear-gradient(135deg, #111619 0%, #214b32 52%, #591a1b 100%);
}

.cricket-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 78% 42%, rgba(217, 31, 47, 0.26), transparent 28%);
}

.hero-art-space {
  min-height: min(48vw, 480px);
}

.slide-copy {
  max-width: 680px;
  padding-bottom: 0;
}

.hero-trophy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(244, 190, 44, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-trophy span {
  font-size: 1.3rem;
}

.hero-trophy strong {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slide h1,
.section-heading h2,
.feature-copy h2,
.shop-header h2,
.download h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.slide p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 18px;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-controls button {
  width: 46px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.slider-controls button.active {
  background: var(--gold);
}

.ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow: hidden;
  min-height: 48px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: var(--gold);
  color: #1e1a0c;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.world-cup-countdown {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(10, 20, 28, 0.08);
}

.world-cup-countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
  animation: countdownSweep 3.6s linear infinite;
}

.world-cup-countdown-copy,
.world-cup-countdown-grid {
  position: relative;
  z-index: 1;
}

.world-cup-mark {
  position: absolute;
  right: clamp(6px, 4vw, 30px);
  bottom: -8px;
  display: grid;
  place-items: center;
  width: clamp(86px, 14vw, 148px);
  height: clamp(112px, 18vw, 190px);
  border: 1px solid rgba(244, 190, 44, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.55), transparent 24%),
    radial-gradient(circle, rgba(244, 190, 44, 0.18), rgba(241, 90, 36, 0.08) 58%, transparent 72%);
  box-shadow: 0 24px 52px rgba(244, 190, 44, 0.16);
  animation: trophyFloat 4.8s ease-in-out infinite;
  overflow: hidden;
}

.world-cup-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(244, 190, 44, 0.38);
  border-radius: inherit;
  animation: trophyOrbit 12s linear infinite;
}

.world-cup-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.36) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: trophyShine 3.2s ease-in-out infinite;
}

.world-cup-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.12) contrast(1.06);
}

.world-cup-countdown-copy .eyebrow {
  border-color: rgba(11, 111, 58, 0.24);
  color: var(--green);
}

.world-cup-countdown-copy h2 {
  position: relative;
  max-width: 650px;
  margin: 12px 0 8px;
  background: linear-gradient(90deg, var(--ink), var(--green), var(--orange), var(--ink));
  background-size: 240% 100%;
  color: transparent;
  background-clip: text;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  animation: headlineShimmer 7s ease-in-out infinite;
}

.world-cup-countdown-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.countdown-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 12px;
  border: 1px solid rgba(11, 111, 58, 0.2);
  border-radius: 999px;
  background: rgba(11, 111, 58, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-live span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(11, 111, 58, 0.45);
  animation: liveDot 1.2s ease-out infinite;
}

.world-cup-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.world-cup-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(10, 20, 28, 0.08);
  animation: factRise 5.4s ease-in-out infinite;
}

.world-cup-facts span:nth-child(2) {
  animation-delay: 0.22s;
}

.world-cup-facts span:nth-child(3) {
  animation-delay: 0.44s;
}

.trophy-credit {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.world-cup-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.world-cup-countdown-grid div {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101418;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 14px 34px rgba(10, 20, 28, 0.14);
  animation: countdownPulse 4s ease-in-out infinite;
  overflow: hidden;
}

.world-cup-countdown-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 42%, transparent 72%);
  transform: translateX(-120%);
  animation: cardShine 2.4s ease-in-out infinite;
}

.world-cup-countdown-grid div:nth-child(2) {
  animation-delay: 0.18s;
}

.world-cup-countdown-grid div:nth-child(3) {
  animation-delay: 0.36s;
}

.world-cup-countdown-grid div:nth-child(4) {
  animation-delay: 0.54s;
}

.world-cup-countdown-grid strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  transform-origin: center;
}

.world-cup-countdown-grid strong.tick {
  animation: numberTick 460ms ease;
  color: var(--gold);
}

.world-cup-countdown-grid span {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.dark-theme .world-cup-countdown {
  background: var(--white);
}

@keyframes countdownSweep {
  0% {
    transform: translateX(0);
  }

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

@keyframes countdownPulse {
  0%,
  100% {
    border-color: rgba(220, 227, 232, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 14px 34px rgba(10, 20, 28, 0.14);
  }

  50% {
    border-color: rgba(244, 190, 44, 0.54);
    box-shadow: inset 0 0 0 1px rgba(244, 190, 44, 0.14), 0 18px 42px rgba(244, 190, 44, 0.18);
  }
}

@keyframes trophyFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-9px) rotate(2deg);
  }
}

@keyframes trophyOrbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes trophyShine {
  0% {
    transform: translateX(-120%);
  }

  50%,
  100% {
    transform: translateX(120%);
  }
}

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

  50% {
    background-position: 100% 50%;
  }
}

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

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

@keyframes cardShine {
  0% {
    transform: translateX(-120%);
  }

  52%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes liveDot {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 111, 58, 0.45);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(11, 111, 58, 0);
    transform: scale(1.14);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 111, 58, 0);
    transform: scale(1);
  }
}

@keyframes numberTick {
  0% {
    transform: translateY(8px) scale(0.94);
    opacity: 0.65;
  }

  45% {
    transform: translateY(-5px) scale(1.12);
    opacity: 1;
  }

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

.score-strip,
.fixtures,
.features,
.shop,
.download {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.score-strip article,
.fixture-card,
.feature-list article {
  background: var(--white);
}

.score-strip article {
  min-height: 210px;
  padding: 30px;
}

.match-type {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.score-strip h2,
.fixture-card h3,
.feature-list h3 {
  margin: 12px 0 10px;
  font-size: 1.55rem;
}

.score-strip p,
.fixture-card p,
.feature-copy p,
.feature-list p,
.shop-header p,
.download p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.fixtures {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-heading .eyebrow,
.feature-copy .eyebrow,
.shop-header .eyebrow,
.download .eyebrow {
  border-color: rgba(11, 111, 58, 0.24);
  color: var(--green);
}

.section-heading h2,
.feature-copy h2,
.shop-header h2,
.download h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: var(--ink);
}

.download h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

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

.fixture-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fixture-card span,
.feature-list span {
  color: var(--green);
  font-weight: 900;
}

.features {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: #101418;
  color: var(--white);
}

.features .feature-copy h2,
.features .feature-copy p {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-list article p {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.76);
}

.shop {
  display: block;
  background: #f4f7f5;
}

.shop-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.shop-header p {
  max-width: 520px;
}

.cart-summary {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(10, 20, 28, 0.08);
}

.cart-summary > span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
}

.cart-summary p {
  margin: 2px 0 14px;
  color: var(--muted);
}

.buy-button,
.cart-button,
.buy-now-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.buy-button:hover,
.cart-button:hover,
.buy-now-button:hover {
  transform: translateY(-1px);
  background: #d94717;
}

.buy-now-button {
  background: var(--ink);
}

.buy-now-button:hover {
  background: #000000;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(300px, 1fr);
  gap: clamp(18px, 4vw, 34px);
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(10, 20, 28, 0.08);
}

.product-detail + .product-detail {
  margin-top: 22px;
}

.product-gallery {
  padding: 14px;
  background: #ffffff;
}

.gallery-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  max-height: 430px;
  overflow: hidden;
  padding: 22px 44px;
  border: 1px solid rgba(198, 209, 217, 0.95);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow.previous {
  left: 12px;
}

.gallery-arrow.next {
  right: 12px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 330px;
  margin: 12px auto 0;
}

.gallery-thumbs button {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  max-height: 72px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumbs button[hidden] {
  display: none;
}

.gallery-thumbs button.active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: 5px;
  object-fit: contain;
  object-position: center;
}

.product-info {
  display: grid;
  grid-template-rows: auto;
  gap: 12px;
  align-content: center;
  padding: clamp(18px, 3vw, 30px);
  border-left: 1px solid var(--line);
}

.product-info span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
}

.product-info strong {
  color: var(--ink);
  font-size: 1.5rem;
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-row strong {
  color: var(--ink);
  font-size: 1.65rem;
}

.price-row del {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.price-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(217, 31, 47, 0.1);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sale-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: fit-content;
  max-width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(217, 31, 47, 0.18);
  border-radius: 8px;
  background: rgba(217, 31, 47, 0.06);
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
}

.sale-timer strong {
  margin-left: 5px;
  color: var(--red);
  font-size: inherit;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-info label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-info select {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.color-picker {
  display: grid;
  gap: 8px;
}

.color-picker > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

.color-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.color-options button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.color-options button.active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.color-swatch {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(16, 20, 24, 0.2);
  border-radius: 999px;
}

.color-swatch.black {
  background: #101418;
}

.color-swatch.white {
  background: #ffffff;
}

.color-swatch.scarf-classic {
  background: linear-gradient(135deg, #101418 0 50%, #f4be2c 50% 100%);
}

.color-swatch.scarf-colourful {
  background: conic-gradient(from 45deg, #d91f2f, #f4be2c, #0b6f3a, #1464a5, #d91f2f);
}

.review-summary {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.review-summary > span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.review-summary strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.review-summary small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.review-summary button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-reviews {
  display: grid;
  gap: 8px;
}

.product-reviews[hidden] {
  display: none;
}

.product-reviews article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 247, 245, 0.72);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.review-head strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.review-head span {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.product-reviews p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.single-size {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.single-size strong {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.95rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-store-link {
  margin-top: 2px;
}

.checkout-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(11, 111, 58, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(10, 20, 28, 0.09);
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-panel h3 {
  margin: 10px 0 6px;
  font-size: 1.4rem;
}

.checkout-panel p {
  margin: 0;
  color: var(--muted);
}

.cart-panel-head {
  display: grid;
  gap: 4px;
}

.cart-items {
  display: grid;
  gap: 8px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.cart-item strong {
  display: block;
  font-size: 0.95rem;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-item-total {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.remove-cart-item {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(217, 31, 47, 0.28);
  border-radius: 8px;
  background: #ffffff;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.checkout-open-button {
  justify-self: end;
  min-width: 190px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 13px 0 0;
  border-top: 1px solid var(--line);
}

.cart-total-row span {
  color: var(--muted);
  font-weight: 900;
}

.cart-total-row strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 20px;
  border: 1px solid rgba(11, 111, 58, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(10, 20, 28, 0.09);
}

.order-form[hidden] {
  display: none;
}

.order-form h3 {
  margin: 10px 0 0;
  font-size: 1.45rem;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(11, 111, 58, 0.22);
  border-color: var(--green);
}

.full-row {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.download {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #edf6f0);
}

.download img {
  width: min(28vw, 190px);
  height: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr) minmax(240px, 0.8fr);
  gap: 30px;
  align-items: start;
  padding: 38px clamp(18px, 5vw, 72px) 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #071714;
  color: #ffffff;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 64px;
  height: 50px;
  object-fit: contain;
}

.footer-brand strong,
.footer-note span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-note {
  text-align: right;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.live-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.live-chat-toggle,
.live-chat-head button,
.chat-quick-actions button,
.live-chat-form button {
  font: inherit;
  cursor: pointer;
}

.live-chat-toggle {
  display: inline-grid;
  gap: 2px;
  min-width: 142px;
  min-height: 54px;
  padding: 8px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(10, 20, 28, 0.24);
  text-align: left;
}

.live-chat-toggle span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-chat-toggle strong {
  font-size: 0.96rem;
}

.live-chat-panel {
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(10, 20, 28, 0.28);
}

.live-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: #071714;
  color: #ffffff;
}

.live-chat-head span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-chat-head button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 900;
}

.live-chat-messages {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding: 14px;
  background: var(--paper);
}

.chat-message {
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-message.support {
  justify-self: start;
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-message.customer {
  justify-self: end;
  background: var(--green);
  color: #ffffff;
}

.chat-choice-list {
  display: grid;
  gap: 7px;
  justify-self: stretch;
}

.chat-choice-list button {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(11, 111, 58, 0.24);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.chat-choice-list button:hover {
  border-color: var(--green);
  color: var(--green);
}

.chat-quick-actions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 14px 12px;
  background: var(--paper);
  scrollbar-width: none;
}

.chat-quick-actions[hidden] {
  display: none;
}

.chat-quick-actions::-webkit-scrollbar {
  display: none;
}

.chat-quick-actions button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.live-chat-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.live-chat-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.live-chat-form button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 900;
}

@media (min-width: 1440px) {
  .slider {
    min-height: 820px;
  }

  .slide-copy {
    max-width: 720px;
  }

  .score-strip,
  .fixtures,
  .features,
  .shop,
  .download,
  .site-footer {
    padding-right: max(72px, calc((100vw - 1320px) / 2));
    padding-left: max(72px, calc((100vw - 1320px) / 2));
  }

  .product-detail,
  .order-form {
    max-width: 1040px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .store-link.compact .store-copy strong {
    font-size: 0.96rem;
  }

  .slide {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    padding-right: 32px;
    padding-left: 32px;
  }

  .slide h1 {
    font-size: clamp(3.4rem, 7vw, 5.1rem);
  }

  .product-detail {
    grid-template-columns: minmax(260px, 400px) minmax(300px, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    min-height: 58px;
    gap: 12px;
    padding: 8px 12px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(7, 23, 20, 0.96);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .main-nav {
    position: fixed;
    grid-column: auto;
    grid-row: auto;
    right: 8px;
    bottom: env(safe-area-inset-bottom);
    left: 8px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 23, 20, 0.94);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }

  .main-nav a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
  }

  .main-nav a[href="#features"] .nav-label-full {
    display: none;
  }

  .main-nav a[href="#features"] .nav-label-short {
    display: inline;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    min-width: 0;
    gap: 7px;
  }

  .theme-toggle {
    justify-content: center;
    width: 38px;
    min-width: 38px;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
  }

  .theme-toggle::before {
    content: none;
  }

  .theme-toggle [data-theme-label] {
    display: none !important;
  }

  .theme-toggle-track {
    width: 28px;
    height: 16px;
  }

  .theme-toggle-thumb {
    top: 2px;
    width: 12px;
    height: 12px;
  }

  body.dark-theme .theme-toggle-thumb {
    transform: translateX(12px);
  }

  .brand img {
    width: 38px;
    height: 30px;
  }

  .brand span {
    display: inline;
    color: #ffffff;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .store-link.compact {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 8px;
  }

  .store-link.compact .store-copy {
    display: none;
  }

  .slider {
    min-height: 760px;
  }

  .slide,
  .fixtures,
  .features,
  .world-cup-countdown,
  .shop,
  .download {
    grid-template-columns: 1fr;
  }

  .world-cup-countdown {
    gap: 18px;
  }

  .world-cup-mark {
    right: 0;
    bottom: auto;
    top: 0;
    width: 74px;
    height: 74px;
  }

  .world-cup-countdown-copy h2 {
    max-width: calc(100% - 76px);
  }

  .slide {
    align-content: end;
    padding: 46px clamp(18px, 5vw, 42px) 150px;
    background-position: center right, center right, center;
  }

  .hero-art-space {
    display: none;
  }

  .slide-copy {
    max-width: 620px;
    padding-bottom: 0;
  }

  .slide h1 {
    max-width: 13ch;
  }

  .football-slide {
    background:
      linear-gradient(180deg, rgba(4, 15, 13, 0.28) 0%, rgba(4, 15, 13, 0.74) 48%, rgba(4, 15, 13, 0.98) 100%),
      url("assets/world-cup-2026-hero-v2.png?v=20260525") 63% center / cover no-repeat,
      linear-gradient(135deg, #09281b 0%, #0e5a36 48%, #081817 100%);
  }

  .cricket-slide {
    background:
      linear-gradient(180deg, rgba(10, 14, 16, 0.26) 0%, rgba(10, 14, 16, 0.76) 48%, rgba(10, 14, 16, 0.98) 100%),
      url("assets/cricket-match-center-hero.png") 62% center / cover no-repeat,
      linear-gradient(135deg, #111619 0%, #214b32 52%, #591a1b 100%);
  }

  .score-strip,
  .fixture-grid {
    grid-template-columns: 1fr;
  }

  .download {
    text-align: center;
    justify-items: center;
  }

  .shop-header,
  .product-detail,
  .checkout-panel,
  .order-form {
    grid-template-columns: 1fr;
  }

  .product-info {
    grid-template-rows: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .site-header {
    padding: 9px 14px;
  }

  .main-nav {
    display: grid;
  }

  .slider {
    min-height: 720px;
  }

  .slide {
    padding-bottom: 132px;
  }

  .slide h1 {
    font-size: clamp(3.1rem, 8vw, 4.9rem);
  }

  .product-detail,
  .order-form,
  .checkout-panel,
  .shop-header {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-frame {
    min-height: 430px;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    min-height: 58px;
    gap: 12px;
    padding: 8px 12px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(7, 23, 20, 0.96);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .main-nav {
    position: fixed;
    grid-column: auto;
    grid-row: auto;
    right: 8px;
    bottom: env(safe-area-inset-bottom);
    left: 8px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 23, 20, 0.94);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }

  .main-nav a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
  }

  .main-nav a[href="#features"] .nav-label-full {
    display: none;
  }

  .main-nav a[href="#features"] .nav-label-short {
    display: inline;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    min-width: 0;
    gap: 7px;
  }

  .theme-toggle {
    justify-content: center;
    width: 38px;
    min-width: 38px;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
  }

  .theme-toggle::before {
    content: none;
  }

  .theme-toggle [data-theme-label] {
    display: none !important;
  }

  .theme-toggle-track {
    width: 28px;
    height: 16px;
  }

  .theme-toggle-thumb {
    top: 2px;
    width: 12px;
    height: 12px;
  }

  body.dark-theme .theme-toggle-thumb {
    transform: translateX(12px);
  }

  .brand img {
    width: 38px;
    height: 30px;
  }

  .brand span {
    display: inline;
    color: #ffffff;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .store-link.compact {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 8px;
  }

  .store-link.compact .store-copy {
    display: none;
  }

  .play-icon {
    width: 21px;
    height: 23px;
    flex-basis: 21px;
  }

  .store-copy strong {
    font-size: 0.98rem;
  }

  .slider {
    min-height: 590px;
  }

  .slide {
    padding: 28px 14px 66px;
  }

  .football-slide {
    background:
      linear-gradient(180deg, rgba(4, 15, 13, 0.12) 0%, rgba(4, 15, 13, 0.5) 42%, rgba(4, 15, 13, 0.98) 88%),
      url("assets/world-cup-2026-hero-v2.png?v=20260525") 68% top / auto 100% no-repeat,
      linear-gradient(135deg, #09281b 0%, #0e5a36 48%, #081817 100%);
  }

  .cricket-slide {
    background:
      linear-gradient(180deg, rgba(10, 14, 16, 0.12) 0%, rgba(10, 14, 16, 0.52) 42%, rgba(10, 14, 16, 0.98) 88%),
      url("assets/cricket-match-center-hero.png") 62% top / auto 100% no-repeat,
      linear-gradient(135deg, #111619 0%, #214b32 52%, #591a1b 100%);
  }

  .slide h1 {
    max-width: 13ch;
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .slide p {
    max-width: 33ch;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .eyebrow {
    min-height: 28px;
    max-width: 100%;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .hero-trophy {
    min-height: 38px;
    margin-top: 14px;
    padding: 0 11px;
  }

  .hero-trophy strong {
    font-size: 0.72rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 4px;
  }

  .hero-actions .store-link,
  .hero-actions .ghost-link {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
  }

  .slider-controls {
    left: 50%;
    bottom: 14px;
  }

  .slider-controls button {
    width: 38px;
  }

  .ticker {
    gap: 18px;
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  .score-strip h2,
  .fixture-card h3,
  .feature-list h3 {
    font-size: 1.25rem;
  }

  .score-strip,
  .fixtures,
  .world-cup-countdown,
  .features,
  .shop,
  .download {
    padding: 36px 14px;
  }

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

  .world-cup-countdown-grid div {
    min-height: 82px;
  }

  .score-strip {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .score-strip article,
  .fixture-card,
  .feature-list article {
    min-height: auto;
    padding: 22px;
  }

  .section-heading h2,
  .feature-copy h2,
  .shop-header h2,
  .download h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .download h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .download {
    gap: 18px;
  }

  .download img {
    width: min(42vw, 130px);
  }

  .shop-header {
    gap: 16px;
    margin-bottom: 18px;
  }

  .fixture-grid {
    gap: 10px;
  }

  .score-strip p,
  .fixture-card p,
  .feature-copy p,
  .feature-list p,
  .shop-header p,
  .download p,
  .site-footer p {
    font-size: 0.94rem;
  }

  .product-detail {
    border-radius: 8px;
    overflow: visible;
    border-color: rgba(220, 227, 232, 0.85);
    box-shadow: 0 10px 24px rgba(10, 20, 28, 0.08);
  }

  .product-detail + .product-detail {
    margin-top: 18px;
  }

  .product-gallery {
    padding: 10px 10px 8px;
    border-radius: 8px 8px 0 0;
  }

  .gallery-frame {
    aspect-ratio: 1 / 0.9;
    min-height: 250px;
    max-height: 300px;
    padding: 14px 40px;
    border-radius: 8px;
  }

  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .gallery-thumbs {
    display: flex;
    gap: 7px;
    max-width: none;
    margin-top: 9px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .gallery-thumbs button {
    flex: 0 0 56px;
    max-height: none;
    padding: 4px;
  }

  .cart-summary,
  .product-info,
  .checkout-panel,
  .order-form {
    padding: 14px;
  }

  .product-info {
    gap: 9px;
    border-top: 0;
  }

  .product-info h3 {
    margin: 6px 0 4px;
    font-size: clamp(1.3rem, 6vw, 1.75rem);
    line-height: 1.08;
  }

  .product-info strong {
    font-size: 1.22rem;
    color: var(--orange);
  }

  .product-info p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .product-info label,
  .single-size {
    gap: 6px;
  }

  .product-info select,
  .single-size strong {
    min-height: 38px;
  }

  .product-actions {
    gap: 8px;
  }

  .cart-button,
  .buy-now-button {
    min-height: 46px;
  }

  .product-store-link {
    min-height: 48px;
  }

  .cart-summary strong {
    font-size: 1.3rem;
  }

  .checkout-panel {
    gap: 14px;
  }

  .cart-item {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .cart-item-total {
    grid-column: 1;
    grid-row: 2;
  }

  .remove-cart-item {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    width: auto;
  }

  .cart-total-row {
    padding-top: 12px;
  }

  .checkout-open-button {
    justify-self: stretch;
    width: 100%;
  }

  .feature-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-list article p {
    grid-column: auto;
  }

  .site-footer {
    gap: 22px;
    padding: 28px 14px calc(54px + env(safe-area-inset-bottom));
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 58px;
    height: 46px;
  }

  .footer-note {
    text-align: left;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-links a {
    min-height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 390px) {
  .slider {
    min-height: 600px;
  }

  .slide {
    padding-bottom: 70px;
  }

  .slide h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .football-slide {
    background:
      linear-gradient(180deg, rgba(4, 15, 13, 0.08) 0%, rgba(4, 15, 13, 0.52) 40%, rgba(4, 15, 13, 0.98) 86%),
      url("assets/world-cup-2026-hero-v2.png?v=20260525") 70% top / auto 100% no-repeat,
      linear-gradient(135deg, #09281b 0%, #0e5a36 48%, #081817 100%);
  }

  .cricket-slide {
    background:
      linear-gradient(180deg, rgba(10, 14, 16, 0.08) 0%, rgba(10, 14, 16, 0.52) 40%, rgba(10, 14, 16, 0.98) 86%),
      url("assets/cricket-match-center-hero.png") 64% top / auto 100% no-repeat,
      linear-gradient(135deg, #111619 0%, #214b32 52%, #591a1b 100%);
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .gallery-frame {
    min-height: 230px;
    max-height: 280px;
    padding: 12px 32px;
  }

  .gallery-thumbs {
    max-width: none;
  }

  .gallery-thumbs button {
    flex-basis: 52px;
  }
}

@media (max-width: 350px) {
  .site-header {
    gap: 8px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .theme-toggle {
    width: 38px;
    min-width: 38px;
  }

  .store-link.compact {
    width: 38px;
    min-width: 38px;
  }

  .brand {
    gap: 7px;
    font-size: 0.95rem;
  }

  .brand img {
    width: 38px;
    height: 31px;
  }

  .slide h1 {
    font-size: 1.8rem;
  }

  .main-nav a {
    font-size: 0.62rem;
  }

  .gallery-frame {
    min-height: 230px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    gap: 10px;
    padding: 8px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand img {
    width: 38px;
    height: 30px;
  }

  .brand span {
    display: inline;
    overflow: hidden;
    color: #ffffff;
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .main-nav,
  .store-link.compact {
    display: none !important;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    min-width: 0;
  }

  .theme-toggle {
    display: inline-flex;
    justify-content: center;
    width: 78px;
    min-width: 78px;
    min-height: 38px;
    padding: 0 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
  }

  .theme-toggle::before {
    content: none;
  }

  .theme-toggle-track {
    width: 28px;
    height: 16px;
  }

  .theme-toggle-thumb {
    top: 2px;
    width: 12px;
    height: 12px;
  }

  .theme-toggle [data-theme-label] {
    display: inline !important;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
  }

  body.dark-theme .theme-toggle-thumb {
    transform: translateX(12px);
  }

  .live-chat {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-items: end;
  }

  .live-chat-toggle {
    min-width: 124px;
    min-height: 48px;
    padding: 7px 12px;
  }

  .live-chat-panel {
    width: 100%;
  }

  .live-chat-messages {
    max-height: 220px;
  }
}
