/* =========================================================================
   Kicks & Kits — Football Kit Retailer
   Design tokens + base + layout + components
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* --- Color --- */
  --color-bg: #0a0c0e;
  --color-bg-elevated: #131619;
  --color-surface: #1a1e22;
  --color-surface-2: #21262b;
  --color-border: rgba(255,255,255,0.09);
  --color-border-strong: rgba(255,255,255,0.18);
  --color-text: #f5f5f2;
  --color-text-muted: #9ba0a6;
  --color-text-faint: #6b7075;
  --color-accent: #d6ff3f;
  --color-accent-dim: #a8cc2f;
  --color-accent-ink: #0a0c0e;
  --color-danger: #ff5b5b;
  --color-success: #4fd68a;
  --color-gold: #d8b26a;

  /* --- Type --- */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --fs-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --fs-sm: clamp(0.82rem, 0.8rem + 0.12vw, 0.9rem);
  --fs-base: clamp(0.95rem, 0.92rem + 0.15vw, 1rem);
  --fs-md: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  --fs-lg: clamp(1.3rem, 1.15rem + 0.6vw, 1.7rem);
  --fs-xl: clamp(1.8rem, 1.5rem + 1.2vw, 2.6rem);
  --fs-2xl: clamp(2.4rem, 1.9rem + 2vw, 3.8rem);
  --fs-3xl: clamp(3.2rem, 2.2rem + 4vw, 6rem);

  /* --- Space (standard/mid density) --- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --container: 1320px;
  --container-narrow: 760px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.45);
  --shadow-accent: 0 8px 30px rgba(214,255,63,0.18);

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 450ms;

  --header-h: 76px;
  --promo-h: 40px;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select{ font: inherit; color: inherit; }
h1,h2,h3,h4,p,figure{ margin: 0; }

/* Focus visibility — never remove */
:focus-visible{
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection{ background: var(--color-accent); color: var(--color-accent-ink); }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (min-width: 720px){ .container{ padding-inline: var(--space-8); } }

.visually-hidden{
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.skip-link{
  position: fixed; top: -100px; left: var(--space-4); z-index: 999;
  background: var(--color-accent); color: var(--color-accent-ink);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-sm);
  font-weight: 700; transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus{ top: var(--space-4); }

/* =========================================================================
   Typography helpers
   ========================================================================= */
.eyebrow{
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before{
  content: '';
  width: 18px; height: 2px;
  background: var(--color-accent);
  display: inline-block;
}
.display-1{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-size: var(--fs-3xl);
}
.display-2{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: var(--fs-2xl);
}
.display-3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: var(--fs-xl);
}
.text-muted{ color: var(--color-text-muted); }
.text-accent{ color: var(--color-accent); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }
.btn-primary{
  background: var(--color-accent);
  color: var(--color-accent-ink);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover{ background: #e2ff70; box-shadow: 0 10px 34px rgba(214,255,63,0.28); }
.btn-outline{
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn-outline:hover{ border-color: var(--color-accent); color: var(--color-accent); }
.btn-dark{
  background: var(--color-surface-2);
  color: var(--color-text);
}
.btn-dark:hover{ background: var(--color-surface); }
.btn-block{ width: 100%; }
.btn-sm{ min-height: 40px; padding: 0 var(--space-4); font-size: var(--fs-xs); }
.btn[disabled]{ opacity: 0.45; pointer-events: none; }

.icon-btn{
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  position: relative;
  transition: background var(--dur-fast);
}
.icon-btn:hover{ background: var(--color-surface-2); }
.icon-btn svg{ width: 22px; height: 22px; }

/* =========================================================================
   Promo announcement bar
   ========================================================================= */
.promo-bar{
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  height: var(--promo-h);
  z-index: 195;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-accent);
  color: var(--color-accent-ink, #0a0c0e);
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.promo-bar::before,
.promo-bar::after{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.promo-bar::before{ left: 0; background: linear-gradient(90deg, var(--color-accent), rgba(214,255,63,0)); }
.promo-bar::after{ right: 0; background: linear-gradient(270deg, var(--color-accent), rgba(214,255,63,0)); }
.promo-track{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  will-change: transform;
  animation: promo-scroll 32s linear infinite;
}
.promo-item{
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display, inherit);
  font-weight: 800;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0 var(--space-6);
}
.promo-item::after{
  content: "\25C6";
  margin-left: var(--space-6);
  font-size: 0.65em;
  opacity: 0.5;
}
.promo-bar:hover .promo-track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){
  .promo-track{ animation: none; }
}
@keyframes promo-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  background: rgba(10,12,14,0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.site-header.is-scrolled{
  background: rgba(10,12,14,0.86);
  border-bottom-color: var(--color-border);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand{ display: flex; align-items: center; }
.brand img{ height: 34px; width: auto; display: block; }
.footer-brand .brand img{ height: 38px; }

.main-nav{ display: none; }
.main-nav ul{ display: flex; align-items: center; gap: var(--space-5); }
.main-nav a{
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--dur-fast);
}
.main-nav a::after{
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
  background: var(--color-accent);
  transition: right var(--dur-base) var(--ease-out);
}
.main-nav a:hover, .main-nav a.is-active{ color: var(--color-text); }
.main-nav a:hover::after, .main-nav a.is-active::after{ right: 0; }

/* Leagues dropdown (desktop) */
.main-nav .has-dropdown{ position: relative; }
.nav-dropdown-toggle{
  font: inherit; background: none; border: none; cursor: pointer;
  font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--color-text-muted);
  display: inline-flex; align-items: center; gap: 5px; padding: var(--space-2) 0;
  transition: color var(--dur-fast);
}
.nav-dropdown-toggle:hover{ color: var(--color-text); }
.nav-dropdown-toggle svg{ width: 13px; height: 13px; transition: transform var(--dur-fast); }
.has-dropdown:hover .nav-dropdown-toggle svg,
.has-dropdown.is-open .nav-dropdown-toggle svg{ transform: rotate(180deg); }
.nav-dropdown{
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  z-index: 210;
}
.nav-dropdown::before{ content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 10px; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown.is-open .nav-dropdown{
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a{
  display: block; padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm);
  font-size: var(--fs-sm); font-weight: 600; text-transform: none; letter-spacing: 0;
  color: var(--color-text-muted); white-space: nowrap;
}
.nav-dropdown a::after{ display: none; }
.nav-dropdown a:hover, .nav-dropdown a.is-active{ background: var(--color-surface-2); color: var(--color-text); }

.header-actions{ display: flex; align-items: center; gap: var(--space-2); }

/* Header search (compact, expands on focus) */
.header-search{
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0 var(--space-3);
  height: 40px;
  transition: border-color var(--dur-fast);
  width: clamp(118px, 24vw, 200px);
}
.header-search:focus-within{ border-color: var(--color-accent); }
.header-search svg{ width: 16px; height: 16px; color: var(--color-text-faint); flex-shrink: 0; }
.header-search input{
  background: none; border: none; outline: none;
  color: var(--color-text); width: 100%; min-width: 0; font-size: var(--fs-sm);
}
.header-search input::placeholder{ color: var(--color-text-faint); }

/* Big search box on the All Kits hero */
.everything-search{
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  padding: 0 var(--space-5);
  height: 56px;
  max-width: 520px;
  margin-top: var(--space-8);
  transition: border-color var(--dur-fast);
}
.everything-search:focus-within{ border-color: var(--color-accent); }
.everything-search svg{ width: 20px; height: 20px; color: var(--color-text-faint); flex-shrink: 0; }
.everything-search input{
  background: none; border: none; outline: none;
  color: var(--color-text); width: 100%; font-size: var(--fs-md);
}
.everything-search input::placeholder{ color: var(--color-text-faint); }

.cart-count{
  position: absolute; top: 2px; right: 2px;
  background: var(--color-accent); color: var(--color-accent-ink);
  font-size: 10px; font-weight: 800;
  min-width: 17px; height: 17px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease-out);
}
.cart-count.is-visible{ transform: scale(1); }

.nav-toggle{ display: inline-flex; }
.nav-toggle span{
  display: block; width: 20px; height: 2px; background: currentColor;
  position: relative;
  transition: background var(--dur-fast);
}
.nav-toggle span::before, .nav-toggle span::after{
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
  transition: transform var(--dur-base) var(--ease-out), top var(--dur-base) var(--ease-out);
}
.nav-toggle span::before{ top: -6px; }
.nav-toggle span::after{ top: 6px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top: 0; transform: rotate(-45deg); }

@media (min-width: 1200px){
  .main-nav{ display: block; }
  .nav-toggle{ display: none; }
}

/* Mobile drawer nav */
.mobile-nav{
  position: fixed; inset: 0; top: calc(var(--promo-h) + var(--header-h));
  background: var(--color-bg);
  z-index: 190;
  padding: var(--space-8) var(--space-5);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  overflow-y: auto;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav ul{ display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-nav a{
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  text-transform: uppercase;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}
/* Mobile "Leagues" accordion group */
.mobile-group-toggle{
  font: inherit; color: var(--color-text); background: none; border: none; cursor: pointer;
  width: 100%;
  font-family: var(--font-display); font-size: var(--fs-lg); text-transform: uppercase;
  padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
}
.mobile-group-toggle svg{ width: 22px; height: 22px; flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); }
.mobile-group.is-open .mobile-group-toggle svg{ transform: rotate(180deg); }
.mobile-subnav{ max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-in-out); }
.mobile-group.is-open .mobile-subnav{ max-height: 420px; }
.mobile-subnav a{
  font-family: var(--font-body); font-size: var(--fs-md); text-transform: none; font-weight: 600;
  padding: var(--space-3) 0 var(--space-3) var(--space-5);
  color: var(--color-text-muted);
}
@media (min-width: 960px){ .mobile-nav{ display: none; } }

/* =========================================================================
   Hero
   ========================================================================= */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--promo-h) + var(--header-h));
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(214,255,63,0.14), transparent 55%),
    radial-gradient(90% 60% at 10% 100%, rgba(216,178,106,0.08), transparent 60%),
    var(--color-bg);
}
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 60% 30%, black, transparent);
  pointer-events: none;
}
.hero-streaks{
  position: absolute; inset: -15% -10%;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(115deg,
    transparent 0 46px,
    rgba(255,77,46,0.12) 46px 60px,
    rgba(255,174,55,0.12) 60px 70px,
    transparent 70px 150px,
    rgba(41,163,255,0.12) 150px 164px,
    transparent 164px 260px);
  mask-image: radial-gradient(55% 55% at 78% 28%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(55% 55% at 78% 28%, black, transparent 70%);
}
.hero .container{
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-10);
  padding-block: var(--space-16) var(--space-12);
}
@media (min-width: 900px){
  .hero .container{ grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}
.hero-copy h1{ margin-block: var(--space-4) var(--space-5); }
.hero-copy h1 .line-wrap{ display: block; overflow: hidden; }
.hero-copy h1 .line{ display: block; }
.hero-copy p{ font-size: var(--fs-md); color: var(--color-text-muted); max-width: 46ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }
.hero-stats{ display: flex; gap: var(--space-8); margin-top: var(--space-12); flex-wrap: wrap; }
.hero-stat b{ display: block; font-family: var(--font-display); font-size: var(--fs-lg); }
.hero-stat span{ color: var(--color-text-faint); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual{ position: relative; aspect-ratio: 4/5; }

.hero-carousel{
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  touch-action: pan-y;
}
.hero-carousel::after{
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 32%);
  pointer-events: none;
}
.hero-carousel-track{ position: relative; width: 100%; height: 100%; }
.hero-carousel-slide{
  position: absolute; inset: 0; margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-carousel-slide.is-active{ opacity: 1; z-index: 1; }
.hero-carousel-slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel-arrow{
  position: absolute; top: 50%; translate: 0 -50%; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,12,14,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
  opacity: 0;
}
.hero-carousel:hover .carousel-arrow, .hero-carousel:focus-within .carousel-arrow{ opacity: 1; }
.carousel-arrow svg{ width: 18px; height: 18px; }
.carousel-arrow:hover{ background: rgba(10,12,14,0.85); }
.carousel-arrow-prev{ left: 12px; }
.carousel-arrow-next{ right: 12px; }

.carousel-foot{
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: var(--space-4);
}
.carousel-dots{ display: flex; gap: 7px; }
.carousel-dots button{
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: all var(--dur-base) var(--ease-out);
}
.carousel-dots button.is-active{ width: 20px; border-radius: var(--radius-full); background: var(--color-accent); }

.carousel-play{
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(10,12,14,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  position: absolute; right: 14px;
}
.carousel-play svg{ width: 11px; height: 11px; color: #fff; }

@media (max-width: 720px){
  .carousel-arrow{ opacity: 1; }
}

/* =========================================================================
   Category rows ("lining down") — homepage league sections
   ========================================================================= */
.category-rows{ padding-block: var(--space-24); }
.category-row{
  display: grid;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-16);
  border-top: 1px solid var(--color-border);
}
.category-row:last-child{ border-bottom: 1px solid var(--color-border); }
@media (min-width: 860px){
  .category-row{ grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .category-row.is-reverse .category-row-media{ order: 2; }
}
.category-row-media{
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.category-row-index{
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-border-strong);
  -webkit-text-stroke: 1px var(--color-border-strong);
  line-height: 1;
}
.category-row-body h3{ margin-top: var(--space-3); }
.category-row-body p{ color: var(--color-text-muted); margin-top: var(--space-4); max-width: 42ch; }
.category-row-meta{ display: flex; gap: var(--space-6); margin-top: var(--space-6); flex-wrap: wrap; }
.category-row-meta span{ font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-faint); }
.category-row-link{
  margin-top: var(--space-8);
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-weight: 700; text-transform: uppercase; font-size: var(--fs-sm); letter-spacing: 0.03em;
}
.category-row-link .arrow{
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base), border-color var(--dur-base);
}
.category-row-link:hover .arrow{ background: var(--color-accent); border-color: var(--color-accent); color: var(--color-accent-ink); transform: translateX(4px) rotate(0deg); }

.league-badge{
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 10%;
}
.league-badge img{
  max-width: 62%; max-height: 62%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,0.55));
  transition: transform var(--dur-slow) var(--ease-out);
}
.category-row:hover .league-badge img{ transform: scale(1.04); }

.swatch-row{ display: flex; gap: var(--space-2); position: absolute; left: var(--space-5); bottom: var(--space-5); z-index: 2; }
.swatch{ width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(10,12,14,0.5); box-shadow: 0 2px 6px rgba(0,0,0,0.4); }

/* =========================================================================
   Section headers
   ========================================================================= */
.section{ padding-block: var(--space-20); }
.section-head{
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: var(--space-6); margin-bottom: var(--space-10);
}
.section-head h2{ margin-top: var(--space-3); }
.section-head p{ color: var(--color-text-muted); max-width: 48ch; margin-top: var(--space-3); }

/* =========================================================================
   Team / Product grids
   ========================================================================= */
.team-grid, .product-grid{
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px){ .team-grid, .product-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px){ .team-grid, .product-grid{ grid-template-columns: repeat(4, 1fr); } }

.card{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
  will-change: transform;
}
.card:hover{ transform: translateY(-6px); border-color: var(--color-border-strong); box-shadow: var(--shadow-md); }

.card-media{
  position: relative;
  aspect-ratio: 4/5;
  background: var(--color-bg-elevated);
  overflow: hidden;
}
.card-media img{
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.card:hover .card-media img{ transform: scale(1.06); }

/* Graceful placeholder shown when the real product photo hasn't been supplied yet */
.card-media img.img-fallback{ display: none; }
.media-placeholder{
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(160deg, var(--_pc, #2a2f34), var(--_sc, #14171a));
}
.media-placeholder svg{ width: 46%; height: 46%; opacity: 0.92; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); }
.media-placeholder .placeholder-tag{
  position: absolute; bottom: var(--space-3); left: var(--space-3);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.7);
  padding: 3px 8px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.12);
}

.card-media.is-logo img{
  object-fit: contain;
  padding: 16%;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.4));
}
.card-media.is-logo:hover img{ transform: scale(1.1); }

.badge{
  position: absolute; top: var(--space-3); left: var(--space-3); z-index: 2;
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: var(--radius-full);
  background: var(--color-accent); color: var(--color-accent-ink);
}
.badge.badge-gold{ background: var(--color-gold); }
.badge.badge-dark{ background: rgba(0,0,0,0.55); color: #fff; border: 1px solid rgba(255,255,255,0.15); }

.card-body{ padding: var(--space-4) var(--space-5) var(--space-5); }
.card-eyebrow{ font-size: var(--fs-xs); color: var(--color-text-faint); text-transform: uppercase; letter-spacing: 0.05em; }
.card-title{ font-weight: 700; margin-top: var(--space-1); font-size: var(--fs-md); }
.card-price{ margin-top: var(--space-2); display: flex; align-items: center; gap: var(--space-2); font-weight: 700; }
.card-price .was{ color: var(--color-text-faint); text-decoration: line-through; font-weight: 500; font-size: var(--fs-sm); }

.team-card{ text-align: left; }
.team-card .card-media{ aspect-ratio: 1/1; }
.team-card-name{ font-family: var(--font-display); font-size: var(--fs-md); letter-spacing: 0.01em; }
.team-card-count{ color: var(--color-text-faint); font-size: var(--fs-xs); text-transform: uppercase; }

/* =========================================================================
   League page hero (compact)
   ========================================================================= */
.league-hero{
  position: relative;
  padding-top: calc(var(--promo-h) + var(--header-h) + var(--space-16));
  padding-bottom: var(--space-12);
  overflow: hidden;
}
.league-hero::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--_lc, rgba(214,255,63,0.16)), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.breadcrumb{ display: flex; align-items: center; gap: var(--space-2); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-faint); margin-bottom: var(--space-6); }
.breadcrumb a:hover{ color: var(--color-accent); }
.league-hero h1{ margin-top: var(--space-4); }
.league-hero p{ margin-top: var(--space-5); color: var(--color-text-muted); max-width: 56ch; font-size: var(--fs-md); }
.league-filters{ display: flex; gap: var(--space-3); margin-top: var(--space-8); flex-wrap: wrap; }
.chip{
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  border: 1px solid var(--color-border-strong); font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted);
  transition: all var(--dur-fast);
  min-height: 40px; display: inline-flex; align-items: center;
}
.chip:hover{ color: var(--color-text); border-color: var(--color-text); }
.chip.is-active{ background: var(--color-accent); border-color: var(--color-accent); color: var(--color-accent-ink); }

/* =========================================================================
   Team / product detail
   ========================================================================= */
.product-detail{
  padding-top: calc(var(--promo-h) + var(--header-h) + var(--space-10));
  padding-bottom: var(--space-24);
}
.product-layout{ display: grid; gap: var(--space-12); }
@media (min-width: 900px){ .product-layout{ grid-template-columns: 1.1fr 0.9fr; gap: var(--space-16); } }

.product-media-main{
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-surface);
}
.product-thumbs{ display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.product-thumb{
  width: 76px; height: 76px; border-radius: var(--radius-sm);
  overflow: hidden; position: relative;
  border: 2px solid transparent; cursor: pointer;
}
.product-thumb.is-active{ border-color: var(--color-accent); }

.product-media-main img, .product-thumb img, .cart-item-media img{
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
}
.product-media-main img.img-fallback, .product-thumb img.img-fallback, .cart-item-media img.img-fallback{ display: none; }
.product-media-main .media-placeholder, .product-thumb .media-placeholder, .cart-item-media .media-placeholder{ z-index: 1; }
.product-thumb .placeholder-tag, .cart-item-media .placeholder-tag{ display: none; }

.product-info h1{ margin-top: var(--space-3); }
.product-price{ font-family: var(--font-display); font-size: var(--fs-lg); margin-top: var(--space-5); display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--space-3); }
.product-desc{ color: var(--color-text-muted); margin-top: var(--space-5); max-width: 54ch; }

/* Discounted price presentation: current price + struck "was" + % off badge */
.card-price .now{ color: var(--color-text); }
.product-price .now{ color: var(--color-text); }
.card-price .was{ font-family: var(--font-body); color: var(--color-text-faint); text-decoration: line-through; font-weight: 500; font-size: var(--fs-sm); }
.product-price .was{ font-family: var(--font-body); color: var(--color-text-faint); text-decoration: line-through; font-weight: 500; font-size: var(--fs-md); }
.off{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-xs);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-accent-ink);
  background: var(--color-accent);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.product-price .off{ align-self: center; }

/* Refer a friend */
.refer-grid{ display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
@media (min-width: 860px){ .refer-grid{ grid-template-columns: 1.1fr 0.9fr; gap: var(--space-10); } }
.refer-steps{ display: flex; flex-direction: column; gap: var(--space-6); }
.refer-step{ display: flex; gap: var(--space-5); align-items: flex-start; }
.refer-num{ flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: var(--fs-lg); background: var(--color-accent); color: var(--color-accent-ink); }
.refer-step h3{ font-size: var(--fs-md); margin-bottom: 2px; }
.refer-card{ background: var(--color-bg-elevated); border: 1px solid var(--color-border-strong); border-radius: var(--radius-lg); padding: var(--space-7) var(--space-6); }
.refer-code-label{ font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-faint); margin-bottom: var(--space-2); }
.refer-code{ font-family: var(--font-display); font-size: var(--fs-2xl); letter-spacing: .04em; color: var(--color-accent); border: 1px dashed var(--color-border-strong); border-radius: var(--radius-md); text-align: center; padding: var(--space-4); margin-bottom: var(--space-4); }
.refer-msg{ min-height: 1.2em; margin-top: var(--space-3); font-size: var(--fs-sm); color: var(--color-success); text-align: center; opacity: 0; transition: opacity var(--dur-base) var(--ease-out); }

/* Cookie consent banner */
.kk-cookie{
  position: fixed; left: 50%; bottom: var(--space-5);
  transform: translate(-50%, 160%);
  z-index: 350; width: min(680px, calc(100vw - 2 * var(--space-5)));
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.kk-cookie.is-open{ opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.kk-cookie p{ flex: 1 1 300px; margin: 0; font-size: var(--fs-sm); color: var(--color-text-muted); }
.kk-cookie-actions{ display: flex; gap: var(--space-3); flex-shrink: 0; }
.kk-cookie-actions .btn{ min-height: 40px; padding-inline: var(--space-5); }
@media (max-width: 520px){
  .kk-cookie{ bottom: 0; width: 100vw; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .kk-cookie-actions{ width: 100%; }
  .kk-cookie-actions .btn{ flex: 1; }
}

.option-group{ margin-top: var(--space-8); }
.option-label{ display: flex; justify-content: space-between; align-items: baseline; font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: var(--space-3); }
.size-guide-link{ font-size: var(--fs-xs); font-weight: 700; text-transform: none; letter-spacing: 0; color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }
.size-guide-link:hover{ color: var(--color-accent-dim); }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews-summary{ display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5); margin-bottom: var(--space-8); }
.reviews-avg{ font-family: var(--font-display); font-size: var(--fs-2xl); line-height: 1; }
.reviews-summary .review-stars{ font-size: var(--fs-lg); }
.reviews-count{ color: var(--color-text-muted); font-size: var(--fs-sm); }
.review-grid{ display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-5); }
.review-card{ background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.review-head{ display: flex; align-items: center; gap: var(--space-3); }
.review-avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--color-accent); color: var(--color-accent-ink); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); flex: none; }
.review-who{ min-width: 0; }
.review-name{ font-weight: 700; display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.review-verified{ font-size: 11px; color: var(--color-success); border: 1px solid rgba(79,214,138,0.4); border-radius: var(--radius-full); padding: 1px 8px; font-weight: 700; white-space: nowrap; }
.review-substars{ display: flex; align-items: center; gap: var(--space-3); margin-top: 2px; }
.review-stars{ color: var(--color-success); letter-spacing: 1px; font-size: var(--fs-sm); }
.review-stars .off{ color: var(--color-border-strong); }
.review-date{ color: var(--color-text-faint); font-size: var(--fs-xs); }
.review-title{ font-weight: 800; margin-top: var(--space-4); font-size: var(--fs-md); }
.review-body{ color: var(--color-text-muted); margin-top: var(--space-2); line-height: 1.65; }
.review-product{ margin-top: var(--space-4); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-faint); font-weight: 700; }
.reviews-empty{ text-align: center; padding: var(--space-12) var(--space-4); border: 1px dashed var(--color-border-strong); border-radius: var(--radius-lg); color: var(--color-text-muted); }

/* Star rating input */
.star-input{ display: inline-flex; gap: 6px; }
.star-input button{ background: none; border: 0; padding: 0; font-size: 30px; line-height: 1; color: var(--color-border-strong); cursor: pointer; transition: color var(--dur-fast); }
.star-input button.is-on{ color: var(--color-success); }
.review-form-card{ background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); max-width: 640px; }

/* =========================================================================
   Subscribe popup (10% off)
   ========================================================================= */
.kk-modal-overlay{
  position: fixed; inset: 0; z-index: 400;
  display: flex; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: var(--space-5);
  background: rgba(6,7,9,0.72);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.kk-modal-overlay.is-open{ opacity: 1; visibility: visible; }
.kk-modal{
  position: relative;
  margin: auto; /* centres when it fits, and stays fully scrollable when taller than the screen */
  width: 100%; max-width: 440px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-9) var(--space-8) var(--space-7);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transform: translateY(14px) scale(0.98);
  transition: transform var(--dur-base) var(--ease-out);
  text-align: center;
}
@media (max-width: 480px){
  .kk-modal-overlay{ padding: var(--space-3); }
  .kk-modal{ padding: var(--space-8) var(--space-5) var(--space-6); }
}
.kk-modal-overlay.is-open .kk-modal{ transform: none; }
.kk-modal .eyebrow{ justify-content: center; }
.kk-modal-close{
  position: absolute; top: 12px; right: 14px;
  background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--color-text-faint);
}
.kk-modal-close:hover{ color: var(--color-text); }
.kk-modal .field input{ text-align: center; }
.kk-modal-dismiss{
  display: block; width: 100%; margin-top: var(--space-4);
  background: none; border: 0; cursor: pointer;
  color: var(--color-text-faint); font-size: var(--fs-xs); text-decoration: underline; text-underline-offset: 3px;
}
.kk-modal-dismiss:hover{ color: var(--color-text-muted); }
.kk-code{
  font-family: var(--font-display); font-size: var(--fs-xl); letter-spacing: 0.14em;
  color: var(--color-accent-ink); background: var(--color-accent);
  border-radius: var(--radius-md); padding: var(--space-4) var(--space-5);
  user-select: all;
}

/* =========================================================================
   Mystery Kit subscription page
   ========================================================================= */
.mystery-layout{ display: grid; grid-template-columns: 1fr; gap: var(--space-9); align-items: start; }
@media (min-width: 900px){ .mystery-layout{ grid-template-columns: 0.9fr 1.1fr; gap: var(--space-12); } }
.mystery-visual{
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #f2ead9, #cdc0a4);
  border: 1px solid var(--color-border-strong);
  display: grid; place-items: center; padding: var(--space-6);
}
.mystery-logo{ width: 90%; height: auto; filter: drop-shadow(0 14px 34px rgba(0,0,0,0.35)); }
.mystery-tag{
  position: absolute; bottom: var(--space-6); right: var(--space-6);
  background: #12233f; color: #e8d6a6;
  font-family: var(--font-display); font-size: var(--fs-lg);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mystery-tag span{ font-size: var(--fs-sm); }
.mystery-panel{ background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); }
.mystery-perks{ list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.mystery-perks li{ display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-text-muted); font-size: var(--fs-sm); }
.mystery-perks .tick{ color: var(--color-success); font-weight: 800; flex: none; }

/* =========================================================================
   Size guide page
   ========================================================================= */
.size-guide-table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
}
.size-guide-table{
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.size-guide-table th,
.size-guide-table td{
  padding: var(--space-4) var(--space-5);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
.size-guide-table thead th{
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: var(--fs-md, 1rem);
  position: sticky;
  top: 0;
  z-index: 2;
}
.size-guide-table thead th:first-child{ text-align: left; }
.size-guide-table tbody th{
  text-align: left;
  font-weight: 700;
  background: var(--color-surface);
  position: sticky;
  left: 0;
  z-index: 1;
}
.size-guide-table tbody tr:last-child td,
.size-guide-table tbody tr:last-child th{ border-bottom: 0; }
.size-guide-table tbody tr:nth-child(even) td{ background: rgba(255,255,255,0.02); }
.size-guide-table tbody tr:hover td{ background: rgba(214,255,63,0.06); }
.size-guide-note{ margin-top: var(--space-6); color: var(--color-text-muted); font-size: var(--fs-sm); max-width: 60ch; }

/* =========================================================================
   Simple content pages (About / Shipping / Contact)
   ========================================================================= */
.page-copy{ max-width: 70ch; }
.page-copy .lead{ font-size: var(--fs-lg); line-height: 1.5; color: var(--color-text); margin-bottom: var(--space-6); }
.page-copy p{ color: var(--color-text-muted); font-size: var(--fs-md); line-height: 1.8; margin-bottom: var(--space-5); }
.page-copy p strong{ color: var(--color-text); font-weight: 700; }
.page-copy h2{ font-family: var(--font-display); font-size: var(--fs-lg); margin: var(--space-10) 0 var(--space-4); }
.page-copy .tagline{ font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.25; color: var(--color-accent); margin-top: var(--space-8); letter-spacing: 0.01em; }
.contact-methods{ list-style: none; margin: var(--space-6) 0 0; padding: 0; display: grid; gap: var(--space-4); max-width: 460px; }
.contact-methods li{ display: flex; align-items: center; gap: var(--space-4); padding: var(--space-5); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-bg-elevated); }
.contact-methods .contact-ico{ flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--radius-full); background: var(--color-accent); color: var(--color-accent-ink); }
.contact-methods .contact-ico svg{ width: 22px; height: 22px; }
.contact-methods .contact-label{ display: block; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-faint); font-weight: 700; }
.contact-methods a, .contact-methods .contact-value{ font-size: var(--fs-md); font-weight: 700; color: var(--color-text); }
.contact-methods a:hover{ color: var(--color-accent); }
.option-pills{ display: flex; gap: var(--space-2); flex-wrap: wrap; }
.pill{
  min-width: 48px; min-height: 44px; padding: 0 var(--space-3);
  border-radius: var(--radius-sm); border: 1px solid var(--color-border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--fs-sm); transition: all var(--dur-fast);
}
.pill:hover{ border-color: var(--color-text); }
.pill.is-active{ background: var(--color-accent); border-color: var(--color-accent); color: var(--color-accent-ink); }
/* A kit we haven't photographed in the selected fit — still pickable so the customer
   can see it exists, but visibly marked as not in yet. */
.pill.is-unavailable{ opacity: 0.42; border-style: dashed; }
.pill.is-unavailable.is-active{ background: transparent; color: var(--color-text); border-color: var(--color-border-strong); }

/* Delivery expectations + WhatsApp stock enquiry, on every product page */
.delivery-note{
  margin-top: var(--space-5);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
}
.delivery-note-head{
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-text-faint);
}
.delivery-note-head svg{ width: 16px; height: 16px; flex: none; }
.delivery-list{ list-style: none; margin: 12px 0 0; padding: 0; }
.delivery-list li{
  position: relative; padding-left: 16px; margin-bottom: 6px;
  font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.5;
}
.delivery-list li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent);
}
.delivery-list strong{ color: var(--color-text); }
.delivery-ask{
  margin: 12px 0 0; padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.5;
}
.delivery-ask a{ color: var(--color-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.delivery-ask a:hover{ text-decoration: none; }

.qty-stepper{ display: inline-flex; align-items: center; border: 1px solid var(--color-border-strong); border-radius: var(--radius-sm); }
.qty-stepper button{ width: 44px; height: 44px; font-size: 1.1rem; font-weight: 700; }
.qty-stepper button:hover{ color: var(--color-accent); }
.qty-stepper input{ width: 40px; text-align: center; background: transparent; border: none; font-weight: 700; }

.product-cta{ display: flex; gap: var(--space-4); margin-top: var(--space-10); flex-wrap: wrap; }
.product-cta .btn-primary{ flex: 1; min-width: 200px; }

.trust-row{ display: flex; gap: var(--space-6); margin-top: var(--space-10); flex-wrap: wrap; }
.trust-item{ display: flex; align-items: center; gap: var(--space-3); font-size: var(--fs-xs); color: var(--color-text-muted); }
.trust-item svg{ width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }

/* =========================================================================
   Cart drawer
   ========================================================================= */
.cart-overlay{
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity var(--dur-base);
}
.cart-overlay.is-open{ opacity: 1; pointer-events: auto; }

.cart-drawer{
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-bg-elevated);
  border-left: 1px solid var(--color-border);
  z-index: 301;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
}
.cart-drawer.is-open{ transform: translateX(0); }
.cart-drawer-head{ display: flex; align-items: center; justify-content: space-between; padding: var(--space-6); border-bottom: 1px solid var(--color-border); }
.cart-drawer-head h2{ font-family: var(--font-display); font-size: var(--fs-md); text-transform: uppercase; }
.cart-items{ flex: 1; overflow-y: auto; padding: var(--space-4) var(--space-6); }
.cart-item{ display: grid; grid-template-columns: 74px 1fr auto; gap: var(--space-4); padding-block: var(--space-5); border-bottom: 1px solid var(--color-border); }
.cart-item-media{ width: 74px; height: 74px; border-radius: var(--radius-sm); overflow: hidden; position: relative; background: var(--color-surface); }
.cart-item-name{ font-weight: 700; font-size: var(--fs-sm); }
.cart-item-meta{ font-size: var(--fs-xs); color: var(--color-text-faint); margin-top: 2px; }
.cart-item-price{ font-weight: 700; font-size: var(--fs-sm); }
.cart-item-controls{ display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-3); }
.cart-item-remove{ font-size: var(--fs-xs); color: var(--color-text-faint); text-decoration: underline; }
.cart-item-remove:hover{ color: var(--color-danger); }
.cart-empty{ padding: var(--space-16) var(--space-6); text-align: center; color: var(--color-text-muted); }
.cart-drawer-foot{ padding: var(--space-6); border-top: 1px solid var(--color-border); }
.cart-subtotal{ display: flex; justify-content: space-between; font-weight: 700; margin-bottom: var(--space-4); font-size: var(--fs-md); }
.cart-summary{ margin-bottom: var(--space-4); }
.cart-summary .summary-line.is-discount span:last-child{ color: var(--color-success); }
.cart-promo-hint{
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.02em;
  color: var(--color-accent); text-align: center;
  margin-bottom: var(--space-3);
  padding: var(--space-2); border: 1px dashed var(--color-border-strong); border-radius: var(--radius-sm);
}

/* =========================================================================
   Toast
   ========================================================================= */
.toast{
  position: fixed; bottom: var(--space-6); left: 50%;
  transform: translate(-50%, 20px);
  background: var(--color-text); color: var(--color-bg);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  font-weight: 700; font-size: var(--fs-sm);
  z-index: 400; opacity: 0; pointer-events: none;
  transition: all var(--dur-base) var(--ease-out);
  display: flex; align-items: center; gap: var(--space-2);
}
.toast.is-visible{ opacity: 1; transform: translate(-50%, 0); }

/* =========================================================================
   Newsletter / CTA band
   ========================================================================= */
.cta-band{
  margin-inline: var(--space-5);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-surface), var(--color-bg-elevated));
  border: 1px solid var(--color-border);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px){ .cta-band{ margin-inline: auto; max-width: var(--container); } }
.cta-band h2{ max-width: 20ch; margin-inline: auto; }
.cta-band p{ color: var(--color-text-muted); margin-top: var(--space-4); }
.newsletter-form{ display: flex; gap: var(--space-3); max-width: 420px; margin: var(--space-8) auto 0; flex-wrap: wrap; justify-content: center; }
.newsletter-form input{
  flex: 1; min-width: 220px; min-height: 48px; padding: 0 var(--space-5);
  background: var(--color-bg); border: 1px solid var(--color-border-strong); border-radius: var(--radius-full);
  color: var(--color-text);
}
.newsletter-form input::placeholder{ color: var(--color-text-faint); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer{ border-top: 1px solid var(--color-border); padding-block: var(--space-16) var(--space-8); margin-top: var(--space-24); }
.footer-grid{ display: grid; gap: var(--space-10); grid-template-columns: 1fr; }
@media (min-width: 720px){ .footer-grid{ grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand p{ color: var(--color-text-muted); margin-top: var(--space-4); max-width: 34ch; }
.footer-col h4{ font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-faint); margin-bottom: var(--space-4); }
.footer-col ul{ display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a{ color: var(--color-text-muted); font-size: var(--fs-sm); transition: color var(--dur-fast); }
.footer-col a:hover{ color: var(--color-accent); }
.footer-bottom{ display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center; margin-top: var(--space-16); padding-top: var(--space-8); border-top: 1px solid var(--color-border); color: var(--color-text-faint); font-size: var(--fs-xs); }
.social-row{ display: flex; gap: var(--space-3); }
.social-row a{ width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-border-strong); display: inline-flex; align-items: center; justify-content: center; }
.social-row svg{ width: 16px; height: 16px; }
.social-row a:hover{ border-color: var(--color-accent); color: var(--color-accent); }

/* =========================================================================
   Checkout
   ========================================================================= */
.checkout-layout{ display: grid; gap: var(--space-12); padding-top: calc(var(--promo-h) + var(--header-h) + var(--space-10)); padding-bottom: var(--space-24); }
@media (min-width: 900px){ .checkout-layout{ grid-template-columns: 1.1fr 0.9fr; gap: var(--space-16); } }
.field{ margin-bottom: var(--space-5); }
.field label{ display: block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-2); color: var(--color-text-muted); }
.field input, .field select{
  width: 100%; min-height: 48px; padding: 0 var(--space-4);
  background: var(--color-surface); border: 1px solid var(--color-border-strong); border-radius: var(--radius-sm);
  color: var(--color-text);
}
.field input:focus, .field select:focus{ border-color: var(--color-accent); }
.field input[type="file"]{ padding: 8px; }
.field input[type="file"]::file-selector-button{
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-right: 12px;
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.field input[type="file"]::file-selector-button:hover{ background: var(--color-bg-elevated); }
.field-row{ display: grid; gap: var(--space-4); grid-template-columns: 1fr 1fr; }
.summary-card{ background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); height: fit-content; }
.summary-line{ display: flex; justify-content: space-between; padding-block: var(--space-2); font-size: var(--fs-sm); color: var(--color-text-muted); }
.summary-line.total{ color: var(--color-text); font-weight: 700; font-size: var(--fs-md); border-top: 1px solid var(--color-border); margin-top: var(--space-3); padding-top: var(--space-4); }

.empty-state{ padding: var(--space-32) 0; text-align: center; }
.empty-state svg{ width: 64px; height: 64px; margin: 0 auto var(--space-6); color: var(--color-text-faint); }

/* =========================================================================
   Reveal-on-scroll base state (GSAP toggles .is-visible)
   ========================================================================= */
[data-reveal]{ opacity: 0; transform: translateY(28px); }
[data-reveal].is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; }
}

/* =========================================================================
   Trust panel — stands in for the review grid until real reviews exist.
   Every claim in it is verifiable, so it can sit there indefinitely without
   becoming a lie if reviews stay thin.
   ========================================================================= */
.trust-panel{ text-align: center; padding: var(--space-4) 0 0; }
.trust-grid{
  display: grid; gap: var(--space-4); text-align: left;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.trust-tile{
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.trust-tile:hover{ border-color: var(--color-border-strong); transform: translateY(-2px); }
.trust-ico{
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; font-size: 20px; line-height: 1;
  background: var(--color-surface-2); color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.trust-tile h3{
  font-size: var(--fs-md); color: var(--color-text);
  margin: 0 0 8px; line-height: 1.3;
}
.trust-tile p{
  font-size: var(--fs-sm); color: var(--color-text-muted);
  line-height: 1.65; margin: 0;
}
.trust-foot{
  margin-top: var(--space-6); font-size: var(--fs-sm); color: var(--color-text-muted);
}
.trust-foot a{ color: var(--color-accent); }

/* =========================================================================
   Trust row — under the buy button. Answers "is this a scam" before it's asked.
   ========================================================================= */
.buy-trust{
  list-style: none; margin: var(--space-4) 0 0; padding: var(--space-4);
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.buy-trust li{ display: flex; gap: 10px; align-items: flex-start; }
.buy-trust svg{
  width: 19px; height: 19px; flex: none; margin-top: 1px;
  color: var(--color-accent);
}
.buy-trust span{
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
  font-size: var(--fs-xs); color: var(--color-text-muted); line-height: 1.45;
}
.buy-trust strong{ font-size: var(--fs-sm); color: var(--color-text); font-weight: 600; }
@media (max-width: 480px){
  .buy-trust{ grid-template-columns: 1fr; }
}

/* =========================================================================
   Review display — header badge + homepage strip.
   Both are rendered from reviews.json and are absent entirely when it's empty.
   ========================================================================= */
.kk-stars{ color: var(--color-accent); letter-spacing: 1px; white-space: nowrap; }
.kk-stars .off{ color: var(--color-border-strong); }
.kk-stars-lg{ font-size: 1.4rem; letter-spacing: 3px; }

/* Header badge */
.kk-rating-badge{
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto; padding: 7px 13px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.kk-rating-badge:hover{ border-color: var(--color-accent); transform: translateY(-1px); }
.kk-rating-num{ font-weight: 700; color: var(--color-text); font-size: var(--fs-sm); }
.kk-rating-count{ color: var(--color-text-muted); font-size: var(--fs-xs); }
@media (max-width: 1400px){
  .kk-rating-count{ display: none; }
  .kk-rating-badge{ padding: 6px 10px; }
}

/* Homepage strip */
.reviews-featured{ padding: var(--space-16) 0; background: var(--color-bg-elevated); }
.rvf-head{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap; margin-bottom: var(--space-8);
}
.rvf-head h2{ margin: 8px 0 0; }
.rvf-agg{ display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.rvf-agg span{ color: var(--color-text-muted); font-size: var(--fs-sm); }
.rvf-agg strong{ color: var(--color-text); }
.rvf-grid{
  display: grid; gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.rvf-card{
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.rvf-text{
  color: var(--color-text); font-size: var(--fs-sm); line-height: 1.7;
  margin: 12px 0 14px;
}
.rvf-who{ color: var(--color-text-muted); font-size: var(--fs-xs); margin: 0; }
.rvf-cta{ margin-top: var(--space-8); }
.rvf-title{ color: var(--color-text); font-weight: 600; font-size: var(--fs-sm); margin: 12px 0 0; }
.rvf-title + .rvf-text{ margin-top: 6px; }

/* =========================================================================
   Customer photos on reviews. A buyer holding the actual shirt is the most
   convincing thing on the site, so give the images real estate.
   ========================================================================= */
.review-photos{ display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 4px; }
.review-photo{
  width: 84px; height: 84px; padding: 0; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden; background: var(--color-surface);
  cursor: pointer; transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.review-photo:hover{ border-color: var(--color-accent); transform: translateY(-2px); }
.review-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.review-lightbox{
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.9);
  display: grid; place-items: center; padding: 24px;
}
.review-lightbox img{
  max-width: min(92vw, 900px); max-height: 88vh;
  border-radius: var(--radius-lg); display: block;
}
.review-lightbox-close{
  position: absolute; top: 18px; right: 22px;
  background: none; border: 0; color: #fff; font-size: 38px; line-height: 1;
  cursor: pointer; padding: 4px 10px;
}

/* Photos on the homepage strip */
.rvf-photos{ display: flex; gap: 7px; margin: 12px 0 4px; }
.rvf-photos img{
  width: 66px; height: 66px; object-fit: cover; display: block;
  border-radius: var(--radius-md); border: 1px solid var(--color-border);
}

/* Honesty note above the review grid */
.review-pledge{
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
}
.review-pledge svg{ width: 22px; height: 22px; flex: none; color: var(--color-accent); margin-top: 2px; }
.review-pledge h3{ margin: 0 0 6px; font-size: var(--fs-md); color: var(--color-text); }
.review-pledge p{ margin: 0; font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.65; }

/* About page close — most About pages dead-end. Give people somewhere to go. */
.about-cta{ display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-8); }

/* =========================================================================
   Owner band on the homepage. Puts a face and a reason behind the shop before
   people bounce, and feeds them into the About story.
   ========================================================================= */
.owner-band{
  padding: var(--space-16) 0;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.owner-band .container{ max-width: 780px; text-align: center; }
.owner-quote{
  margin: var(--space-4) 0 var(--space-5);
  padding: 0;
  border: 0;
  font-size: clamp(1.35rem, 1.05rem + 1.3vw, 2rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--color-text);
}
.owner-line{
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  line-height: 1.7;
  margin: 0 auto var(--space-6);
  max-width: 56ch;
}
.owner-link{
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--color-accent); font-weight: 600; font-size: var(--fs-sm);
  text-decoration: none;
}
.owner-link svg{ width: 17px; height: 17px; transition: transform var(--dur-fast); }
.owner-link:hover svg{ transform: translateX(4px); }

/* Authenticity line on the homepage review strip. People need to be told the
   reviews are real, right where they're reading them. */
.rvf-pledge{
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); margin: 0 0 var(--space-6);
  font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.6;
}
.rvf-pledge svg{ width: 19px; height: 19px; flex: none; color: var(--color-accent); margin-top: 2px; }
.rvf-pledge a{ color: var(--color-accent); white-space: nowrap; }

/* .rvf-agg span sets muted grey for the "from N reviews" text, but it also
   caught the star row (class+element beats a bare class). Put the stars back. */
.rvf-agg .kk-stars{ color: var(--color-accent); }
.rvf-agg .kk-stars .off{ color: var(--color-border-strong); }

/* Two links under the owner quote — the story, and the reviews. */
.owner-links{ display: flex; gap: var(--space-6); justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px){ .owner-links{ gap: var(--space-3); flex-direction: column; align-items: center; } }
