/* ============================================================
   A7B Jerseys — style.css
   Complete stylesheet matching index.html class names exactly
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --color-primary:       #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: rgba(16,185,129,.12);
  --color-black:         #0B0E11;
  --color-dark:          #222222;
  --color-grey-bg:       #0d1117;
  --color-grey-light:    #1a2332;
  --color-white:         #141A20;
  --color-border:        rgba(255,255,255,.08);
  --color-text:          #8b92a5;
  --color-heading:       #e8ecf0;
  --color-price-old:     #6b7280;
  --color-price-new:     #10b981;
  --color-badge-red:     #e02020;
  --color-nav-dot:       #10b981;
  --color-gold:          #d4a843;
  --color-wa:            #25D366;
  --font-main:           'Jost', sans-serif;
  --transition:          0.3s ease;
  --header-h:            72px;
  --header-sub-h:        40px;
  --container:           1280px;
  --gutter:              24px;
  --radius:              6px;
  --radius-lg:           12px;
  --shadow-sm:           0 2px 8px rgba(0,0,0,.25);
  --shadow-md:           0 4px 20px rgba(0,0,0,.4);
  --shadow-lg:           0 8px 40px rgba(0,0,0,.55);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, button { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--color-primary); margin-bottom: 6px;
}
.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700; color: var(--color-heading); line-height: 1.2;
}

/* icon button (search / close) */
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-dark); font-size: .95rem;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.icon-btn:hover { background: var(--color-grey-light); color: var(--color-primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: .875rem; letter-spacing: .05em;
  text-transform: uppercase; border: 2px solid transparent;
  transition: all var(--transition); line-height: 1; cursor: pointer;
}
.btn--green  { background: var(--color-primary); color: #fff; }
.btn--green:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,89,43,.35);
}
.btn--outline { background: transparent; color: var(--color-dark); border-color: var(--color-border); }
.btn--outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--white  { background: #fff; color: var(--color-dark); border-color: #fff; }
.btn--white:hover { background: transparent; color: #fff; border-color: #fff; }
.btn--full   { width: 100%; justify-content: center; }
.btn--lg     { padding: 15px 34px; font-size: .95rem; }
.btn--sm     { padding: 8px 18px; font-size: .78rem; }

/* text-link button (used in hero slides 2 & 3) */
.btn-text-link {
  display: inline-block;
  font-size: .95rem; font-weight: 700; color: var(--color-dark);
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  transition: color var(--transition);
}
.btn-text-link:hover { color: var(--color-primary); }

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
  background: var(--color-black); color: #fff;
  height: 38px; overflow: hidden; position: relative; z-index: 800;
}
.announce-bar__ticker {
  display: flex; gap: 80px; align-items: center; height: 100%;
  white-space: nowrap;
  animation: tickerMove 28s linear infinite;
  width: max-content;
}
.announce-bar__ticker span { font-size: .8rem; letter-spacing: .04em; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--color-white);
  transition: box-shadow var(--transition);
}
.site-header.is-sticky { box-shadow: 0 2px 12px rgba(0,0,0,.10); }

/* Row 1 */
.header-row1 { border-bottom: 1px solid var(--color-border); }
.header-row1__inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; user-select: none;
}
.site-logo__icon svg { display: block; }
.site-logo__text {
  font-size: 1.25rem; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-dark); line-height: 1;
}
.site-logo__text em {
  display: block; font-style: normal; font-size: .55rem;
  font-weight: 700; letter-spacing: .3em; color: var(--color-text); margin-top: 1px;
}

/* Primary nav */
.primary-nav { flex: 1; }
.primary-nav ul { display: flex; align-items: center; height: var(--header-h); }
.pnav-item {
  position: relative; height: var(--header-h);
  display: flex; align-items: center;
}
.pnav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-size: .8rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--color-dark); white-space: nowrap; height: 100%;
  transition: color var(--transition);
}
.pnav-link .fa-caret-down { font-size: .7rem; opacity: .6; transition: transform var(--transition); }
.pnav-item:hover .pnav-link { color: var(--color-primary); }
.pnav-item:hover .fa-caret-down { transform: rotate(180deg); }

/* Mega dropdown */
.drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 160px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  min-width: 640px; z-index: 10;
}
.drop-menu--sm { grid-template-columns: repeat(3, 160px); min-width: 480px; }
.pnav-item:hover .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-col { padding: 20px 18px; border-right: 1px solid var(--color-border); }
.drop-col:last-child { border-right: none; }
.drop-col h6 {
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.drop-col a {
  display: block; font-size: .85rem; color: var(--color-text);
  padding: 4px 0; transition: color var(--transition), padding-left var(--transition);
}
.drop-col a:hover { color: var(--color-primary); padding-left: 6px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.cart-icon-btn { position: relative; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: #b8a040; color: #fff;
  font-size: .58rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; pointer-events: none;
}

/* Burger */
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.burger-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--color-dark); border-radius: 2px;
  transition: var(--transition);
}
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Row 2 — sub nav */
.header-row2 { background: var(--color-grey-light); border-bottom: 1px solid var(--color-border); }
.sub-nav {
  display: flex; align-items: center;
  height: var(--header-sub-h); overflow-x: auto; scrollbar-width: none;
}
.sub-nav::-webkit-scrollbar { display: none; }
.snav-link {
  padding: 0 16px; font-size: .75rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--color-text); white-space: nowrap;
  height: 100%; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.snav-link:hover { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.snav-link--sale { color: var(--color-badge-red); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(17,17,17,.96);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 15vh;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.search-overlay__close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.5rem; color: rgba(255,255,255,.6);
  transition: color var(--transition); background: none; border: none; cursor: pointer;
}
.search-overlay__close:hover { color: #fff; }
.search-overlay__body { width: 100%; max-width: 680px; padding: 0 var(--gutter); }
.search-overlay__hint {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px;
}
.search-overlay__bar {
  display: flex; align-items: center; gap: 14px;
  border-bottom: 2px solid rgba(255,255,255,.25); padding-bottom: 14px;
}
.search-overlay__bar i { color: rgba(255,255,255,.5); font-size: 1.2rem; }
.search-overlay__input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-main); font-size: 1.5rem; font-weight: 300;
  color: #fff; caret-color: var(--color-primary-light);
}
.search-overlay__input::placeholder { color: rgba(255,255,255,.25); }
.search-overlay__tags {
  margin-top: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.search-overlay__tags span { font-size: .75rem; color: rgba(255,255,255,.35); letter-spacing: .08em; }
.search-overlay__tags a {
  font-size: .8rem; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 4px 14px; transition: all var(--transition);
}
.search-overlay__tags a:hover { color: #fff; border-color: var(--color-primary-light); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative; height: 700px; overflow: hidden;
  background: var(--color-grey-bg);
}

/* Decorative polygon shapes */
.shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.shape  { position: absolute; background: rgba(0,0,0,.06); }
.s1  { width:70px;  height:70px;  top:10%; left:4%;   clip-path:polygon(50% 0%,0% 100%,100% 100%); transform:rotate(18deg); }
.s2  { width:40px;  height:40px;  top:65%; left:2%;   clip-path:polygon(0 0,100% 0,80% 100%,20% 100%); transform:rotate(-12deg); }
.s3  { width:85px;  height:85px;  top:20%; left:18%;  clip-path:polygon(50% 0%,0% 100%,100% 100%); transform:rotate(-28deg); opacity:.5; }
.s4  { width:55px;  height:55px;  top:75%; left:14%;  clip-path:polygon(0 0,100% 0,80% 100%,20% 100%); transform:rotate(8deg); background:rgba(0,0,0,.04); }
.s5  { width:30px;  height:30px;  top:45%; left:32%;  clip-path:polygon(50% 0%,0% 100%,100% 100%); transform:rotate(45deg); }
.s6  { width:60px;  height:60px;  top:5%;  right:35%; clip-path:polygon(0 0,100% 0,80% 100%,20% 100%); transform:rotate(-5deg); background:rgba(0,0,0,.04); }
.s7  { width:50px;  height:50px;  top:80%; right:28%; clip-path:polygon(50% 0%,0% 100%,100% 100%); transform:rotate(25deg); opacity:.6; }
.s8  { width:25px;  height:25px;  top:30%; right:20%; clip-path:polygon(50% 0%,0% 100%,100% 100%); transform:rotate(-40deg); }
.s9  { width:75px;  height:75px;  bottom:5%; right:5%; clip-path:polygon(0 0,100% 0,80% 100%,20% 100%); transform:rotate(15deg); opacity:.5; }
.s10 { width:45px;  height:45px;  top:50%; right:10%; clip-path:polygon(50% 0%,0% 100%,100% 100%); transform:rotate(-15deg); background:rgba(0,0,0,.04); }

/* Slides */
.slider-track { position: relative; height: 100%; z-index: 2; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
}
.slide--active { opacity: 1; pointer-events: auto; z-index: 1; }

/* Giant -webkit-text-stroke watermark */
.slide__wm {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(80px, 15vw, 200px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,.07);
  user-select: none; pointer-events: none; z-index: 0;
  white-space: nowrap;
}

/* 40 / 60 grid layout */
.slide__inner {
  display: grid; grid-template-columns: 2fr 3fr;
  align-items: center; gap: 40px; height: 100%;
  position: relative; z-index: 2;
}
.slide__content { max-width: 460px; padding: 40px 0; }

/* Tag pill */
.slide__tag {
  display: inline-block; background: var(--color-primary); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.slide__h2 {
  font-size: clamp(1rem,2vw,1.3rem); font-weight: 400;
  color: var(--color-text); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .08em;
}
.slide__h1 {
  font-size: clamp(2.4rem,5.5vw,4.2rem); font-weight: 900;
  color: var(--color-heading); line-height: 1.05;
  text-transform: uppercase; letter-spacing: -.02em;
  margin-bottom: 28px;
}
/* Slide 2: giant dark-green h1 */
.slide__h1--green { color: var(--color-primary); }

/* Media col */
.slide__media {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.slide__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.9); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-dark); font-size: .9rem;
  transition: all var(--transition); border: none; cursor: pointer;
}
.slider-arrow:hover { background: var(--color-primary); color: #fff; }
.slider-arrow--prev { left: 20px; }
.slider-arrow--next { right: 20px; }

/* Custom dots — exact spec */
.slider-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; gap: 8px; align-items: center;
}
.slider-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: border-color .3s;
  padding: 0;
}
.slider-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(20,31,70,.3);
  transition: background .3s;
}
.slider-dot.active                { border-color: var(--color-nav-dot); }
.slider-dot.active::after         { background: var(--color-nav-dot); }

/* ===== TRUST BAR (Section 3) ===== */
.trust-bar { background: var(--color-white); }
.trust-bar__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-card {
  padding: 30px 40px;
  border-right: 1px solid var(--color-border);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
}
.trust-card:last-child { border-right: none; }
.trust-card__icon { display: flex; align-items: center; justify-content: center; }
.trust-card__title {
  font-size: 1.05rem; font-weight: 700; color: var(--color-heading); line-height: 1.3;
}
.trust-card__sub { font-size: .88rem; color: var(--color-text); font-weight: 300; }

/* ===== CLUB PICKER (Section 4) ===== */
.club-picker { padding: 60px 0; }
.club-picker__title {
  text-align: center; font-size: 2.25rem; font-weight: 700;
  color: var(--color-heading); margin-bottom: 44px;
}
.club-ticker { overflow: hidden; }
.club-ticker__inner {
  display: flex; gap: 40px; align-items: center;
  animation: clubScroll 20s linear infinite;
  width: max-content;
}
@keyframes clubScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.club-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer; flex-shrink: 0;
}
.club-circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-size: 1rem; font-weight: 900; color: #fff; letter-spacing: .05em;
  transition: transform .3s, box-shadow .3s;
}
.club-item:hover .club-circle {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.club-item > span {
  font-size: .82rem; font-weight: 600; color: var(--color-text);
  text-align: center; white-space: nowrap;
}

/* ===== PRODUCTS CAROUSEL SECTION (Section 5) ===== */
.products-carousel-section { padding: 70px 0; }
.carousel-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; gap: 20px;
}
.carousel-arrows-group { display: flex; gap: 8px; flex-shrink: 0; }
.carr-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--color-border); background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-dark); font-size: .82rem;
  transition: all var(--transition); cursor: pointer;
}
.carr-arrow:hover { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }

/* Carousel track */
.carousel { overflow: hidden; }
.carousel__track {
  display: flex; gap: 20px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.carousel__slide { flex: 0 0 calc(25% - 15px); min-width: 0; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* CSS-only image hover swap */
.product-image-wrapper {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--color-grey-light);
}
.product-image-wrapper a { display: block; width: 100%; height: 100%; }
.img-default {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1; transition: opacity .3s ease;
}
.img-hover {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1; opacity: 0; transition: opacity .3s ease;
}
.product-card:hover .img-default { opacity: 0; }
.product-card:hover .img-hover   { opacity: 1; }

.badge-discount {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: var(--color-badge-red); color: #fff;
  padding: 4px 8px; font-size: .7rem; font-weight: 700; border-radius: 2px;
}

.product-info { padding: 14px 14px 8px; }
.product-name {
  font-size: .88rem; font-weight: 600; color: var(--color-heading);
  line-height: 1.35; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-name a { color: inherit; transition: color var(--transition); }
.product-name a:hover { color: var(--color-primary); }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-old { font-size: .8rem; color: var(--color-price-old); text-decoration: line-through; }
.price-new { font-size: 1rem; font-weight: 700; color: var(--color-price-new); }

.product-actions { padding: 0 14px 14px; }
.btn-add-cart {
  display: block; width: 100%; padding: 10px;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--color-dark); color: #fff; border: none; cursor: pointer;
  transition: background var(--transition); margin-bottom: 6px;
}
.btn-add-cart:hover { background: var(--color-primary); }
.btn-quick-view {
  display: block; text-align: center;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-text); text-decoration: underline;
  padding: 4px 0; transition: color var(--transition);
}
.btn-quick-view:hover { color: var(--color-primary); }

/* Small card variant — 3-column style */
.product-card--sm .product-image-wrapper { aspect-ratio: 1/1; }
.product-card--sm .product-info    { padding: 12px 12px 6px; }
.product-card--sm .product-name    { font-size: .88rem; }
.product-card--sm .product-actions { padding: 0 12px 12px; }
.product-card--sm .btn-add-cart    { font-size: .75rem; padding: 10px; }
.product-card--sm .btn-quick-view  { display: none; }

/* ===== SECTION 6 — NEW SEASON SPLIT ===== */
.split-section {
  display: grid; grid-template-columns: 2fr 5fr;
  min-height: 680px;
}
.split-section__banner { overflow: hidden; }
.split-banner {
  background-size: cover; background-position: center top;
  height: 100%; min-height: 680px;
  position: relative; display: flex; align-items: flex-end;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
}
.split-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}
.split-banner__content {
  position: relative; z-index: 1; padding: 50px 44px; color: #fff;
}
.split-banner__italic { font-style: italic; font-size: .95rem; opacity: .8; margin-bottom: 10px; }
.split-banner__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px;
}
.split-section__grid {
  background: transparent;
  padding: 30px; display: flex; align-items: flex-start;
}
.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  width: 100%; align-content: start;
}

/* ===== SECTION 7 — RETRO JERSEYS ===== */
.retro-section { padding: 70px 0; background: var(--color-grey-light); }
.retro-section__inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start;
}
.retro-promo { display: flex; flex-direction: column; gap: 24px; }
.retro-promo__img {
  position: relative; min-height: 320px;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.retro-promo__text { }
.retro-promo__text .btn { margin-top: 20px; }

.circle-badge {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--color-badge-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-weight: 700; font-size: 13px; line-height: 1.3;
  position: absolute; top: 50%; right: -50px; transform: translateY(-50%);
  z-index: 2; box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

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

/* ===== SECTION 8 — NATIONAL TEAM PICKER ===== */
.national-picker { padding: 70px 0; background: var(--color-primary-light); }
.national-picker__title {
  text-align: center; font-size: 2rem; font-weight: 700;
  color: var(--color-heading); margin-bottom: 48px;
}
.national-picker__grid {
  display: grid; grid-template-columns: repeat(8,1fr); gap: 20px;
}
.nat-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; cursor: pointer; text-decoration: none;
}
.national-circle {
  width: 140px; height: 140px; border-radius: 50%; overflow: hidden;
  margin: 0 auto;
  border: 3px solid rgba(255,255,255,.6);
  transition: transform .3s, box-shadow .3s;
}
.nat-item:hover .national-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.nat-item > span { font-size: .9rem; font-weight: 600; color: var(--color-heading); }

/* ===== SECTION 9 — PRODUCTS GRID 5-COL ===== */
.all-products-section { padding: 70px 0; }
.all-products-section__title {
  text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--color-heading); margin-bottom: 40px;
}
.products-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

/* ===== SECTIONS 10, 11, 13 — SPLIT CAROUSEL ===== */
.split-carousel-section { padding: 70px 0; }
.split-carousel-section--grey { background: var(--color-grey-light); }
.split-carousel-section__inner {
  display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start;
}
.split-carousel-section__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; gap: 16px;
}

.side-promo {
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end;
}
.side-promo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 65%, transparent 100%);
}
.side-promo__content { position: relative; z-index: 1; padding: 32px 28px; color: #fff; }
.side-promo__sub {
  font-size: .82rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; opacity: .8; margin-bottom: 6px;
}
.side-promo__small { font-size: .78rem; opacity: .65; margin-bottom: 4px; }
.side-promo__title { font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }

/* ===== SECTION 12 — LEGENDS COLLECTIONS ===== */
.legends-section { padding: 70px 0; background: var(--color-grey-light); }
.legends-section__title {
  text-align: center; font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--color-heading); margin-bottom: 44px;
}
.legends-inner { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: start; }
.legends-promo {
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end;
}
.legends-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ===== SECTION 14 — VISITOR GRID ===== */
.visitor-section { padding: 60px 0 0; }
.visitor-section__title {
  text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--color-heading); margin-bottom: 40px;
}
.visitor-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; }
.visitor-item { overflow: hidden; }
.visitor-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .3s ease; display: block;
}
.visitor-item:hover img { transform: scale(1.05); }

/* ===== SECTION 15 — NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0; background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.newsletter-section__inner {
  max-width: 620px; margin: 0 auto; text-align: center;
}
.newsletter-section__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--color-heading); margin-bottom: 12px;
}
.newsletter-section__inner h2 strong { color: var(--color-primary); }
.newsletter-section__inner p {
  font-size: .9rem; color: var(--color-text); margin-bottom: 32px; line-height: 1.65;
}
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden;
}
.newsletter-form input {
  flex: 1; padding: 14px 18px; border: none; outline: none;
  font-family: var(--font-main); font-size: .9rem; color: var(--color-dark);
  background: var(--color-white);
}
.newsletter-form input::placeholder { color: rgba(0,0,0,.35); }
.newsletter-form button {
  padding: 14px 28px; background: var(--color-dark); color: #fff;
  border: none; font-weight: 700; font-size: .85rem; letter-spacing: .08em;
  cursor: pointer; transition: background var(--transition); flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--color-primary); }

/* ===== FOOTER (Section 16) ===== */
.site-footer { background: var(--color-black); color: rgba(255,255,255,.45); }
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px; padding: 60px 0 40px;
}
.footer-col--brand .site-logo { margin-bottom: 16px; }
.footer-col--brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; margin-bottom: 6px; }
.footer-tagline {
  display: block; font-style: italic; font-size: .82rem; opacity: .55; margin-bottom: 4px;
}
.footer-col h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-primary); }

.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-contact li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: rgba(255,255,255,.45); list-style: none;
}
.footer-contact li i { width: 16px; color: rgba(255,255,255,.25); flex-shrink: 0; }

.footer-social-row { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .88rem;
  transition: all var(--transition);
}
.footer-social-row a:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.footer-payments { display: flex; gap: 12px; font-size: 2rem; color: rgba(255,255,255,.45); }
.footer-payments i { transition: color var(--transition); }
.footer-payments i:hover { color: #fff; }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.site-footer__bottom-inner p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-lang {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(255,255,255,.45); cursor: pointer;
  transition: color var(--transition);
}
.footer-lang:hover { color: #fff; }

/* ===== OFFCANVAS (mobile nav) ===== */
/* ===== OFFCANVAS MOBILE DRAWER ===== */
.offcanvas {
  position: fixed; top: 0; left: 0;
  width: 340px; max-width: 100vw; height: 100dvh;
  background: var(--color-white); z-index: 1200;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: 4px 0 40px rgba(0,0,0,.45);
}
.offcanvas.open { transform: translateX(0); }

/* Head */
.offcanvas__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.offcanvas__logo {
  display: flex; align-items: center; gap: 10px;
}
.offcanvas__logo .site-logo__text {
  font-size: 1.1rem; font-weight: 900; letter-spacing: .02em;
}
.offcanvas__x {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--color-heading);
  background: none; border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.offcanvas__x:hover { background: var(--color-grey-light); color: var(--color-primary); }

/* Nav list */
.offcanvas__nav {
  flex: 1; overflow-y: auto; padding: 8px 0; display: flex; flex-direction: column;
}
.offcanvas__nav a,
.offcanvas__nav button.offcanvas__toggle {
  padding: 15px 22px; font-size: 1rem; font-weight: 600;
  color: var(--color-heading); letter-spacing: 0; text-transform: none;
  border-bottom: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left; background: none;
  border-top: none; border-left: none; border-right: none;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.offcanvas__nav a:hover,
.offcanvas__nav button.offcanvas__toggle:hover {
  color: var(--color-primary); background: var(--color-primary-light);
}
.offcanvas__toggle .oc-plus {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; flex-shrink: 0;
  transition: transform .25s ease, border-color .25s ease;
}
.offcanvas__toggle.is-open .oc-plus { transform: rotate(45deg); border-color: var(--color-primary); color: var(--color-primary); }

/* Sub list */
.offcanvas__sub { display: none; background: rgba(16,185,129,.04); }
.offcanvas__sub.open { display: block; }
.offcanvas__sub a {
  padding: 11px 22px 11px 36px; font-size: .875rem; font-weight: 500;
  text-transform: none; letter-spacing: 0; color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  display: block;
}
.offcanvas__sub a:hover { color: var(--color-primary); background: var(--color-primary-light); }

/* Foot */
.offcanvas__foot {
  padding: 16px 22px; border-top: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 14px; flex-shrink: 0;
}

/* Language row inside offcanvas */
.offcanvas__lang-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.oc-lang-btn {
  flex: 1; padding: 9px 14px;
  border: 1.5px solid var(--color-border); border-radius: 22px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: var(--color-text); background: none; cursor: pointer;
  transition: all var(--transition); text-align: center;
}
.oc-lang-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.oc-lang-btn.is-active {
  background: var(--color-primary); border-color: var(--color-primary);
  color: #fff;
}

/* ===== CART DRAWER ===== */
.backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.backdrop.on { opacity: 1; visibility: visible; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; width: 380px; max-width: 95vw;
  height: 100dvh; background: #fff; z-index: 1100;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-bottom: 1px solid var(--color-border);
}
.cart-drawer__head h3 { font-size: .95rem; font-weight: 700; color: var(--color-heading); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 50px 0; gap: 14px;
}
.cart-empty i { font-size: 2.8rem; color: var(--color-border); }
.cart-empty p { color: var(--color-text); font-size: .9rem; }
.cart-item {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item__img {
  width: 68px; height: 68px; border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0; background: var(--color-grey-light);
}
.cart-item__info { flex: 1; }
.cart-item__name { font-size: .84rem; font-weight: 600; color: var(--color-heading); margin-bottom: 3px; line-height: 1.3; }
.cart-item__row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid var(--color-border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--color-dark); transition: all var(--transition); cursor: pointer;
}
.qty-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.qty-val { font-size: .88rem; font-weight: 700; min-width: 18px; text-align: center; }
.cart-item__price { font-size: .92rem; font-weight: 700; color: var(--color-price-new); flex-shrink: 0; }
.cart-item__del { color: var(--color-text); font-size: .82rem; transition: color var(--transition); }
.cart-item__del:hover { color: var(--color-badge-red); }
.cart-drawer__foot { padding: 16px 22px; border-top: 1px solid var(--color-border); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.cart-total-row span { font-size: .85rem; font-weight: 600; color: var(--color-text); }
.cart-total-row strong { font-size: 1.18rem; color: var(--color-heading); }
.cart-note { font-size: .72rem; color: var(--color-text); text-align: center; margin-top: 10px; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-dark); color: #fff;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: .84rem; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 9999;
  pointer-events: none; white-space: nowrap;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== FLOATING — Social Sidebar ===== */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8800;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-btn {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  position: relative;
  /* tabs slide in from right — leave 3px gap from screen edge */
  transform: translateX(3px);
  border-radius: 8px 0 0 8px;
}
.social-btn:hover {
  transform: translateX(-4px) scale(1.08);
  box-shadow: -4px 4px 18px rgba(0,0,0,.28);
  filter: brightness(1.1);
}
.social-btn--telegram  { background: #0088CC; }
.social-btn--facebook  { background: #1877F2; }
.social-btn--instagram {
  background: linear-gradient(135deg, #E1306C 0%, #833AB4 100%);
}

/* ===== FLOATING — WhatsApp FAB ===== */
.wa-fab {
  position: fixed; bottom: 30px; right: 30px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-wa);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; color: #fff; font-size: 1.7rem;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  animation: waPulse 2s infinite;
  transition: transform var(--transition);
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.72); }
}

/* ===== FLOATING — Back to Top ===== */
.back-top {
  position: fixed; bottom: 96px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; z-index: 8900; cursor: pointer;
  box-shadow: var(--shadow-md); border: none;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
}
.back-top:hover { background: var(--color-primary); }
/* override [hidden] so we control visibility via JS removeAttribute */
.back-top[hidden] { display: flex !important; opacity: 0; pointer-events: none; transform: translateY(8px); }
.back-top:not([hidden]) { opacity: 1; transform: translateY(0); }

/* ===== FLOATING — Reviews Widget ===== */
.reviews-widget {
  position: fixed; bottom: 30px; left: 20px;
  background: var(--color-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 14px 18px;
  z-index: 8900; min-width: 156px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.reviews-widget__icon  { font-size: 1.4rem; line-height: 1; margin-bottom: 4px; }
.reviews-widget__label { font-size: .72rem; opacity: .7; margin-bottom: 4px; }
.reviews-widget__stars { font-size: 1rem; color: #f5c518; letter-spacing: 2px; margin-bottom: 3px; }
.reviews-widget__count { font-size: .7rem; opacity: .55; }

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9100;
  background: var(--color-white); border-top: 1px solid var(--color-border);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  justify-content: space-around; align-items: center;
}
.mbn-link {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .62rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-text); background: none; border: none; cursor: pointer;
  position: relative; padding: 4px 14px;
  transition: color var(--transition);
}
.mbn-link i { font-size: 1.2rem; }
.mbn-link:hover, .mbn-link:focus { color: var(--color-primary); outline: none; }
.mbn-badge {
  position: absolute; top: 0; right: 6px;
  background: var(--color-badge-red); color: #fff;
  font-size: .55rem; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 100px; display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* ===================================================================
   DARK THEME OVERRIDES — applied on top of existing rules
   =================================================================== */

/* ── Header: glass / blur ── */
.site-header {
  background: rgba(13,17,23,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header.is-sticky {
  background: rgba(13,17,23,.98);
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.header-row1 { border-bottom-color: rgba(255,255,255,.06); }
.header-row2 { border-bottom-color: rgba(255,255,255,.05); }

/* Nav text (original uses --color-dark = #222 which is invisible on dark bg) */
.pnav-link { color: var(--color-heading); }
.pnav-item:hover .pnav-link { color: var(--color-primary); }
.pnav-link--sale { color: var(--color-badge-red) !important; }
.icon-btn { color: var(--color-heading); }
.icon-btn:hover { background: rgba(255,255,255,.08); color: var(--color-primary); }
.site-logo__text { color: var(--color-heading); }
.site-logo__text em { color: var(--color-text); }
.burger-btn span { background: var(--color-heading); }

/* Sub-nav */
.snav-link { color: var(--color-text); }
.snav-link:hover { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.snav-link--sale { color: var(--color-badge-red) !important; }
.snav-item.is-active .snav-link { color: var(--color-primary); border-bottom-color: var(--color-primary); }

/* Primary nav dropdown */
.drop-menu {
  background: #161f2e;
  border-color: rgba(255,255,255,.06);
  border-top-color: var(--color-primary);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
}
.drop-col { border-right-color: rgba(255,255,255,.05); }
.drop-col a { color: var(--color-text); }
.drop-col a:hover { color: var(--color-primary); }
.drop-col h6 { color: var(--color-primary); border-bottom-color: rgba(255,255,255,.05); }

/* Sub-nav floating mega panel */
#sdropMegaPanel { background: #161f2e; border-top-color: var(--color-primary); }
.sdrop-col { border-right-color: rgba(255,255,255,.05); }
.sdrop-col a { color: var(--color-text); }
.sdrop-col a:hover { color: var(--color-primary); }
.sdrop-col h6 { color: var(--color-primary); border-bottom-color: rgba(255,255,255,.05); }

/* Offcanvas (mobile nav) — dark theme */
.offcanvas { background: #141A20; }
.offcanvas__head { border-bottom-color: rgba(255,255,255,.07); }
.offcanvas__x { color: var(--color-heading); }
.offcanvas__x:hover { background: rgba(255,255,255,.08); }
.offcanvas__nav a,
.offcanvas__nav button.offcanvas__toggle {
  color: var(--color-heading); border-bottom-color: rgba(255,255,255,.06);
}
.offcanvas__nav a:hover,
.offcanvas__nav button.offcanvas__toggle:hover {
  color: var(--color-primary); background: rgba(16,185,129,.07);
}
.offcanvas__toggle .oc-plus { border-color: rgba(255,255,255,.15); color: var(--color-text); }
.offcanvas__sub { background: #0d1117; }
.offcanvas__sub a { color: var(--color-text); border-bottom-color: rgba(255,255,255,.04); }
.offcanvas__sub a:hover { color: var(--color-primary); background: rgba(16,185,129,.07); }
.offcanvas__foot { border-top-color: rgba(255,255,255,.07); }
.oc-lang-btn { border-color: rgba(255,255,255,.12); color: var(--color-text); }
.oc-lang-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ── Hero ── */
.slide__h1 { color: var(--color-heading); }
.slide__h1--green { color: var(--color-primary); }
.slide__h2 { color: var(--color-text); }
.slide__wm { -webkit-text-stroke: 1px rgba(255,255,255,.03); color: transparent; }
.shapes { display: none; }
.slider-arrow {
  background: rgba(20,26,36,.75);
  color: var(--color-heading);
  border: 1px solid rgba(255,255,255,.12);
}
.slider-arrow:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.slider-dot::after { background: rgba(255,255,255,.2); }
.slider-dot.active { border-color: var(--color-primary); }
.slider-dot.active::after { background: var(--color-primary); }

/* Ken Burns on active hero image */
@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0px, 0px); }
  33%  { transform: scale(1.09) translate(-8px, 4px); }
  66%  { transform: scale(1.06) translate(6px, -4px); }
  100% { transform: scale(1.02) translate(0px, 0px); }
}
.slide--active .slide__media img {
  animation: kenBurns 22s ease-in-out infinite;
  will-change: transform;
}

/* Hero text fade-up entrance (active slide only) */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide--active .slide__tag    { animation: fadeUpIn .55s .05s both; }
.slide--active .slide__h2     { animation: fadeUpIn .55s .15s both; }
.slide--active .slide__h1     { animation: fadeUpIn .55s .28s both; }
.slide--active .slide__content .btn,
.slide--active .slide__content .btn-text-link { animation: fadeUpIn .55s .42s both; }

/* ── Trust bar ── */
.trust-card__icon svg { stroke: var(--color-primary) !important; }
.trust-card__title { color: var(--color-heading); }
.trust-card { border-right-color: rgba(255,255,255,.06); }
.trust-bar { border-top-color: rgba(255,255,255,.05); border-bottom-color: rgba(255,255,255,.05); }

/* ── Section headings ── */
.section-title { color: var(--color-heading); }
.all-products-section__title { color: var(--color-heading); }
.visitor-section__title { color: var(--color-heading); }
.legends-section__title { color: var(--color-heading); }
.club-picker__title { color: var(--color-heading); }

/* ── Product card dark ── */
.product-card {
  background: #1a2332;
  border-color: rgba(255,255,255,.07);
  border-radius: var(--radius);
}
.product-card:hover {
  border-color: rgba(16,185,129,.28);
  box-shadow: 0 18px 52px rgba(0,0,0,.5);
  transform: translateY(-6px);
}
.product-image-wrapper { background: #0d1117; }
.product-name a { color: var(--color-heading); }
.product-name a:hover { color: var(--color-primary); }

/* Gradient discount badge */
.badge-discount {
  background: linear-gradient(135deg, #e02020 0%, #9b1010 100%);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: .68rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(224,32,32,.4);
}

/* Gradient CTA button */
.btn-add-cart {
  background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
  color: #fff;
  border-radius: var(--radius);
  transition: all .28s cubic-bezier(.4,0,.2,1);
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 6px 20px rgba(16,185,129,.38);
  transform: translateY(-1px);
}
.btn-quick-view { color: var(--color-text); }
.btn-quick-view:hover { color: var(--color-primary); }

/* ── Carousel arrows dark ── */
.carr-arrow {
  background: #1a2332;
  border-color: rgba(255,255,255,.1);
  color: var(--color-heading);
}
.carr-arrow:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ── Buttons ── */
.btn--green:hover { box-shadow: 0 6px 20px rgba(16,185,129,.38); }
.btn--outline { color: var(--color-heading); border-color: rgba(255,255,255,.2); }
.btn--outline:hover { color: var(--color-primary); border-color: var(--color-primary); }
.btn--white { background: #fff; color: #0B0E11; border-color: #fff; }
.btn--white:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-text-link { color: var(--color-heading); }
.btn-text-link:hover { color: var(--color-primary); }

/* ── National picker ── */
.national-picker {
  background: linear-gradient(145deg, #0B0E11 0%, #141A20 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.national-picker__title { color: var(--color-heading); }
.national-circle {
  border-color: rgba(255,255,255,.15);
}
.national-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nat-item > span { color: var(--color-text); }
.nat-item:hover > span { color: var(--color-heading); }
.nat-item:hover .national-circle {
  border-color: transparent;
  box-shadow: 0 0 0 3px var(--color-primary), 0 12px 32px rgba(0,0,0,.55);
  transform: scale(1.08);
}

/* ── Split section grid ── */
.split-section__grid { background: transparent; }

/* ── Retro / legends sections ── */
.retro-section { background: #0d1117; }
.retro-promo__text p { color: var(--color-text); }
.legends-section { background: #1a2332; }
.split-carousel-section--grey { background: #1a2332; }

/* ── Visitor section ── */
.visitor-section { background: #0d1117; }

/* ── Newsletter section ── */
.newsletter-section { background: #0d1117; border-top-color: rgba(255,255,255,.06); }
.newsletter-section__inner h2 { color: var(--color-heading); }
.newsletter-section__inner p { color: var(--color-text); }
.newsletter-form { border-color: rgba(255,255,255,.1); }
.newsletter-form input { background: rgba(255,255,255,.04); color: var(--color-heading); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.18); }
.newsletter-form button { background: var(--color-primary); }
.newsletter-form button:hover { background: var(--color-primary-hover); }

/* ── Cart drawer dark ── */
.cart-drawer { background: #141A20; }
.cart-drawer__head { border-bottom-color: rgba(255,255,255,.07); }
.cart-drawer__head h3 { color: var(--color-heading); }
.cart-drawer__foot { border-top-color: rgba(255,255,255,.07); }
.cart-total-row span { color: var(--color-text); }
.cart-total-row strong { color: var(--color-heading); }
.cart-item { border-bottom-color: rgba(255,255,255,.05); }
.cart-item__name { color: var(--color-heading); }
.cart-item__img { background: #0d1117; }
.qty-btn { border-color: rgba(255,255,255,.12); color: var(--color-heading); }
.qty-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ── Floating elements ── */
.back-top {
  background: #1a2332;
  color: var(--color-heading);
  border: 1px solid rgba(255,255,255,.1);
}
.back-top:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.reviews-widget {
  background: #141A20;
  border: 1px solid rgba(255,255,255,.1);
}
.reviews-widget__label { color: var(--color-text); opacity: 1; }
.reviews-widget__count { color: var(--color-text); opacity: 1; }
.toast {
  background: #1a2332;
  color: var(--color-heading);
  border: 1px solid rgba(255,255,255,.1);
}

/* ── Mobile bottom nav ── */
.mobile-bottom-nav { background: #141A20; border-top-color: rgba(255,255,255,.07); }
.mbn-link { color: var(--color-text); }
.mbn-link:hover, .mbn-link:focus { color: var(--color-primary); }

/* ── Search overlay accent ── */
.search-overlay__tags a:hover { border-color: var(--color-primary); color: #fff; }

/* ── Footer links ── */
.footer-col ul li a:hover { color: var(--color-primary); }
.footer-social-row a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .18s; }
.reveal--d3 { transition-delay: .28s; }
.reveal--d4 { transition-delay: .38s; }

/* ── Pick-section override for primary accent ── */
.pick-title em { color: var(--color-primary) !important; }
.pick-divider  { background: var(--color-primary) !important; }
.nation-circle:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,.35), 0 10px 28px rgba(0,0,0,.5) !important;
}

/* ── Side-promo text colour ── */
.side-promo__sub { color: rgba(255,255,255,.8); }
.side-promo__title { color: #fff; }
.split-banner__italic { color: rgba(255,255,255,.75); }
.split-banner__title { color: #fff; }

/* ── Cart empty state ── */
.cart-empty i { color: rgba(255,255,255,.15); }
.cart-empty p { color: var(--color-text); }

/* ── Eyebrow labels ── */
.eyebrow { color: var(--color-primary); }

/* ── Section separator lines in footer ── */
.site-footer__bottom { border-top-color: rgba(255,255,255,.06); }

/* ── Product card small variant ── */
.product-card--sm .product-name a { color: var(--color-heading); }

/* ── Circle badge (retro) ── */
.circle-badge {
  background: linear-gradient(135deg, #e02020, #9b1010);
  box-shadow: 0 4px 16px rgba(224,32,32,.35);
}

/* ── All Products section heading ── */
.all-products-section { background: #141A20; }

/* ── Visitor section image grid ── */
.visitor-item img { filter: brightness(.9) contrast(1.05); }
.visitor-item:hover img { filter: brightness(1) contrast(1.1); transform: scale(1.06); }

/* === END DARK THEME OVERRIDES === */

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
  position: relative;
}
.lang-dropdown__btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: .84rem; font-weight: 600;
  color: var(--color-heading);
  border: 1px solid transparent;
  background: none; cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap; font-family: inherit;
  height: 40px;
}
.lang-dropdown__btn:hover {
  background: var(--color-primary-light);
  border-color: rgba(16,185,129,.25);
}
.lang-dropdown__chevron {
  font-size: .65rem; color: var(--color-text);
  transition: transform .22s ease;
  margin-top: 1px;
}
.lang-dropdown.is-open .lang-dropdown__btn {
  background: var(--color-primary-light);
  border-color: rgba(16,185,129,.3);
}
.lang-dropdown.is-open .lang-dropdown__chevron {
  transform: rotate(180deg);
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 148px;
  background: #1c2535;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 5px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.3);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 600;
}
.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.lang-dropdown__menu li {
  padding: 10px 14px;
  font-size: .875rem; font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  border-radius: 8px;
  transition: color .15s, background .15s;
  user-select: none;
}
.lang-dropdown__menu li:hover {
  background: var(--color-primary-light);
  color: var(--color-heading);
}
.lang-dropdown__menu li.is-active {
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-btn { font-size: 1rem; }

/* ===== LIGHT MODE THEME ===== */
[data-theme="light"] {
  --color-black:      #ffffff;
  --color-dark:       #f0f4f8;
  --color-grey-bg:    #edf2f7;
  --color-grey-light: #e2e8f0;
  --color-white:      #ffffff;
  --color-border:     rgba(0,0,0,.1);
  --color-text:       #4a5568;
  --color-heading:    #1a202c;
  --color-price-old:  #9ca3af;
}
[data-theme="light"] body { background: #f5f7fa; color: #4a5568; }
[data-theme="light"] .site-header {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(0,0,0,.08);
}
[data-theme="light"] .site-header.is-sticky {
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
[data-theme="light"] .header-row1 { border-bottom-color: rgba(0,0,0,.06); }
[data-theme="light"] .header-row2 {
  border-bottom-color: rgba(0,0,0,.05);
  background: rgba(248,250,252,.95);
}
[data-theme="light"] .pnav-link { color: #1a202c; }
[data-theme="light"] .snav-link { color: #4a5568; }
[data-theme="light"] .icon-btn { color: #1a202c; }
[data-theme="light"] .icon-btn:hover { background: #e2e8f0; color: var(--color-primary); }
[data-theme="light"] .site-logo__text { color: #1a202c; }
[data-theme="light"] .site-logo__text em { color: #4a5568; }
[data-theme="light"] .burger-btn span { background: #1a202c; }
[data-theme="light"] .drop-menu {
  background: #ffffff;
  border-color: rgba(0,0,0,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
[data-theme="light"] .drop-col { border-right-color: rgba(0,0,0,.06); }
[data-theme="light"] .drop-col a { color: #4a5568; }
[data-theme="light"] .drop-col h6 { color: var(--color-primary); border-bottom-color: rgba(0,0,0,.06); }
[data-theme="light"] #sdropMegaPanel { background: #ffffff; border-top-color: var(--color-primary); }
[data-theme="light"] .sdrop-col { border-right-color: rgba(0,0,0,.05); }
[data-theme="light"] .sdrop-col a { color: #4a5568; }
[data-theme="light"] .product-card { background: #ffffff; border-color: rgba(0,0,0,.08); }
[data-theme="light"] .product-name a { color: #1a202c; }
[data-theme="light"] .section-title { color: #1a202c; }
[data-theme="light"] .cart-drawer { background: #ffffff; }
[data-theme="light"] .cart-drawer__head { border-bottom-color: rgba(0,0,0,.1); }
[data-theme="light"] .cart-drawer__foot { border-top-color: rgba(0,0,0,.1); }
[data-theme="light"] .cart-drawer__head h3 { color: #1a202c; }
[data-theme="light"] .search-overlay { background: rgba(255,255,255,.97); }
[data-theme="light"] .search-overlay__bar { border-bottom-color: rgba(0,0,0,.2); }
[data-theme="light"] .search-overlay__bar i { color: rgba(0,0,0,.4); }
[data-theme="light"] .search-overlay__input { color: #1a202c; }
[data-theme="light"] .search-overlay__input::placeholder { color: rgba(0,0,0,.25); }
[data-theme="light"] .search-overlay__tags span { color: rgba(0,0,0,.4); }
[data-theme="light"] .search-overlay__tags a { color: rgba(0,0,0,.6); border-color: rgba(0,0,0,.15); }
[data-theme="light"] .all-products-section { background: #edf2f7; }
/* Light mode dropdown */
[data-theme="light"] .lang-dropdown__btn { color: #1a202c; }
[data-theme="light"] .lang-dropdown__btn:hover { background: #f0f9f5; border-color: rgba(16,185,129,.3); }
[data-theme="light"] .lang-dropdown.is-open .lang-dropdown__btn { background: #f0f9f5; }
[data-theme="light"] .lang-dropdown__chevron { color: #4a5568; }
[data-theme="light"] .lang-dropdown__menu { background: #ffffff; border-color: rgba(0,0,0,.1); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
[data-theme="light"] .lang-dropdown__menu li { color: #4a5568; }
[data-theme="light"] .lang-dropdown__menu li:hover { background: #f0f9f5; color: #1a202c; }
/* Light mode offcanvas */
[data-theme="light"] .offcanvas { background: #ffffff; }
[data-theme="light"] .offcanvas__head { border-bottom-color: rgba(0,0,0,.08); }
[data-theme="light"] .offcanvas__x { color: #1a202c; }
[data-theme="light"] .offcanvas__x:hover { background: #f0f4f8; }
[data-theme="light"] .offcanvas__nav a,
[data-theme="light"] .offcanvas__nav button.offcanvas__toggle { color: #1a202c; border-bottom-color: rgba(0,0,0,.08); }
[data-theme="light"] .offcanvas__nav a:hover,
[data-theme="light"] .offcanvas__nav button.offcanvas__toggle:hover { background: #f0f9f5; }
[data-theme="light"] .offcanvas__toggle .oc-plus { border-color: rgba(0,0,0,.18); color: #4a5568; }
[data-theme="light"] .offcanvas__sub { background: #f8fafb; }
[data-theme="light"] .offcanvas__sub a { color: #4a5568; border-bottom-color: rgba(0,0,0,.06); }
[data-theme="light"] .offcanvas__foot { border-top-color: rgba(0,0,0,.08); }
[data-theme="light"] .oc-lang-btn { border-color: rgba(0,0,0,.18); color: #4a5568; }
[data-theme="light"] .mobile-bottom-nav { background: #ffffff; border-top-color: rgba(0,0,0,.1); }
[data-theme="light"] .mbn-link { color: #4a5568; }
