/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { height: 4px; width: 4px; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 4px; }

/* Focus */
:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ── TOKENS ── */
:root {
  --gold: #C8A84E;
  --gold-dark: #a08030;
  --dark: #0a0a0a;
  --bg-soft: #f6f6f3;
  --bg-warm: #f9f6f0;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --max-w: 1320px;
  --gutter: 20px;
}

/* Customizer color overrides */
body { --gold: var(--jv-gold, #C8A84E); --gold-dark: var(--jv-gold-dark, #a08030); --dark: var(--jv-dark, #0a0a0a); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── ANIMATIONS ── */
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes popIn { from{opacity:0;transform:scale(.9) translateY(16px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes shine { 0%{background-position:-200% center} 100%{background-position:200% center} }

/* ── PROMO TICKER ── */
.ticker {
  background: var(--dark);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ticker-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── NAVBAR ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: transform .35s cubic-bezier(.22,.68,0,1), background .25s, box-shadow .25s;
}
body.nav-scrolled .nav { background: rgba(255,255,255,.97); box-shadow: 0 4px 20px rgba(0,0,0,.06); border-bottom-color: transparent; }
body.nav-hidden .nav { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 var(--gutter);
  transition: height .25s;
}
body.nav-scrolled .nav-inner { height: 50px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid; place-items: center;
  font-size: 11px; font-weight: 900; color: #fff;
  transition: all .25s;
}
.site-logo img { height: 36px; width: auto; }
.nav-logo-text { font-weight: 800; font-size: 17px; letter-spacing: -.02em; }
.nav-logo-text em { font-style: normal; color: var(--gold); }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  display: block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  transition: all .2s;
}
.nav-links a:hover { background: #f5f5f5; color: #111; }
.nav-links li.current-menu-item a,
.nav-links a.active { background: var(--dark); color: #fff; }

.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 17px;
  transition: background .2s;
  position: relative;
  color: #111;
}
.nav-icon:hover { background: #f5f5f5; }

/* Cart count */
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* Search */
.nav-search-wrap { position: relative; }
.nav-search {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 0 12px;
  height: 38px;
  overflow: hidden;
  width: 38px;
  transition: width .35s;
}
.nav-search.open { width: 220px; }
.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 12px;
  width: 100%;
  font-family: inherit;
  margin-left: 6px;
}
.nav-search-icon { font-size: 15px; cursor: pointer; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.hamburger:hover { background: #f5f5f5; }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all .25s;
}

/* ── MOBILE NAV ── */
.mobile-nav-ov {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav-ov.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: #fff;
  z-index: 201;
  padding: 20px;
  overflow-y: auto;
  transition: right .35s cubic-bezier(.22,.68,0,1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-nav-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  font-size: 18px; color: #666;
  display: grid; place-items: center;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: all .2s;
}
.mobile-nav a:hover { background: #fafaf8; color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all .3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn--gold { background: var(--gold); color: #000; box-shadow: 0 4px 16px rgba(200,168,78,.3); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,78,.4); }
.btn--outline { border: 1.5px solid rgba(0,0,0,.15); color: #333; background: transparent; }
.btn--outline:hover { border-color: rgba(0,0,0,.3); background: rgba(0,0,0,.03); transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #222; transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 12px; border-radius: 9px; }

/* ── SECTION LAYOUTS ── */
.section { padding: 56px 0; }
.section--flush { padding: 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--dark); color: #fff; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
}
.section-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.section-head p { font-size: 13px; color: #888; margin-top: 2px; }
.section-head a, .section-head button {
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
}
.section-head a:hover { text-decoration: underline; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px calc(max(20px, (100vw - var(--max-w))/2 + 20px));
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,168,78,.12);
  border: 1px solid rgba(200,168,78,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10px; font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}
.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero h1 .gold {
  background: linear-gradient(135deg, #C8A84E, #E8D48E, #C8A84E);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-desc {
  color: rgba(255,255,255,.45);
  font-size: 15px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-btns .btn--outline { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.hero-btns .btn--outline:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06); }
.hero-stats { display: flex; gap: 36px; margin-top: 36px; }
.hero-stat-num { font-size: 22px; font-weight: 900; color: var(--gold); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 2px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(200,168,78,.1), transparent);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .25;
}
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,78,.15), transparent 70%);
}

/* live dot */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── TEAMS ROW ── */
.teams-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.team-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #f0f0f0;
  cursor: pointer;
  transition: all .25s;
  min-width: 70px;
}
.team-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.team-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.team-chip-flag { font-size: 24px; }
.team-chip-name { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* ── CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.cat-card-bg {
  position: absolute; inset: 0;
  transition: transform .5s;
  background-size: cover;
  background-position: center;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.cat-card-content h3 { font-size: 18px; font-weight: 800; color: #fff; }
.cat-card-content p { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; }
.cat-card--wide { grid-column: span 2; }

/* WooCommerce category card */
.wc-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.wc-cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}
.wc-cat-card:hover .wc-cat-bg { transform: scale(1.06); }
.wc-cat-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s;
}
.wc-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.wc-cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.wc-cat-info h3 { font-size: 18px; font-weight: 800; color: #fff; }
.wc-cat-info span { font-size: 11px; color: rgba(255,255,255,.6); }

/* ── PRODUCT SCROLL ── */
.products-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
}

/* ── PRODUCT CARD ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.p-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 200px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  transition: all .35s cubic-bezier(.22,.68,0,1);
  position: relative;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.products-grid .p-card { width: auto; }

.p-card-img {
  aspect-ratio: 1;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.p-card-img img {
  width: 85%; height: 85%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .45s cubic-bezier(.22,.68,0,1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
}
.p-card:hover .p-card-img img { transform: scale(1.08) rotate(-2deg); }

.p-card-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
  letter-spacing: .05em; z-index: 2;
}
.p-card-badge--hot { background: var(--gold); color: #000; }
.p-card-badge--new { background: #10b981; color: #fff; }
.p-card-badge--sale { background: #ef4444; color: #fff; }

.p-card-add {
  position: absolute; bottom: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold); color: #000;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  opacity: 0; transform: translateY(6px);
  transition: all .3s;
  box-shadow: 0 2px 10px rgba(200,168,78,.3);
  z-index: 3;
  border: none; cursor: pointer;
}
.p-card:hover .p-card-add { opacity: 1; transform: translateY(0); }
.p-card-add:hover { background: var(--gold-dark); transform: scale(1.1) !important; }

.p-card-body { padding: 12px 14px 16px; }
.p-card-team { font-size: 10px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.p-card-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.p-card-stars { display: flex; align-items: center; gap: 1px; margin-bottom: 6px; font-size: 10px; color: var(--gold); }
.p-card-row { display: flex; align-items: center; gap: 6px; }
.p-card-price { font-size: 15px; font-weight: 800; }
.p-card-old { font-size: 11px; color: #bbb; text-decoration: line-through; }
.p-card-pct { font-size: 9px; font-weight: 700; color: #ef4444; background: #fef2f2; padding: 2px 6px; border-radius: 4px; }

/* ── SPOTLIGHT ── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
}
.spotlight-visual {
  display: grid;
  place-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 300px;
}
.spotlight-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  opacity: .2;
}
.spotlight-visual-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.spotlight-visual-inner img {
  width: 260px; max-width: 100%;
  position: relative;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.3));
}
.spotlight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.spotlight-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,168,78,.1);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 10px; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
  align-self: flex-start;
}
.spotlight-info h3 { font-size: 30px; font-weight: 900; letter-spacing: -.02em; line-height: 1.1; }
.spotlight-info .desc { font-size: 14px; color: #777; line-height: 1.65; margin-top: 12px; }
.spotlight-info .price-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.spotlight-info .price-big { font-size: 28px; font-weight: 900; }
.spotlight-info .price-old-big { font-size: 16px; color: #bbb; text-decoration: line-through; }
.spotlight-info .btn { margin-top: 24px; align-self: flex-start; }

/* ── FLASH SALE ── */
.flash-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a0000, #2e0a0a, #1a0000);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.flash-left h2 { font-size: 26px; font-weight: 900; color: #fff; }
.flash-left h2 .red { color: #ef4444; }
.flash-left p { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; }
.flash-countdown { display: flex; gap: 10px; }
.flash-unit { text-align: center; }
.flash-num {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 22px; font-weight: 900; color: #fff;
}
.flash-label { font-size: 9px; color: rgba(255,255,255,.35); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }
.flash-products .p-card { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.04); }
.flash-products .p-card-name { color: #fff; }
.flash-products .p-card-price { color: #fff; }
.flash-products .p-card-img { background: rgba(255,255,255,.04); }

/* ── DUAL PROMO ── */
.dual-promo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}
.promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 10%, rgba(0,0,0,.3) 100%);
  z-index: 1;
}
.promo-card > * { position: relative; z-index: 2; }
.promo-card h3 { font-size: 22px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 6px; }
.promo-card p { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 16px; }

/* ── BRAND MARQUEE ── */
.brand-marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.brand-track {
  display: flex; gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.brand-track:hover { animation-play-state: paused; }
.brand-item {
  font-size: 22px; font-weight: 900;
  color: #ddd;
  letter-spacing: .02em;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.brand-item .brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ── STATS ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #f0f0f0;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 900; color: var(--dark); }
.stat-label { font-size: 11px; color: #888; margin-top: 4px; }
.stat-icon { font-size: 20px; margin-bottom: 8px; }

/* ── TRUST BADGES ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid #f0f0f0;
  text-align: center;
  transition: all .3s;
}
.trust-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon { font-size: 28px; margin-bottom: 10px; }
.trust-title { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.trust-desc { font-size: 11px; color: #888; line-height: 1.5; }

/* ── DELIVERY MAP PLACEHOLDER ── */
.delivery-map-section {
  background: var(--dark);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 56px var(--gutter) 28px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand-mark {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid; place-items: center;
  font-size: 10px; font-weight: 900; color: #fff;
}
.footer-brand-text { font-weight: 800; font-size: 16px; }
.footer-about { font-size: 12px; color: #666; line-height: 1.75; }
.footer-heading {
  font-size: 11px; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 12px; color: #777;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-link:hover { color: var(--gold); }
.footer-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: #888;
  margin-bottom: 10px;
}
.footer-contact-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  display: grid; place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-soc {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  color: #bbb;
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
  border: none; cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.footer-soc:hover { background: var(--gold); color: #000; }

.footer-payments { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.footer-pay {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 9px; font-weight: 800;
  letter-spacing: .04em;
  background: rgba(255,255,255,.07);
  color: #bbb;
}

.footer-newsletter { margin-top: 20px; }
.footer-newsletter h5 { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.footer-newsletter p { font-size: 11px; color: #666; margin-bottom: 12px; }
.footer-news-form { display: flex; gap: 6px; }
.footer-news-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 9px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: inherit;
}
.footer-news-form input::placeholder { color: #555; }
.footer-news-form input:focus { border-color: var(--gold); }
.footer-news-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: #000;
  border-radius: 9px;
  font-size: 12px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.footer-news-form button:hover { background: var(--gold-dark); }

.footer-trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}
.footer-trust-badge {
  font-size: 11px; font-weight: 600; color: #777;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: #555; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: #555; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* Footer menus */
.footer-menu { list-style: none; }
.footer-menu li a {
  display: block;
  font-size: 12px; color: #777;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-menu li a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  right: 20px; bottom: 90px;
  z-index: 300;
  background: #25D366;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: all .3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-label {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: #111;
  color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all .25s;
  pointer-events: none;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }

/* Back to top */
.back-top {
  position: fixed;
  right: 20px; bottom: 150px;
  z-index: 300;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 16px;
  display: none;
  place-items: center;
  border: none; cursor: pointer;
  transition: all .3s;
}
.back-top.show { display: grid; }
.back-top:hover { background: var(--gold); color: #000; }

/* ── MOBILE BOTTOM NAV ── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid #f0f0f0;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.bn-row { display: flex; justify-content: space-around; }
.bn-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 4px 8px;
  font-size: 9px; font-weight: 600; color: #888;
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  position: relative;
  transition: color .2s;
}
.bn-item.active, .bn-item:hover { color: var(--dark); }
.bn-ico { font-size: 20px; position: relative; }
.bn-dot {
  position: absolute;
  top: -4px; right: -8px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  background: var(--gold);
  color: #000;
  font-size: 8px; font-weight: 800;
  display: grid; place-items: center;
  padding: 0 3px;
}

/* ── ALL JERSEYS GRID FILTERS ── */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
}
.filter-chip {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  border: 1.5px solid #e5e5e5;
  background: #fff; color: #555;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.sort-select {
  margin-left: auto;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

/* ── WooCommerce overrides ── */
.woocommerce-page .woocommerce,
.woocommerce { width: 100%; }

/* WC notices */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
  list-style: none;
}
.woocommerce-message { background: #f0fdf4; border-left: 4px solid #22c55e; color: #166534; }
.woocommerce-error { background: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; }
.woocommerce-info { background: rgba(200,168,78,.1); border-left: 4px solid var(--gold); color: #7c5a1e; }

.woocommerce-message .button,
.woocommerce-message a.button {
  background: var(--dark); color: #fff;
  padding: 8px 16px; border-radius: 8px;
  font-size: 12px; font-weight: 700;
  margin-left: 12px;
  display: inline-block;
}

/* WC product archive (shop page) */
ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0; }
ul.products li.product { list-style: none; }

/* WC single product */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 48px 0; }
.woocommerce div.product .woocommerce-product-gallery { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-soft); }
.woocommerce div.product .woocommerce-product-gallery img { border-radius: var(--radius-lg); }
.woocommerce div.product .entry-summary h1.product_title { font-size: 28px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 8px; }
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 12px; }
.woocommerce div.product p.price { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product p.price del { color: #bbb; font-size: 18px; margin-right: 8px; }
.woocommerce div.product .variations td, .woocommerce div.product .variations th { padding: 6px 0; font-size: 13px; }
.woocommerce div.product .variations select {
  width: 100%; padding: 10px 14px;
  border: 2px solid #eee; border-radius: 10px;
  font-size: 13px; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.woocommerce div.product .variations select:focus { border-color: var(--gold); }

/* WC add to cart button */
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(200,168,78,.3);
}
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--gold-dark); transform: translateY(-2px); }

.woocommerce div.product form.cart .quantity input {
  width: 70px; padding: 10px;
  border: 2px solid #eee; border-radius: 10px;
  font-size: 14px; text-align: center;
  font-family: inherit; outline: none;
}

/* WC breadcrumb */
.woocommerce-breadcrumb { font-size: 12px; color: #888; margin-bottom: 20px; }
.woocommerce-breadcrumb a { color: var(--gold); }

/* WC tabs */
.woocommerce-tabs .tabs {
  display: flex; gap: 4px;
  list-style: none; padding: 0; margin: 0 0 24px;
  border-bottom: 2px solid #f0f0f0;
}
.woocommerce-tabs .tabs li a {
  display: block; padding: 10px 20px;
  font-size: 13px; font-weight: 700; color: #888;
  border-radius: 8px 8px 0 0;
  border: 1.5px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.woocommerce-tabs .tabs li.active a { color: var(--dark); border-color: #f0f0f0 #f0f0f0 #fff; background: #fff; }
.woocommerce-tabs .panel { font-size: 13px; line-height: 1.75; color: #555; }

/* WC cart */
.woocommerce-cart-form table.cart td, .woocommerce-cart-form table.cart th { padding: 14px 12px; vertical-align: middle; border: none; border-bottom: 1px solid #f5f5f5; font-size: 13px; }
.woocommerce-cart-form table.cart img { width: 60px; border-radius: 8px; }
.woocommerce-cart-form table.cart .product-name a { font-weight: 700; }
.woocommerce-cart-form table.cart .product-price { font-weight: 700; }
.woocommerce-cart-form table.cart input.qty { width: 60px; padding: 8px; border: 1.5px solid #eee; border-radius: 8px; text-align: center; }
.cart-collaterals { padding-top: 24px; }
.cart_totals { background: var(--bg-warm); padding: 24px; border-radius: var(--radius-lg); }
.cart_totals h2 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.cart_totals table { width: 100%; font-size: 13px; border-collapse: collapse; }
.cart_totals table th, .cart_totals table td { padding: 10px 0; border-bottom: 1px solid #eee; }
.cart_totals table tr.order-total td strong { font-size: 20px; }

/* WC checkout */
.woocommerce-checkout #order_review { background: var(--bg-warm); padding: 28px; border-radius: var(--radius-lg); }
.woocommerce form .form-row label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; display: block; color: #555; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid #eee; border-radius: 10px;
  font-size: 13px; font-family: inherit;
  outline: none; transition: border-color .2s;
  background: #fff;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--gold); }

/* WC my account */
.woocommerce-account .woocommerce { display: flex; gap: 32px; align-items: flex-start; padding: 32px 0; }
.woocommerce-MyAccount-navigation { width: 220px; flex-shrink: 0; }
.woocommerce-MyAccount-navigation ul { list-style: none; background: var(--bg-warm); border-radius: var(--radius-lg); overflow: hidden; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 12px 20px; font-size: 13px; font-weight: 600; color: #555; border-bottom: 1px solid #f0f0f0; transition: all .2s; }
.woocommerce-MyAccount-navigation li a:hover { color: var(--gold); background: rgba(200,168,78,.05); }
.woocommerce-MyAccount-navigation li.is-active a { color: var(--dark); font-weight: 800; }
.woocommerce-MyAccount-content { flex: 1; }

/* Star rating */
.star-rating { color: var(--gold); font-size: 14px; }
.star-rating span::before { color: var(--gold); }

/* ── SHOP PAGE ── */
.shop-header { padding: 32px 0 0; }
.shop-header h1 { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.shop-header p { font-size: 13px; color: #888; }

.woocommerce-ordering select {
  padding: 8px 14px; border-radius: 10px;
  font-size: 12px; border: 1.5px solid #e5e5e5;
  background: #fff; outline: none;
  font-family: inherit;
}
.woocommerce-result-count { font-size: 12px; color: #888; }

/* ── PAGE ── */
.page-content { padding: 48px 0; }
.page-content h1 { font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.page-content p { font-size: 14px; line-height: 1.75; color: #555; margin-bottom: 16px; }

/* ── 404 ── */
.not-found {
  min-height: 80vh;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at top, #1a1a1a 0%, #050505 60%);
  color: #fff;
  padding: 40px 20px;
}
.not-found-inner { max-width: 560px; text-align: center; }
.not-found-404 {
  font-size: 140px; font-weight: 900;
  letter-spacing: -.05em; line-height: .9;
  background: linear-gradient(135deg, #C8A84E 0%, #E8D48E 50%, #C8A84E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shine 3s linear infinite;
  margin-bottom: 10px;
}
.not-found h1 { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.not-found h1 .gold { color: var(--gold); }
.not-found p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 28px; }
.not-found .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.not-found .btn--outline { border-color: rgba(255,255,255,.2); color: #fff; }
.not-found .btn--outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

/* ── DARK MODE ── */
html[data-theme="dark"] body { background: #0a0a0a; color: #eee; }
html[data-theme="dark"] .nav { background: rgba(10,10,10,.92); border-bottom-color: rgba(255,255,255,.06); }
html[data-theme="dark"] body.nav-scrolled .nav { background: rgba(10,10,10,.97); }
html[data-theme="dark"] .nav-links a { color: #aaa; }
html[data-theme="dark"] .nav-links a:hover { background: #1a1a1a; color: #fff; }
html[data-theme="dark"] .nav-icon:hover { background: #1a1a1a; }
html[data-theme="dark"] .nav-icon { color: #eee; }
html[data-theme="dark"] .mobile-nav { background: #111; }
html[data-theme="dark"] .mobile-nav a { color: #ddd; border-bottom-color: #1a1a1a; }
html[data-theme="dark"] .section--soft { background: #111; }
html[data-theme="dark"] .section--warm { background: #0f0f0f; }
html[data-theme="dark"] .p-card { background: #111; border-color: #1e1e1e; }
html[data-theme="dark"] .p-card-name { color: #eee; }
html[data-theme="dark"] .team-chip { background: #111; border-color: #1e1e1e; color: #ddd; }
html[data-theme="dark"] .stats-bar { background: #111; border-color: #1e1e1e; }
html[data-theme="dark"] .stat-item { border-right-color: #1e1e1e; }
html[data-theme="dark"] .stat-num { color: #fff; }
html[data-theme="dark"] .trust-card { background: #111; border-color: #1e1e1e; }
html[data-theme="dark"] .bottom-nav { background: rgba(10,10,10,.97); border-top-color: #1e1e1e; }
html[data-theme="dark"] .bn-item { color: #666; }
html[data-theme="dark"] .section-head h2 { color: #fff; }
html[data-theme="dark"] .filter-chip { background: #111; border-color: #222; color: #aaa; }
html[data-theme="dark"] .spotlight-info { background: #111; }
html[data-theme="dark"] .spotlight-info h3 { color: #fff; }
html[data-theme="dark"] .spotlight-info .desc { color: #888; }
html[data-theme="dark"] .brand-item { color: #444; }
html[data-theme="dark"] .brand-marquee { border-color: #1e1e1e; }

/* ── ALL JERSEYS SIDEBAR LAYOUT ── */
.all-jerseys-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.jerseys-sidebar { background: #fff; border: 1.5px solid #f0f0f0; border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 80px; }
.jsb-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f5f5f5; }
.jsb-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.jsb-title { font-size: 10px; font-weight: 800; color: #999; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.jsb-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; cursor: pointer; font-size: 13px; color: #444; }
.jsb-toggle-row:hover { color: var(--dark); }
.jv-toggle { position: relative; display: inline-block; }
.jv-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.jv-toggle-track { display: block; width: 36px; height: 20px; border-radius: 10px; background: #e5e5e5; transition: background .25s; cursor: pointer; }
.jv-toggle input:checked + .jv-toggle-track { background: var(--gold); }
.jv-toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: left .25s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.jv-toggle input:checked + .jv-toggle-track::after { left: 19px; }
.jsb-check-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 12px; color: #555; cursor: pointer; }
.jsb-check-row input[type=checkbox] { accent-color: var(--gold); width: 14px; height: 14px; }
.jsb-check-row:hover { color: var(--dark); }
.jsb-count { margin-left: auto; font-size: 10px; color: #bbb; }
.jerseys-main { min-width: 0; }
.jerseys-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.jerseys-count { font-size: 12px; color: #888; }
.jv-card-wrap.hidden { display: none; }

/* ── LIFESTYLE BANNER ── */
.lifestyle-banner {
    position: relative;
    min-height: 260px;
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.lifestyle-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?w=1600&q=80&auto=format') center/cover no-repeat;
    opacity: .18;
}
.lifestyle-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8) 40%, transparent); }
.lifestyle-content {
    position: relative; z-index: 2;
    max-width: var(--max-w); margin: 0 auto;
    padding: 56px var(--gutter);
    width: 100%;
}
.lifestyle-content h2 { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.05; margin-bottom: 12px; }
.lifestyle-content h2 .gold { background: linear-gradient(135deg, #C8A84E, #E8D48E, #C8A84E); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 4s linear infinite; }
.lifestyle-content p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 24px; }

/* ── TRUST BAR STRIP ── */
.trust-bar-strip { background: var(--bg-warm); padding: 24px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-bar-item { display: flex; align-items: center; gap: 12px; }
.trust-bar-icon { font-size: 24px; flex-shrink: 0; }
.trust-bar-title { font-size: 13px; font-weight: 800; margin-bottom: 2px; }
.trust-bar-desc { font-size: 11px; color: #888; }

/* ── DELIVERY MAP ── */
.delivery-section { background: var(--dark); color: #fff; }
.delivery-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.delivery-map-side { display: flex; align-items: center; justify-content: center; }
.ghana-map-wrap { width: 220px; }
.ghana-map-svg { width: 100%; height: auto; }
.delivery-info-side h2 { font-size: 34px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.1; }
.delivery-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.65; }
.delivery-list { display: flex; flex-direction: column; gap: 8px; }
.delivery-row { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.delivery-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.delivery-region { font-size: 13px; color: rgba(255,255,255,.8); flex: 1; }
.delivery-time { font-size: 11px; font-weight: 800; letter-spacing: .06em; }

/* ── UGC / FANS SECTION ── */
.ugc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.ugc-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.ugc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ugc-item:hover img { transform: scale(1.06); }
.ugc-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); color: #fff; font-size: 10px; font-weight: 600; transform: translateY(100%); transition: transform .3s; }
.ugc-item:hover .ugc-caption { transform: translateY(0); }
.ugc-tag-prompt { font-size: 12px; color: #888; text-align: center; }
.ugc-tag-prompt strong { color: var(--gold); }

/* ── SPOTLIGHT extras ── */
.spotlight-cat { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.spotlight-full-link { display: block; margin-top: 12px; font-size: 12px; color: var(--gold); font-weight: 700; }
.spotlight-full-link:hover { text-decoration: underline; }

/* ── TEAM CHIP extras ── */
.team-chip-count { font-size: 9px; color: #bbb; }
.team-chip-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 6px;
    flex-shrink: 0;
}
.team-chip { flex-direction: column; align-items: center; gap: 4px; min-width: 80px; padding: 12px 10px; }
.team-chip-name { font-size: 11px; font-weight: 700; text-align: center; }

/* ── NAV CURRENCY ── */
.nav-currency {
    font-size: 11px; font-weight: 800;
    color: #555;
    background: #f5f5f5;
    border-radius: 7px;
    padding: 4px 8px;
    letter-spacing: .03em;
}
html[data-theme="dark"] .nav-currency { background: #1a1a1a; color: #aaa; }

/* ── HERO SHOWCASE ── */
.hero-product-showcase { text-align: center; }
.hero-showcase-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 10px; font-weight: 700;
    color: rgba(255,255,255,.7);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
}

/* ── QUICK VIEW MODAL ── */
.qv-overlay {
    position: fixed; inset: 0; z-index: 600;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    display: none;
    place-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
}
.qv-overlay.open { display: grid; opacity: 1; }
.qv-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 820px; width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    animation: popIn .35s cubic-bezier(.22,.68,0,1);
    position: relative;
}
.qv-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,.06); border: none;
    font-size: 18px; color: #666; cursor: pointer;
    display: grid; place-items: center;
    z-index: 2; transition: all .2s;
}
.qv-close:hover { background: #ef4444; color: #fff; transform: rotate(90deg); }
.qv-body { overflow-y: auto; padding: 28px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; }
.qv-img-wrap img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.qv-info-team { font-size: 10px; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.qv-info-name { font-size: 22px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 6px; }
.qv-info-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #888; margin-bottom: 10px; }
.qv-info-rating .stars { color: var(--gold); }
.qv-info-price { font-size: 26px; font-weight: 900; margin-bottom: 10px; }
.qv-info-price .old { font-size: 16px; color: #bbb; text-decoration: line-through; margin-left: 8px; }
.qv-info-desc { font-size: 12px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.qv-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #999; margin-bottom: 8px; margin-top: 14px; }
.qv-sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.qv-size-btn {
    padding: 8px 14px; border-radius: 8px;
    border: 1.5px solid #e5e5e5; background: #fff;
    font-size: 12px; font-weight: 700; cursor: pointer;
    transition: all .2s; font-family: inherit;
}
.qv-size-btn:hover { border-color: var(--gold); color: var(--gold); }
.qv-size-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.qv-qty-row { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.qv-qty-btn { width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid #e5e5e5; background: #fff; font-size: 16px; font-weight: 700; cursor: pointer; display: grid; place-items: center; transition: all .2s; }
.qv-qty-btn:hover { border-color: var(--gold); }
.qv-qty-num { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; }
.qv-add-btn {
    width: 100%; padding: 14px; margin-top: 14px;
    background: var(--gold); color: #000; border: none;
    border-radius: 12px; font-size: 14px; font-weight: 800;
    cursor: pointer; transition: all .25s; font-family: inherit;
    box-shadow: 0 4px 16px rgba(200,168,78,.3);
}
.qv-add-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.qv-full-link { display: block; text-align: center; font-size: 12px; color: var(--gold); font-weight: 700; margin-top: 10px; }
.qv-full-link:hover { text-decoration: underline; }
.qv-complete { margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.qv-complete-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: 10px; }
.qv-complete-items { display: flex; gap: 8px; }
.qv-complete-item { flex: 1; padding: 10px 8px; border-radius: 10px; border: 1.5px solid #f0f0f0; text-align: center; font-size: 10px; font-weight: 700; color: #666; cursor: pointer; transition: all .2s; }
.qv-complete-item:hover { border-color: var(--gold); color: var(--gold); }
.qv-loading { padding: 60px; text-align: center; color: #888; }

/* ── PRODUCT CARD — add quick-view button ── */
.p-card-qv {
    position: absolute; bottom: 10px; left: 10px;
    height: 26px; padding: 0 10px;
    border-radius: 6px;
    background: rgba(0,0,0,.7); color: #fff;
    font-size: 9px; font-weight: 700; letter-spacing: .04em;
    display: flex; align-items: center;
    opacity: 0; transform: translateY(6px);
    transition: all .3s; z-index: 3;
    border: none; cursor: pointer; font-family: inherit;
    text-transform: uppercase;
}
.p-card:hover .p-card-qv { opacity: 1; transform: translateY(0); }
.p-card-qv:hover { background: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero h1 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat-item:nth-child(2) { border-right: none; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-inner { grid-template-columns: 1fr; gap: 32px; }
  .ghana-map-wrap { width: 160px; }
  .all-jerseys-layout { grid-template-columns: 200px 1fr; gap: 20px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-content { padding: 40px 20px; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-visual { min-height: 200px; }
  .dual-promo { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card--wide { grid-column: span 1; }
  .wc-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .wc-cat-card--wide { grid-column: span 1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .bottom-nav { display: block; }
  .wa-float { bottom: 72px; }
  .back-top { bottom: 130px; }
  .all-jerseys-layout { grid-template-columns: 1fr; }
  .jerseys-sidebar { position: static; }
  .delivery-inner { grid-template-columns: 1fr; }
  .delivery-map-side { display: none; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .lifestyle-content h2 { font-size: 30px; }
  .qv-body { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 20px; }
  .section { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .not-found-404 { font-size: 96px; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce { flex-direction: column; }
  .woocommerce-MyAccount-navigation { width: 100%; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .lifestyle-content h2 { font-size: 24px; }
  .lifestyle-content { padding: 40px 20px; }
}
