/** Shopify CDN: Minification failed

Line 2491:0 All "@import" rules must come first
Line 3429:9 Expected identifier but found whitespace
Line 3429:11 Unexpected "{"
Line 3429:20 Expected ":"
Line 3429:56 Expected ":"

**/
/* ============================================================
   TheKitWorld — Shopify Theme CSS
   Compiled from TanStack source (src/styles.css)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --ink:          #111111;
  --ivory:        #ffffff;

  /* Brand gradient — pink → red → orange */
  --brand-from:   #e8186d;
  --brand-mid:    #f03050;
  --brand-to:     #ff6b35;
  --brand-grad:   linear-gradient(135deg, #e8186d 0%, #f03050 50%, #ff6b35 100%);
  --brand-grad-h: linear-gradient(135deg, #d01460 0%, #d92848 50%, #e85e2e 100%);

  /* Legacy aliases (keeps existing references working) */
  --gold:         #e8186d;
  --gold-light:   #ff6b35;
  --blue-fifa:    #e8186d;
  --red-urgency:  #f03050;

  --sand:         #f9f9f9;
  --gray-warm:    #6b7280;

  --font-display: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-label:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius:       0.375rem;
  --radius-sm:    0.25rem;
  --radius-lg:    0.5rem;

  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: rgba(17,17,17,0.1); }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ivory); }

/* ── Utilities ──────────────────────────────────────────────── */
.container-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 1440px;
}
@media (min-width: 1024px) {
  .container-wide { padding-inline: 2.5rem; }
}

.font-label {
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.font-display { font-family: var(--font-display); }

.text-gold    { color: var(--gold); }
.text-ivory   { color: var(--ivory); }
.text-ink     { color: var(--ink); }
.bg-ink       { background-color: var(--ink); }
.bg-gold      { background-color: var(--gold); }
.bg-sand      { background-color: var(--sand); }
.bg-white     { background-color: var(--ivory); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background: var(--brand-grad);
  color: var(--ivory);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Header ─────────────────────────────────────────────────── */

/* Sticky wrapper — keeps announcement bar + header together */
.shopify-section--header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  overflow: visible;
}

/* Wrapper needed to contain absolute mega-menu relative to header */
.site-header .container-wide {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 3.25rem;
}

@media (min-width: 1024px) {
  .header-inner { height: 4.5rem; gap: 1rem; }
}

.header-logo-img {
  display: block;
  max-height: 36px;
  width: auto !important;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .header-logo-img { max-height: 44px; }
}

.header-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.header-logo span {
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 0;
  height: 100%;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 0.875rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.highlight { color: var(--gold); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #fff;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 24px 60px rgba(17,17,17,0.13);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: none;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  z-index: 200;
  max-height: 70vh;
  overflow-y: auto;
}

.nav-item { position: static; }
.nav-item:hover .mega-menu,
.mega-menu:hover { display: flex; }

/* Collection header — blue styled */
.mega-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(232,24,109,0.15);
  padding-bottom: 0.5rem;
}

.mega-col { min-width: 130px; }
.mega-col ul { display: flex; flex-direction: column; gap: 0.35rem; }

/* Sub-collection links — black with logo */
.mega-col ul a,
.mega-item-link {
  font-size: 0.8125rem;
  color: #111;
  transition: color var(--transition-base);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-col ul a:hover,
.mega-item-link:hover { color: var(--gold); }

/* Logo container shared styles */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Flag: rectangular */
.nav-logo--flag {
  width: 26px;
  height: 18px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.nav-logo--flag img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  display: block;
}

/* Club crest: circular */
.nav-logo--crest {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(17,17,17,0.04);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.nav-logo--crest img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* Fallback jersey icon */
.nav-logo--fallback {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(17,17,17,0.05);
}

/* Logo in col title (group/league header) */
.mega-col-title .nav-logo--flag img { width: 20px; height: 13px; }
.mega-col-title .nav-logo--flag { width: 20px; height: 13px; }
.mega-col-title .nav-logo--crest { width: 20px; height: 20px; }
.mega-col-title .nav-logo--fallback { width: 18px; height: 18px; }

.mega-feature {
  background: var(--ink);
  color: var(--ivory);
  padding: 1.5rem;
  min-width: 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: flex-start;
}

.mega-feature-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.mega-feature-caption {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* Header icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: var(--radius);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
}

.header-icon-btn:hover { color: var(--gold); background: rgba(232,24,109,0.06); }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--brand-grad);
  color: white;
  border-radius: 50%;
  font-size: 9px;
  font-family: var(--font-label);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ── Locale / Currency switcher ─────────────────────────────── */
.locale-switcher {
  position: relative;
}

.locale-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.375rem 0.625rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 4px;
  white-space: nowrap;
  transition: border-color var(--transition-base), color var(--transition-base);
  height: 2rem;
}
.locale-switcher-btn:hover { border-color: var(--gold); color: var(--gold); }
.locale-switcher-label { letter-spacing: 0.08em; }

.locale-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 1rem;
  z-index: 500;
}
.locale-dropdown.open { display: block; }

.locale-dropdown-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(17,17,17,0.4);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
}

.locale-select {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid rgba(17,17,17,0.15);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  appearance: auto;
}
.locale-select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

/* Mobile locale */
.mobile-locale-wrap {
  padding: 1rem 1.25rem 0;
  border-top: 1px solid rgba(17,17,17,0.06);
}
.mobile-locale-form { display: flex; flex-direction: column; gap: 0.625rem; }
.mobile-locale-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 6px;
  color: rgba(17,17,17,0.5);
}
.mobile-locale-select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}

/* ── Checkout button improvements ──────────────────────────── */
.btn-cart-checkout {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--brand-grad);
  color: white !important;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity var(--transition-base), transform var(--transition-base);
  border-radius: 10px;
}
.btn-cart-checkout:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
/* ── Mobile menu button ──────────────────────────────────────── */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  color: var(--ink);
  flex-shrink: 0;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* ── Mobile nav drawer ───────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav {
  position: fixed;
  top: 0; left: -100%;
  width: min(90vw, 400px);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 400;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { left: 0; }

/* Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(17,17,17,0.08);
  position: sticky; top: 0;
  background: #fff;
  z-index: 1;
}
.mobile-nav-close {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  background: rgba(17,17,17,0.06);
}

/* Level 1 items */
.mobile-nav-item {
  border-bottom: 1px solid rgba(17,17,17,0.06);
}
.mobile-nav-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  gap: 0.5rem;
}
.mobile-nav-toggle.highlight { color: var(--gold); }
.mobile-chevron { flex-shrink: 0; transition: transform 0.25s; }
[aria-expanded="true"] > .mobile-chevron,
[aria-expanded="true"] .mobile-chevron { transform: rotate(180deg); }

/* Level 1 subnav */
.mobile-subnav {
  display: none;
  background: rgba(17,17,17,0.02);
  border-top: 1px solid rgba(17,17,17,0.06);
}
.mobile-subnav.open { display: block; }

.mobile-viewall {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border-bottom: 1px solid rgba(17,17,17,0.06);
}
.mobile-viewall--sm {
  font-size: 10px;
  padding: 0.5rem 1.75rem;
  border-bottom: none;
  border-top: 1px solid rgba(17,17,17,0.06);
  color: rgba(232,24,109,0.7);
}

/* Level 2 section (Group A, LaLiga, Europe…) */
.mobile-subnav-section {
  border-bottom: 1px solid rgba(17,17,17,0.05);
}
.mobile-subnav-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-align: left;
  gap: 0.5rem;
}
.mobile-subnav-toggle-inner {
  display: flex; align-items: center; gap: 0.5rem;
}

/* Level 2 children (nations/clubs) */
.mobile-subnav-children {
  display: none;
  background: rgba(17,17,17,0.02);
  padding: 0 0 0.5rem;
}
.mobile-subnav-children.open { display: block; }

/* Level 3 / flat-L2 links with logo */
.mobile-item-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 1.75rem;
  font-size: 0.875rem;
  color: #111;
}
.mobile-item-link--l2 {
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}
.mobile-item-link:active { background: rgba(17,17,17,0.04); }

/* Bottom utility links */
.mobile-nav-footer-links {
  margin-top: auto;
  padding: 1.25rem;
  border-top: 1px solid rgba(17,17,17,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mobile-nav-footer-links a {
  font-size: 0.8125rem;
  color: rgba(17,17,17,0.6);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(17,17,17,0.04);
  text-align: center;
}

/* ── Global mobile resets ────────────────────────────────────── */
@media (max-width: 1023px) {
  /* Hide desktop nav */
  .header-nav { display: none !important; }
  /* Mega-menu never shows on mobile */
  .mega-menu { display: none !important; }
}

/* ── Announcement bar ────────────────────────────────────────── */
@media (max-width: 639px) {
  .announcement-bar {
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ── Hero section ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { min-height: 85vh; }
  .hero-content { padding: 2rem 1.25rem 5rem; }
  .hero-eyebrow { font-size: 9px; }
  .hero-heading { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.1; }
  .hero-sub { font-size: 0.9rem; max-width: 90%; }
  .hero-ctas { flex-wrap: wrap; gap: 0.75rem; }
  .hero-ctas .btn { flex: 1 1 140px; text-align: center; justify-content: center; padding: 0.875rem 1rem; font-size: 11px; }
  .hero-stats { gap: 1.5rem; padding: 1rem 1.25rem; flex-wrap: wrap; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-stat-label { font-size: 9px; }
  .countdown-wrap { gap: 0.5rem; }
  .countdown-block { min-width: 3.5rem; padding: 0.5rem 0.625rem; }
  .countdown-digit { font-size: 1.75rem; }
  .countdown-label { font-size: 7px; }
}

/* ── Section headings ────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-eyebrow { font-size: 9px; }
  .section-heading { font-size: clamp(1.5rem, 6vw, 2.25rem); }
}

/* ── Product grid / cards ────────────────────────────────────── */
@media (max-width: 639px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .product-card-info { padding: 0.625rem 0.5rem; }
  .product-card-title { font-size: 0.8125rem; }
  .product-card-price { font-size: 0.8125rem; }
  .product-card-type { font-size: 9px; }
  .product-card-badge { font-size: 8px; padding: 0.2rem 0.4rem; }
  .quick-add-btn { font-size: 9px; padding: 0.5rem; letter-spacing: 0.05em; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .product-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ── Multi-buy section ───────────────────────────────────────── */
@media (max-width: 767px) {
  .multi-buy-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .multi-buy-deal { padding: 1.25rem !important; }
  .multi-buy-heading { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
}

/* ── Featured collections grid ───────────────────────────────── */
@media (max-width: 639px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .collection-card-title { font-size: 0.875rem; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── World Cup groups ────────────────────────────────────────── */
@media (max-width: 767px) {
  .wc-groups-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.625rem !important; }
  .wc-group-card { padding: 0.875rem !important; }
  .wc-group-label { font-size: 9px; }
  .wc-group-name { font-size: 1.125rem; }
}

/* ── Leagues / clubs / nations logo grid ────────────────────── */
@media (max-width: 767px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.75rem !important; }
  .logo-item-name { font-size: 9px; }
}

/* ── Personalisation section ─────────────────────────────────── */
@media (max-width: 767px) {
  .personalisation-grid { grid-template-columns: 1fr !important; }
  .personalisation-kit { display: none; } /* hide kit mock-up on mobile */
  .personalisation-copy { padding: 2rem 1.25rem !important; }
}

/* ── Players strip ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .players-strip { padding: 2rem 0 !important; }
  .players-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .player-card { padding: 1.5rem 1.25rem !important; }
  .player-number { font-size: 6rem !important; }
  .player-name { font-size: 1.25rem !important; }
}

/* ── Feature duo ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .feature-duo-grid { grid-template-columns: 1fr !important; }
  .feature-card { padding: 2rem 1.25rem !important; }
  .feature-card-heading { font-size: 1.625rem !important; }
}

/* ── Reviews ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .reviews-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Why choose us ───────────────────────────────────────────── */
@media (max-width: 639px) {
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-item { padding: 1.25rem 1rem !important; }
  .why-title { font-size: 0.8125rem !important; }
  .why-desc { font-size: 0.75rem !important; }
}

/* ── Newsletter ──────────────────────────────────────────────── */
@media (max-width: 639px) {
  .newsletter-form { flex-direction: column !important; }
  .footer-newsletter-input,
  .footer-newsletter-btn { width: 100% !important; border-radius: var(--radius-sm) !important; }
}

/* ── Instagram grid ──────────────────────────────────────────── */
@media (max-width: 639px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 2px !important; }
}

/* ── Footer ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-col-heading { font-size: 11px; margin-bottom: 0.75rem; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center;
  }
  .footer-payment-methods { justify-content: center; flex-wrap: wrap; }
  .footer-socials { justify-content: flex-start; }
  .footer-newsletter-input { width: 100%; }
}

/* ── Cart page ───────────────────────────────────────────────── */
@media (max-width: 767px) {
  .cart-page-grid { grid-template-columns: 1fr !important; }
  .cart-page-grid > div:last-child {
    position: sticky; bottom: 0;
    border-top: 2px solid rgba(17,17,17,0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 10;
  }
}

/* ── Cart drawer ─────────────────────────────────────────────── */
@media (max-width: 479px) {
  [data-cart-drawer] { width: 100vw !important; right: -100vw !important; }
  [data-cart-drawer].open { right: 0 !important; }
}

/* ── Collection page ─────────────────────────────────────────── */
@media (max-width: 639px) {
  .collection-toolbar { flex-wrap: wrap; gap: 0.5rem; }
  .filter-label { font-size: 10px; }
  .breadcrumb { font-size: 0.6875rem; }
}

/* ── Product page ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .product-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
  .product-gallery { position: static !important; }
  .product-gallery-thumbs { display: flex; flex-direction: row !important; gap: 0.5rem; overflow-x: auto; margin-top: 0.5rem; }
  .product-gallery-thumbs img { width: 64px !important; height: 64px !important; flex-shrink: 0; }
  .product-info { padding: 1.25rem !important; }
  .product-title { font-size: 1.375rem !important; }
  .variant-picker { gap: 0.5rem; }
  .variant-btn { min-width: 2.75rem; min-height: 2.75rem; font-size: 0.875rem; }
}

/* ── Marquee / ticker ────────────────────────────────────────── */
@media (max-width: 639px) {
  .marquee-text { font-size: clamp(2rem, 10vw, 3.5rem) !important; }
}

/* ── Tap target minimum size (boutons uniquement, pas les liens inline) ── */
@media (max-width: 1023px) {
  .btn, .header-icon-btn, .mobile-menu-btn,
  .mobile-nav-toggle, .mobile-subnav-toggle,
  .cart-qty-btn, .variant-btn, .quick-add-btn {
    min-height: 44px;
  }
}

/* ── Search overlay ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .search-form { flex-direction: column; gap: 0.75rem; }
  .search-input { font-size: 1rem; padding: 0.875rem 1rem; }
}

/* Search overlay */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.9);
  z-index: 500;
  align-items: flex-start;
  padding-top: 6rem;
}

.search-overlay.open { display: flex; }

.search-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 0;
}

.search-input {
  flex: 1;
  height: 3.5rem;
  background: var(--ivory);
  border: none;
  padding: 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  outline: none;
  color: var(--ink);
}

.search-submit {
  height: 3.5rem;
  width: 3.5rem;
  background: var(--brand-grad);
  color: white;
  display: flex; align-items: center; justify-content: center;
}

/* Cart drawer */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 600;
}

.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(100vw, 420px);
  height: 100%;
  background: var(--ivory);
  z-index: 700;
  display: flex; flex-direction: column;
  transition: right var(--transition-smooth);
}

.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.cart-drawer-title {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-drawer-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(17,17,17,0.5);
  font-size: 0.875rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.06);
}

.cart-item-image {
  width: 72px; height: 72px;
  object-fit: cover;
  background: var(--sand);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--gray-warm);
  margin-top: 0.25rem;
}

.cart-item-price {
  font-family: var(--font-label);
  font-size: 13px;
  margin-top: 0.5rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-qty-btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(17,17,17,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.cart-qty-btn:hover { background: var(--brand-grad); color: white; border-color: transparent; }

.cart-qty-num {
  min-width: 2rem;
  text-align: center;
  font-family: var(--font-label);
  font-size: 13px;
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* btn-cart-checkout defined above */

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-grad);
  color: var(--ivory);
  padding: 0.875rem 1.75rem;
  font-size: 11px;
  border-radius: 10px;
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  border: 1px solid currentColor;
  padding: 0.875rem 1.75rem;
  font-size: 11px;
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.875rem 1.75rem;
  font-size: 11px;
}

.btn-outline-gold:hover { background: var(--gold); color: white; }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.875rem 1.75rem;
  font-size: 11px;
}

.btn-outline-white:hover { background: white; color: var(--ink); border-color: white; }

/* ── Sections base ───────────────────────────────────────────── */
.section { width: 100%; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: contrast(1.15) saturate(1.2) brightness(0.95);
}

.hero-overlay-lr {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 50%, rgba(17,17,17,0.3) 100%);
}

.hero-overlay-tb {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.4) 0%, transparent 50%, rgba(17,17,17,1) 100%);
}

.hero-spotlight-l {
  pointer-events: none;
  position: absolute;
  top: -8rem; left: 25%;
  width: 400px; height: 700px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0.05), transparent);
  filter: blur(3rem);
  transform: rotate(12deg);
}

.hero-spotlight-r {
  pointer-events: none;
  position: absolute;
  top: -8rem; right: 25%;
  width: 400px; height: 700px;
  background: linear-gradient(to bottom, rgba(232,24,109,0.3), rgba(232,24,109,0.05), transparent);
  filter: blur(3rem);
  transform: rotate(-12deg);
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(232,24,109,0.15);
  filter: blur(3rem);
}

.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-heading {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: white;
  max-width: 720px;
  text-wrap: balance;
}

.hero-heading .gold-italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Countdown */
.hero-countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.countdown-box {
  text-align: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 70px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.countdown-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.hero-bottom-strip {
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

/* ── Multi-buy Banner ────────────────────────────────────────── */
.multi-buy {
  background: var(--ink);
  color: white;
  padding: 3rem 0 3.5rem;
}

.multi-buy-eyebrow {
  text-align: center;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.multi-buy-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-top: 0.75rem;
  color: white;
}

.multi-buy-heading span { color: var(--gold); }

.multi-buy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .multi-buy-grid { grid-template-columns: repeat(3, 1fr); }
}

.multi-buy-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition-base);
}

.multi-buy-card:hover { border-color: var(--gold); }

.multi-buy-qty {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.multi-buy-buy {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.3em;
  margin-top: 0.75rem;
}

.multi-buy-offer {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 0.75rem;
}

.multi-buy-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.multi-buy-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Featured Collections (Categories) ──────────────────────── */
.featured-collections { background: var(--ivory); }

.section-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-top: 0.5rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(4, 1fr); }
}

.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 3/4;
  display: block;
}

.collection-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.collection-card:hover .collection-card-img { transform: scale(1.05); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.8) 0%, rgba(17,17,17,0.1) 60%);
}

.collection-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.collection-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.collection-card-count {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 0.25rem;
}

.collection-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand);
  color: rgba(17,17,17,0.2);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
}

/* ── Product Grid ─────────────────────────────────────────────── */
.featured-products {}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .products-grid { gap: 1rem; }
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ── Product Card (.pkc) — Kitbag style ──────────────────────── */
/* White card · top-right + button · stars · title/sub · bottom bar */

.pkc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--ink);
}
.pkc:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* ── Top-right "+" button ── */
.pkc__plus {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 4px 0 4px;
  z-index: 10;
  transition: background 0.2s;
}
.pkc__plus:hover { background: var(--brand-from); }

/* ── Top-left badges ── */
.pkc__badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pkc__badge {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.pkc__badge--new  { background: #111; color: #fff; }
.pkc__badge--sale { background: var(--brand-from); color: #fff; }
.pkc__badge--soldout { background: var(--gray-warm); color: #fff; }

/* ── Image area ── */
.pkc__img-wrap {
  background: #f7f7f7;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
}
.pkc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
  display: block;
}
.pkc:hover .pkc__img { transform: scale(1.04); }

.pkc__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.18);
  aspect-ratio: 1 / 1;
}

/* ── Info ── */
.pkc__info {
  padding: 0.5rem 0.875rem 0.625rem;
  flex: 1;
}

/* Stars */
.pkc__stars {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}
.pkc__star-icons {
  color: #f59e0b;
  font-size: 0.8125rem;
  letter-spacing: 1px;
}
.pkc__star-count {
  font-size: 0.6875rem;
  color: var(--gray-warm);
}

.pkc__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.pkc__sub {
  font-size: 0.8125rem;
  color: var(--gray-warm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Bottom bar ── */
.pkc__bar {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(0,0,0,0.08);
  min-height: 48px;
}

/* Left: accent + CTA text */
.pkc__bar-cta {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.pkc__bar-accent {
  width: 4px;
  align-self: stretch;
  background: var(--brand-from);
  flex-shrink: 0;
  display: block;
}
.pkc__bar-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(17,17,17,0.4);
  padding: 0 0.75rem;
  white-space: nowrap;
}

/* Right: price */
.pkc__bar-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  border-left: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.pkc__price-now {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}
.pkc__price-now--sale { color: var(--brand-from); }
.pkc__price-was {
  font-size: 0.6875rem;
  color: #999;
  text-decoration: line-through;
}

/* ── Mobile ── */
@media (max-width: 639px) {
  .pkc__title { font-size: 0.75rem; line-height: 1.25; }
  .pkc__sub { font-size: 0.625rem; }
  .pkc__info { padding: 0.4rem 0.5rem 0.5rem; }
  .pkc__stars { margin-bottom: 0.2rem; gap: 0.2rem; }
  .pkc__star-icons { font-size: 0.6875rem; }
  .pkc__star-count { font-size: 0.5625rem; }
  .pkc__bar { min-height: 38px; }
  .pkc__bar-label { font-size: 8px; letter-spacing: 0.08em; padding: 0 0.35rem; }
  .pkc__price-now { font-size: 0.8125rem; }
  .pkc__bar-price { padding: 0.3rem 0.4rem; }
  .pkc__bar-accent { width: 3px; }
  .pkc__plus { width: 32px; height: 32px; }
  .pkc__plus svg { width: 11px; height: 11px; }
}

/* Legacy aliases */
.pc { display: flex; flex-direction: column; }
.product-card { display: block; }
.quick-add-btn {
  width: 100%; height: 2.75rem;
  background: var(--brand-grad); color: white;
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.25em;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition-base);
}
.quick-add-btn:hover { opacity: 0.88; }
.price-compare { color: var(--gray-warm); text-decoration: line-through; margin-right: 0.375rem; }

/* ── Section header ───────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-view-all {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ── World Cup Groups ─────────────────────────────────────────── */
.world-cup-groups {
  background: var(--sand);
  padding: 5rem 0 6rem;
}

.groups-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,24,109,0.08);
  border: 1px solid rgba(232,24,109,0.2);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .groups-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .groups-grid { grid-template-columns: repeat(6, 1fr); }
}

.group-card {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(17,17,17,0.08);
  background: white;
  box-shadow: 0 1px 4px rgba(17,17,17,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all var(--transition-base);
}

.group-card:hover {
  box-shadow: 0 16px 48px rgba(17,17,17,0.12);
  transform: translateY(-4px);
}

.group-card-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.group-card-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  transition: color var(--transition-base);
}

.group-card:hover .group-card-letter { color: var(--gold); }

/* ── Leagues / Clubs / Nations Grids ─────────────────────────── */
.leagues-grid, .clubs-grid, .nations-grid {}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .logos-grid { grid-template-columns: repeat(5, 1fr); }
}

.logo-card {
  aspect-ratio: 1;
  border: 1px solid rgba(17,17,17,0.08);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all var(--transition-base);
}

.logo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(232,24,109,0.10);
}

.logo-card-emoji { font-size: 2.25rem; line-height: 1; }

.logo-card-name {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ── Players Strip ────────────────────────────────────────────── */
.players-strip {
  background: var(--ink);
  color: white;
  padding: 4rem 0 6rem;
}

.players-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .players-grid { grid-template-columns: repeat(2, 1fr); }
}

.player-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  display: block;
  transition: transform var(--transition-smooth);
}

.player-card:hover { transform: scale(1.01); }

.player-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.player-card-bg-glow {
  position: absolute;
  top: -5rem; right: -5rem;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  filter: blur(3rem);
}

.player-card-num {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 15vw, 14rem);
  line-height: 1;
  color: rgba(255,255,255,0.12);
  user-select: none;
  font-weight: 700;
}

.player-card-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.player-card-club {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.player-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
}

.player-card-cta {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.7);
}

/* ── Personalisation Showcase ────────────────────────────────── */
.personalisation {
  background: var(--sand);
  padding: 4rem 0 5rem;
}

.personalisation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .personalisation-grid { grid-template-columns: 1fr 1fr; }
}

.personalisation-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(17,17,17,0.8);
}

.personalisation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.personalisation-list .dot { color: var(--gold); margin-top: 0.3rem; }

.personalisation-mock {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--blue-fifa);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.personalisation-mock-dots {
  position: absolute; inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 20px 20px;
}

.personalisation-mock-content { text-align: center; position: relative; z-index: 1; }

.personalisation-mock-team {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.personalisation-mock-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 1rem;
}

.personalisation-mock-number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 15rem);
  line-height: 0.9;
  color: var(--gold);
  font-weight: 700;
}

.personalisation-mock-preview {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
}

/* ── Feature Duo ─────────────────────────────────────────────── */
.feature-duo {
  background: white;
  padding: 4rem 0 5rem;
}

.feature-duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .feature-duo-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: white;
}

.feature-card-bg {
  position: absolute; inset: 0;
  transition: transform var(--transition-smooth);
}

.feature-card:hover .feature-card-bg { transform: scale(1.05); }

.feature-card-content { position: relative; z-index: 1; }

.feature-card-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: 0.5rem;
}

.feature-card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
}

.feature-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.feature-stat-num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  transition: opacity var(--transition-base);
}

.feature-card-cta:hover { opacity: 0.7; }

/* ── Why Choose Us ────────────────────────────────────────────── */
.why-choose-us {
  background: white;
  border-top: 1px solid rgba(17,17,17,0.08);
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-item {
  padding: 2.5rem;
  border-right: 1px solid rgba(17,17,17,0.08);
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

@media (min-width: 1024px) {
  .why-item:last-child { border-right: none; }
}

.why-icon { color: var(--gold); margin-bottom: 1.25rem; }

.why-title {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.why-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(17,17,17,0.55);
  line-height: 1.6;
}

/* ── Reviews ──────────────────────────────────────────────────── */
.reviews { background: var(--sand); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: white;
  padding: 1.75rem;
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 2px 8px rgba(17,17,17,0.04);
}

.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; }

.review-text {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(17,17,17,0.75);
  font-style: italic;
}

.review-author {
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-warm);
}

/* ── Newsletter ───────────────────────────────────────────────── */
.newsletter {
  background: var(--ink);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: white;
}

.newsletter-sub {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 2rem auto 0;
}

.newsletter-input {
  flex: 1;
  height: 3rem;
  padding: 0 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-input:focus { border-color: var(--gold); }

.newsletter-submit {
  height: 3rem;
  padding: 0 1.5rem;
  background: var(--brand-grad);
  color: white;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition-base);
}

.newsletter-submit:hover { background: var(--gold-light); }

.newsletter-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── Instagram Gallery ────────────────────────────────────────── */
.instagram-gallery { padding: 4rem 0; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
}

.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(17,17,17,0.3);
}

.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.ig-item:hover img { transform: scale(1.05); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(232,24,109,0.2);
  color: white;
}

.footer-main {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 2.5rem; }
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-brand-logo span {
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-social-btn {
  width: 2.5rem; height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  transition: all var(--transition-base);
}

.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); }

.footer-col-heading {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-newsletter-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.875rem;
  outline: none;
  margin-top: 0.75rem;
}

.footer-newsletter-input:focus { border-color: var(--gold); }

.footer-newsletter-btn {
  width: 100%;
  height: 2.75rem;
  background: var(--gold);
  color: white;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  transition: background var(--transition-base);
}

.footer-newsletter-btn:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-payment-methods {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

/* ── Collection page ─────────────────────────────────────────── */
.collection-hero {
  background: var(--ink);
  color: white;
  padding: 2rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .collection-hero { padding: 3rem 0; }
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.collection-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

.collection-content-wrap {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .collection-content-wrap { padding-top: 2rem; padding-bottom: 4rem; }
}

.collection-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.08);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .collection-filter-bar { gap: 0.75rem; padding: 1rem 0; margin-bottom: 1.5rem; }
}

.filter-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-warm);
  text-transform: uppercase;
}

.filter-btn {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(17,17,17,0.12);
  color: var(--ink);
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ── Product page ────────────────────────────────────────────── */
/* ── Veloria-style Product Page ─────────────────────────────── */
.vp-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 6rem;   /* bottom space for sticky CTA on mobile */
}

/* ══ PRODUCT PAGE — STYLE UGG/VELORIA EXACT ═════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');

/* Conteneur avec padding latéral 12px */
.ugg-container {
  padding-left: 12px;
  padding-right: 12px;
}

/* Header flex : gauche (titre+sous) | droite (prix) */
.ugg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-family: 'Acme', sans-serif;
}

/* Bloc gauche */
.ugg-left {
  flex: 1;
  min-width: 0;
  max-width: 70%;
}

/* Titre produit */
.ugg-title {
  font-family: 'Acme', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

/* Étoiles + feu + ventes */
.ugg-sub {
  font-family: 'Acme', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #8c857a;
  margin-top: 2px;
  letter-spacing: 0.3px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Bloc prix — droite */
.ugg-price {
  font-family: 'Acme', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Prix promo (en haut) */
.ugg-price__sale {
  font-family: 'Acme', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

/* Prix barré (en bas) */
.ugg-price__compare {
  font-family: 'Acme', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8c857a;
  text-decoration: line-through;
  line-height: 1;
}

/* ── Gallery ─────────────────────── */
.vp-gallery { margin: 0; }

.vp-gallery-main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ededed;
}

.vp-gallery-img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.vp-gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17,17,17,0.2);
}

/* ── Miniatures carrées — Veloria ─── */
.vp-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid rgba(17,17,17,0.09);
}
.vp-thumbs::-webkit-scrollbar { display: none; }

.vp-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  border: 1.5px solid rgba(17,17,17,0.15);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.vp-thumb.active {
  border: 2.5px solid #3a7c3a;
}

.vp-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
}

/* ── Option (encadrée — Veloria) ──── */
.vp-option {
  padding: 0.875rem 1rem;
}

/* Carte avec bordure arrondie autour de chaque option */
.vp-option-card {
  border: 1.5px solid rgba(17,17,17,0.14);
  border-radius: 10px;
  padding: 0.875rem 1rem;
}

.vp-option-label {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.vp-option-label strong {
  font-weight: 700;
  color: #111;
}

.vp-option-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Taille buttons ──────────────── */
.vp-size-btn {
  min-width: 3.5rem;
  height: 3rem;
  padding: 0 0.875rem;
  border: 1.5px solid rgba(17,17,17,0.2);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  background: white;
  cursor: pointer;
  transition: all 0.18s;
}

.vp-size-btn:hover { border-color: #111; }

.vp-size-btn.selected {
  background: #111;
  border-color: #111;
  color: white;
}

.vp-size-btn.unavailable {
  color: rgba(17,17,17,0.25);
  text-decoration: line-through;
  border-color: rgba(17,17,17,0.09);
  cursor: default;
}

/* ── Swatches CARRÉS — Veloria ────── */
.vp-option-btns--color { gap: 0.625rem; }

.vp-swatch {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid rgba(17,17,17,0.15);
  cursor: pointer;
  transition: border-color 0.18s;
  background-color: #ccc;
  flex-shrink: 0;
}

.vp-swatch:hover {
  border-color: rgba(17,17,17,0.4);
}

.vp-swatch.selected {
  border: 2.5px solid #3a7c3a;
  box-shadow: 0 0 0 1.5px #3a7c3a;
}

.vp-swatch.unavailable {
  opacity: 0.3;
  cursor: default;
}

/* Stock indicator */
.vp-stock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--ink);
}

.vp-stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.vp-stock--out { color: var(--gray-warm); }
.vp-stock-dot--out { background: var(--gray-warm); }

/* Personalisation */
.vp-personalisation {
  margin: 0 1rem 0;
  padding: 1rem;
  background: var(--sand);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 10px;
}

.vp-personalisation-title {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.vp-field-label {
  font-size: 0.75rem;
  color: var(--gray-warm);
  display: block;
  margin-bottom: 0.25rem;
}

.vp-field-input {
  width: 100%; height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  outline: none;
  background: white;
}

/* Sticky CTA */
.vp-cta-wrap {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(17,17,17,0.08);
  z-index: 100;
}

.vp-cta {
  width: 100%;
  height: 3.75rem;
  background: linear-gradient(135deg, #e8186d 0%, #f03 50%, #ff6b35 100%);
  color: white;
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.vp-cta:hover { opacity: 0.92; }
.vp-cta:disabled { background: var(--gray-warm); cursor: not-allowed; }

.vp-cta-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vp-cta-sub {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Trust badges */
.vp-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding: 0.875rem 1rem;
  background: #f7f7f7;
  border-radius: 10px;
}

.vp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.425rem;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.65);
  white-space: nowrap;
}

.vp-trust-item svg {
  flex-shrink: 0;
  color: rgba(17,17,17,0.45);
}

.vp-trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(17,17,17,0.12);
  flex-shrink: 0;
}

/* Description */
.vp-description {
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(17,17,17,0.07);
}

.vp-section-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 0.875rem;
  color: var(--gray-warm);
}

.vp-desc-body {
  font-size: 0.9375rem;
  color: rgba(17,17,17,0.75);
  line-height: 1.7;
}

/* Desktop — 2-col layout */
@media (min-width: 1024px) {
  .vp-wrap {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0 3rem;
    padding-bottom: 4rem;
    align-items: start;
  }

  /* Gallery spans first column rows 1-3 */
  .vp-gallery { grid-column: 1; grid-row: 1 / 5; }

  /* All detail sections in column 2 */
  .vp-top { grid-column: 2; grid-row: 1; padding-left: 0; }
  .vp-option { grid-column: 2; }
  .vp-stock { grid-column: 2; padding-left: 0; }
  .vp-personalisation { grid-column: 2; margin: 0 0 0; }
  .vp-cta-wrap { grid-column: 2; }
  .vp-trust { grid-column: 2; }
  .vp-description { grid-column: 2; padding-left: 0; }

  /* On desktop: CTA is not fixed/sticky — it's inline */
  .vp-cta-wrap {
    position: static;
    padding: 1rem 0 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
  }

  .vp-wrap { padding-bottom: 4rem; }
}

/* Legacy aliases for backward compat */
.product-page { padding: 0; }
.product-page-grid { display: block; }
.product-gallery-main { aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; overflow-x: auto; }
.product-gallery-thumb { width: 80px; height: 80px; flex-shrink: 0; overflow: hidden; background: var(--sand); cursor: pointer; border: 2px solid transparent; }
.product-gallery-thumb.active { border-color: var(--gold); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-details-title { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; }
.product-details-price { font-family: var(--font-label); font-size: 1.25rem; letter-spacing: 0.05em; color: var(--gold); margin-top: 0.75rem; }
.product-variants { margin-top: 1.5rem; }
.variant-label { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.15em; margin-bottom: 0.625rem; }
.variant-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-btn { min-width: 3rem; height: 2.5rem; padding: 0 0.875rem; border: 1px solid rgba(17,17,17,0.15); font-family: var(--font-label); font-size: 12px; letter-spacing: 0.1em; color: var(--ink); transition: all var(--transition-base); border-radius: var(--radius-sm); }
.variant-btn:hover, .variant-btn.selected { background: var(--brand-grad); border-color: transparent; color: white; }
.variant-btn.unavailable { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }
.product-add-to-cart { margin-top: 1.5rem; width: 100%; height: 3.5rem; background: var(--gold); color: white; font-family: var(--font-label); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: background var(--transition-base); }
.product-add-to-cart:hover { background: var(--gold-light); }
.product-add-to-cart:disabled { opacity: 0.5; cursor: not-allowed; }
.product-trust-badges { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(17,17,17,0.08); }
.trust-badge { text-align: center; font-size: 0.75rem; color: rgba(17,17,17,0.65); line-height: 1.4; }
.trust-badge-icon { font-size: 1.25rem; display: block; margin-bottom: 0.375rem; }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-warm);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.06);
  margin-bottom: 2rem;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.25rem; opacity: 0.4; }

/* ── Pagination ───────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.pagination a, .pagination span {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(17,17,17,0.12);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.pagination a:hover, .pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ── Animations ───────────────────────────────────────────────── */
.fade-in-up {
  animation: fade-in-up 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive helpers ───────────────────────────────────────── */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (max-width: 479px) {
  .vp-trust {
    flex-wrap: wrap;
    gap: 0.625rem 0;
    justify-content: center;
  }
  .vp-trust-sep { display: none; }
  .vp-trust-item {
    width: 50%;
    justify-content: center;
    font-size: 9.5px;
  }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ── Hero Slider ───────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 480px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}
.hero-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 5rem;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-slide-content { padding: 3rem 3rem 6rem; max-width: 680px; }
}
.hero-slide-eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.3rem 0.75rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-slide-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}
.hero-slide-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0.75rem 0;
  line-height: 1.5;
}
.hero-slide-cta {
  display: block;
  background: var(--brand-grad);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-label);
  letter-spacing: 0.15em;
  margin-top: 1.25rem;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-slide-cta:hover { opacity: 0.88; }
@media (min-width: 768px) {
  .hero-slide-cta { display: inline-block; padding: 1rem 2.5rem; }
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.35); }
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }
.hero-counter {
  position: absolute;
  bottom: 4rem;
  left: 1.25rem;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  z-index: 10;
}
.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.hero-dot.active {
  width: 20px;
  background: #fff;
}

/* ── Ticker / Marquee ──────────────────────────────────────────── */
.ticker-wrap {
  padding: 1.5rem 1rem;
  background: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(17,17,17,0.07);
  border-bottom: 1px solid rgba(17,17,17,0.07);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 0 2rem;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-sub {
  text-align: center;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(17,17,17,0.45);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* ── Product Card (thenewkits style) ───────────────────────────── */
.pkc {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  position: relative;
}
.pkc__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sand);
}
.pkc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pkc:hover .pkc__img { transform: scale(1.04); }
.pkc__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17,17,17,0.3);
}
.pkc__badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: var(--brand-grad);
  color: #fff;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.pkc__info {
  padding: 0.75rem 0.5rem;
}
.pkc__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.pkc__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.pkc__price-was {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(17,17,17,0.45);
  text-decoration: line-through;
}
.pkc__price-now--sale { color: var(--brand-from); }
.pkc__shop-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-decoration: underline;
  color: rgba(17,17,17,0.5);
  text-transform: uppercase;
}

/* ── Nations Horizontal Scroll ─────────────────────────────────── */
.nations-scroll {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nations-scroll::-webkit-scrollbar { display: none; }
.nation-card {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.nation-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.nation-card__name {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* ── Clubs Horizontal Scroll ───────────────────────────────────── */
.clubs-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.clubs-scroll::-webkit-scrollbar { display: none; }
.club-card {
  flex-shrink: 0;
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.club-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(17,17,17,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

/* ── Dark Pill Button ──────────────────────────────────────────── */
.dark-pill-btn {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  background: #111;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-family: var(--font-label);
  letter-spacing: 0.15em;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}
.dark-pill-btn:hover { background: #333; }

/* ── Personalisation Dark ──────────────────────────────────────── */
.personalisation.dark {
  background: #111111;
  color: #fff;
}
.personalisation.dark .section-eyebrow {
  color: rgba(255,255,255,0.6);
}
.personalisation.dark .personalisation-mock {
  background: #f5f0e8;
  border: none;
}
.personalisation.dark .personalisation-list {
  color: rgba(255,255,255,0.85);
}
.personalisation.dark .personalisation-list li .dot {
  color: var(--brand-from);
}

/* ── Stats Dark Section ────────────────────────────────────────── */
.stats-dark {
  background: #111;
  padding: 3rem 1rem;
  text-align: center;
}
.stats-dark__inner {
  max-width: 600px;
  margin: 0 auto;
}
.stats-dark__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 3rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.stats-dark__accent {
  color: var(--brand-from);
}
.stats-dark__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.stats-dark__num {
  font-family: var(--font-label);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.stats-dark__label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── Feature Banner (full-width editorial) ───────────────────── */
.feature-banner__inner {
  display: block;
  position: relative;
  overflow: hidden;
  height: {{ section.settings.height | default: 460 }}px;
  height: var(--fb-h, 460px);
}
.feature-banner { --fb-h: 460px; }
.feature-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.feature-banner__inner:hover .feature-banner__bg { transform: scale(1.03); }
.feature-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.feature-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  z-index: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .feature-banner__content { padding: 3rem 4rem; }
}
.feature-banner__eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.feature-banner__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}
.feature-banner__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}
.feature-banner__cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: background var(--transition-base), border-color var(--transition-base);
}
.feature-banner__inner:hover .feature-banner__cta {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── Feature Duo — reference style (compact) ─────────────────── */
.feature-duo-grid {
  grid-template-columns: 1fr 1fr;
}
.feature-card {
  min-height: 320px;
}
@media (min-width: 768px) {
  .feature-card { min-height: 420px; }
}

/* ── Shopify-specific overrides ───────────────────────────────── */
.shopify-section { display: block; }
.shopify-policy__title { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.5rem; }
.shopify-policy__body { line-height: 1.7; max-width: 72ch; margin: 0 auto; }
