/* ==========================================================================
   KINETIQ — retail foundation theme (white / bright lime / black)
   One shared stylesheet for every page. Brand colours live in :root only.
   ========================================================================== */
:root {
  --lime: #C8FF00;        /* primary accent — backgrounds, buttons, tags. Never as text on white. */
  --lime-hover: #B4E600;
  --lime-soft: #F3FFD1;   /* pale tint for chips / highlights */
  --ink: #0A0A0A;         /* black accents, text */
  --ink-2: #1C1C1C;
  --bg: #FFFFFF;
  --soft: #F5F5F3;        /* light section background */
  --line: #E4E4E0;
  --muted: #5C5C58;       /* secondary text — 6.6:1 on white */
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1360px;
  --gutter: clamp(16px, 4vw, 48px);
  --font: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --shadow: 0 10px 30px rgba(10,10,10,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
.display, h1, h2, h3 { font-family: var(--font); font-stretch: 125%; font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -.01em; }
.display { font-size: clamp(44px, 8vw, 112px); font-style: italic; }
h1 { font-size: clamp(36px, 5.5vw, 76px); font-style: italic; }
h2 { font-size: clamp(28px, 3.6vw, 48px); font-style: italic; }
h3 { font-size: 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 18px; height: 6px; background: var(--lime); transform: skewX(-20deg); }
.eyebrow.on-dark { color: var(--lime); }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); max-width: 640px; }
.hl { background: var(--lime); color: var(--ink); padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 28px; border-radius: 999px; font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--ink); color: var(--lime); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--lime); color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-sm { min-height: 42px; padding: 0 20px; font-size: 12px; }
.link-arrow { font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--lime); padding-bottom: 2px; }
.link-arrow:hover { border-color: var(--ink); }

/* ---------- Announcement bar ---------- */
.announce { background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 9px 16px; }
.announce b { color: var(--lime); font-weight: 800; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 28px; width: auto; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { list-style: none; display: flex; gap: 4px; }
.main-nav a { display: block; padding: 10px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; color: var(--ink); transition: background .15s; }
.main-nav a:hover { background: var(--soft); }
.main-nav a.active { background: var(--ink); color: #fff; }
.header-cta { flex: none; }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

@media (max-width: 1180px) {
  .main-nav a { padding: 10px 8px; font-size: 12px; }
}
@media (max-width: 1040px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; position: fixed; inset: 0 0 0 auto; top: 0; width: min(420px, 100%); background: #fff; z-index: 120; transform: translateX(100%); transition: transform .28s ease; padding: 88px 24px 32px; overflow-y: auto; box-shadow: -20px 0 60px rgba(0,0,0,.15); }
  .mobile-nav a { display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; border-bottom: 1px solid var(--line); font-weight: 900; font-stretch: 125%; font-style: italic; font-size: 22px; text-transform: uppercase; text-decoration: none; }
  .mobile-nav a::after { content: "→"; font-style: normal; font-size: 18px; }
  .mobile-nav .btn { width: 100%; margin-top: 24px; }
  .mobile-nav .btn::after { content: none; }
  .nav-open .mobile-nav { transform: none; }
  .nav-open .nav-toggle { position: relative; z-index: 130; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(10,10,10,.45); z-index: 110; opacity: 0; pointer-events: none; transition: opacity .2s; }
  .nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  .nav-open { overflow: hidden; }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: clamp(560px, 82vh, 860px); color: #fff; overflow: hidden; background: var(--ink); display: flex; align-items: flex-end; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.05) 30%, rgba(10,10,10,.78) 100%), linear-gradient(90deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 60%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 7vw, 88px); }
.hero-content .display { max-width: 11ch; margin: 16px 0 18px; }
.hero-content p { font-size: clamp(16px, 1.5vw, 20px); max-width: 560px; color: #F0F0F0; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots { position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(40px, 7vw, 88px); display: flex; gap: 8px; }
.hero-dots button { width: 34px; height: 5px; border: 0; border-radius: 3px; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; }
.hero-dots button.active { background: var(--lime); }

/* ---------- Ticker ---------- */
.ticker { background: var(--lime); color: var(--ink); overflow: hidden; white-space: nowrap; border-block: 2px solid var(--ink); }
.ticker-track { display: inline-flex; gap: 40px; padding: 14px 0; animation: ticker 38s linear infinite; font-weight: 900; font-stretch: 125%; font-style: italic; font-size: 20px; text-transform: uppercase; }
.ticker-track span::after { content: "✦"; margin-left: 40px; font-style: normal; font-size: 14px; vertical-align: middle; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } .hero-slide { transition: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-soft { background: var(--soft); }
.section-ink { background: var(--ink); color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(24px, 3.5vw, 44px); flex-wrap: wrap; }
.section-head h2 { margin-top: 10px; }
.section-head p { color: var(--muted); max-width: 520px; margin-top: 10px; }
.section-ink .section-head p { color: #BDBDB8; }

/* ---------- Shop by sport tiles ---------- */
.sport-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.sport-tile { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--ink); text-decoration: none; color: #fff; }
.sport-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sport-tile:hover img { transform: scale(1.06); }
.sport-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.75)); }
.sport-tile .label { position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 14px; display: flex; justify-content: space-between; align-items: center; font-weight: 900; font-stretch: 125%; font-style: italic; text-transform: uppercase; font-size: 20px; }
.sport-tile .label i { width: 36px; height: 36px; border-radius: 50%; background: var(--lime); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-style: normal; font-size: 16px; transition: transform .2s; }
.sport-tile:hover .label i { transform: rotate(-45deg); }
@media (max-width: 1100px) { .sport-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sport-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .sport-tile .label { font-size: 16px; } }

/* ---------- Product cards ---------- */
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 22px); }
@media (max-width: 1100px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .p-grid { grid-template-columns: repeat(2, 1fr); } }
.p-card { position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.p-card[hidden] { display: none; }
.p-media { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--soft); }
.p-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: opacity .35s ease, transform .6s ease; }
.p-media img.alt { opacity: 0; object-fit: contain; background: #fff; padding: 8%; }
.p-card:hover .p-media img.main { transform: scale(1.04); }
@media (hover: hover) { .p-card:hover .p-media img.alt { opacity: 1; } }
.p-media.mockup img.main { object-fit: contain; background: #fff; padding: 8%; }
.p-flag { position: absolute; z-index: 2; top: 12px; left: 12px; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.p-go { position: absolute; z-index: 2; right: 12px; bottom: 12px; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: transform .2s, background .2s, color .2s; }
.p-card:hover .p-go { background: var(--lime); color: var(--ink); transform: rotate(-45deg); }
.p-body { padding: 14px 2px 4px; }
.p-tag { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.p-name { font-size: 17px; font-weight: 800; line-height: 1.25; margin: 4px 0 6px; }
.p-desc { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: .04em; background: #fff; }
.chip b { color: var(--muted); font-weight: 700; }
.chip-lime { background: var(--lime-soft); border-color: #D9F28A; }

/* rail (horizontal scroller) */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 20px) / 4); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }
@media (max-width: 1100px) { .rail { grid-auto-columns: 40%; } }
@media (max-width: 640px) { .rail { grid-auto-columns: 72%; gap: 12px; } }
.rail-btns { display: flex; gap: 8px; }
.rail-btns button { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink); background: #fff; cursor: pointer; font-size: 18px; }
.rail-btns button:hover { background: var(--ink); color: #fff; }

/* ---------- Promo split ---------- */
.promo-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.promo { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 520px; display: flex; align-items: flex-end; color: #fff; text-decoration: none; background: var(--ink); }
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.promo:hover img { transform: scale(1.04); }
.promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 35%, rgba(10,10,10,.82)); }
.promo-body { position: relative; z-index: 2; padding: clamp(24px, 3vw, 44px); }
.promo-body h2 { margin: 12px 0 10px; }
.promo-body p { color: #EDEDED; max-width: 440px; margin-bottom: 20px; }
.promo.lime { background: var(--lime); color: var(--ink); }
.promo.lime::after { content: none; }
.promo.lime p { color: var(--ink-2); }
@media (max-width: 900px) { .promo-grid { grid-template-columns: 1fr; } .promo { min-height: 420px; } }

/* ---------- USP strip ---------- */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp div { padding: 26px 22px; display: flex; gap: 14px; align-items: flex-start; }
.usp div + div { border-left: 1px solid var(--line); }
.usp svg { width: 30px; height: 30px; flex: none; stroke: var(--ink); }
.usp strong { display: block; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
.usp span { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .usp { grid-template-columns: 1fr 1fr; } .usp div:nth-child(3) { border-left: 0; } .usp div:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (max-width: 520px) { .usp { grid-template-columns: 1fr; } .usp div + div { border-left: 0; border-top: 1px solid var(--line); } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
.step { background: var(--ink-2); border: 1px solid #2E2E2E; border-radius: var(--radius); padding: 28px 24px 30px; }
.step-num { font-weight: 900; font-stretch: 125%; font-style: italic; font-size: 56px; line-height: 1; color: var(--lime); }
.step h3 { margin: 18px 0 10px; font-size: 19px; color: #fff; }
.step p { color: #BDBDB8; font-size: 15px; }
@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--soft); border-bottom: 1px solid var(--line); padding: clamp(40px, 6vw, 80px) 0 clamp(32px, 4.5vw, 56px); position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; right: -60px; top: -40px; width: 340px; height: 140%; background: var(--lime); transform: skewX(-20deg); opacity: .9; }
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { margin: 14px 0 14px; max-width: 16ch; }
.page-head p { color: var(--muted); max-width: 620px; font-size: 17px; }
@media (max-width: 760px) { .page-head::after { width: 110px; right: -50px; } }
.crumbs { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--ink); }

/* image header variant */
.page-head.image { background: var(--ink); color: #fff; min-height: 460px; display: flex; align-items: flex-end; border: 0; }
.page-head.image::after { content: none; }
.page-head.image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-head.image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,.1) 20%, rgba(10,10,10,.8)); }
.page-head.image .wrap { z-index: 2; width: 100%; }
.page-head.image p { color: #EDEDED; }

/* ---------- Catalogue ---------- */
.filters { position: sticky; top: 72px; z-index: 40; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.filters .wrap { display: flex; gap: 8px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; scrollbar-width: none; }
.filters .wrap::-webkit-scrollbar { display: none; }
.f-btn { flex: none; border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; color: var(--ink); }
.f-btn:hover { border-color: var(--ink); }
.f-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.f-btn.special { background: var(--lime); border-color: var(--lime); }
.f-btn.special.active { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.cat-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin: 28px 0 22px; flex-wrap: wrap; }
.cat-count { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.search { position: relative; }
.search input { border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 18px 11px 42px; font: inherit; font-size: 14px; width: min(320px, 78vw); background: #fff; }
.search input:focus { outline: none; border-color: var(--ink); }
.search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; stroke: var(--muted); }
.empty { padding: 60px 0; text-align: center; color: var(--muted); grid-column: 1/-1; }

.collars { display: none; }
.collars.show { display: block; }
.collar-group { margin-bottom: 40px; }
.collar-group h3 { font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.collar-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.collar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.collar { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.collar div { aspect-ratio: 1; background: var(--soft); display: flex; align-items: center; justify-content: center; padding: 10px; }
.collar img { max-height: 100%; object-fit: contain; }
.collar p { padding: 10px 12px; font-size: 13px; font-weight: 700; }
.collar p b { display: block; font-size: 11px; color: var(--muted); letter-spacing: .08em; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); padding: 28px 0 70px; align-items: start; }
.gallery { position: sticky; top: 96px; }
.g-main { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--soft); }
.g-main img, .g-main video { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-main img.contain, .g-main video { object-fit: contain; background: #fff; }
.g-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 0; box-shadow: var(--shadow); font-size: 20px; cursor: pointer; z-index: 2; }
.g-nav:hover { background: var(--lime); }
.g-prev { left: 14px; } .g-next { right: 14px; }
.g-count { position: absolute; left: 14px; bottom: 14px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 11px; border-radius: 999px; letter-spacing: .06em; }
.g-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.g-thumbs button { flex: 0 0 78px; height: 96px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: var(--soft); position: relative; }
.g-thumbs button.active { border-color: var(--ink); }
.g-thumbs img, .g-thumbs video { width: 100%; height: 100%; object-fit: cover; }
.g-thumbs .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,10,10,.35); color: #fff; font-size: 20px; }
.buybox h1 { font-size: clamp(30px, 3.4vw, 46px); margin: 10px 0 16px; }
.buybox .desc { font-size: 17px; color: var(--ink-2); margin-bottom: 22px; }
.buybox h2.small, .opt-label { font-size: 12px; font-style: normal; font-stretch: 100%; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin: 22px 0 10px; color: var(--ink); }
.feature-list { list-style: none; display: grid; gap: 8px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.feature-list li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; }
.codes { display: flex; flex-wrap: wrap; gap: 8px; }
.code { border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 14px; min-width: 120px; }
.code b { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.code span { font-weight: 800; font-size: 14px; letter-spacing: .02em; }
.moq-box { display: flex; align-items: center; gap: 14px; margin: 24px 0; padding: 14px 18px; border-radius: 12px; background: var(--lime-soft); border: 1px solid #D9F28A; font-size: 15px; }
.moq-box strong { font-size: 22px; font-weight: 900; font-stretch: 125%; font-style: italic; text-transform: uppercase; }
.buy-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.buy-actions .btn { width: 100%; }
.buy-actions .btn.full { grid-column: 1 / -1; }
.buy-links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.acc { border-top: 1px solid var(--line); margin-top: 28px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 22px; font-weight: 400; transition: transform .2s; }
.acc details[open] summary::after { transform: rotate(45deg); }
.acc .acc-body { padding: 0 0 20px; color: var(--muted); font-size: 15px; }
.acc .acc-body a { color: var(--ink); font-weight: 700; }
.specs { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.spec-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 2.5vw, 30px); }
.spec-card img { width: 100%; height: auto; }
.spec-card h2 { font-size: 26px; margin: 8px 0 18px; }
.spec-card .note { font-size: 13px; color: var(--muted); margin-top: 12px; }
@media (max-width: 960px) {
  .pdp { grid-template-columns: 1fr; padding-top: 16px; }
  .gallery { position: static; }
  .specs { grid-template-columns: 1fr; }
}
@media (max-width: 420px) { .buy-actions { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--lime); color: var(--ink); border-radius: var(--radius); padding: clamp(28px, 4.5vw, 64px); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band h2 { max-width: 16ch; }
.cta-band p { max-width: 520px; margin-top: 10px; color: var(--ink-2); }
.cta-band .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band.ink { background: var(--ink); color: #fff; }
.cta-band.ink p { color: #C8C8C3; }

/* ---------- Forms / contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(24px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 14px; }
.c-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; }
.c-card h3 { font-size: 20px; font-style: italic; margin-bottom: 12px; }
.c-card p, .c-card address { font-style: normal; color: var(--muted); font-size: 15px; line-height: 1.8; }
.c-card a { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--lime); }
.c-card a:hover { border-color: var(--ink); }
.c-card.ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.c-card.ink p { color: #C8C8C3; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 40px); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 7px; }
.form input, .form select, .form textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 14px; font: inherit; font-size: 15px; background: #fff; color: var(--ink); }
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px var(--lime); }
.form .btn { width: 100%; }
.form .note { font-size: 13px; color: var(--muted); text-align: center; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(24px, 5vw, 72px); align-items: start; }
.faq-layout aside { position: sticky; top: 100px; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } .faq-layout aside { position: static; } }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 48px 22px 0; font-weight: 800; font-size: 18px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--soft); display: flex; align-items: center; justify-content: center; font-weight: 400; font-size: 20px; transition: background .2s, transform .2s; }
.faq details[open] summary::after { background: var(--lime); transform: translateY(-50%) rotate(45deg); }
.faq .ans { padding: 0 0 24px; color: var(--muted); font-size: 16px; max-width: 70ch; }
.faq .ans a { color: var(--ink); font-weight: 700; }

/* ---------- Leavers ---------- */
.range-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .range-grid { grid-template-columns: 1fr 1fr; } }
.range-card { text-decoration: none; color: var(--ink); }
.range-card .p-media img { object-fit: cover; }
.style-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 72px); align-items: center; padding: clamp(28px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
.style-row.flip .style-img { order: 2; }
.style-img { border-radius: var(--radius); overflow: hidden; background: var(--soft); aspect-ratio: 1; }
.style-img img { width: 100%; height: 100%; object-fit: cover; }
.style-row h2 { margin: 10px 0 14px; }
.style-row p { color: var(--muted); margin-bottom: 18px; }
.spec-dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 0 0 18px; font-size: 15px; }
.spec-dl dt { font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; padding-top: 3px; }
.spec-dl dd { color: var(--ink-2); }
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
@media (max-width: 800px) { .style-row { grid-template-columns: 1fr; } .style-row.flip .style-img { order: 0; } }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mosaic img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
@media (max-width: 760px) { .mosaic { grid-template-columns: 1fr 1fr; } }
.sizing { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.sizing img { border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
@media (max-width: 800px) { .sizing { grid-template-columns: 1fr; } }

/* ---------- Off the shelf ---------- */
.supplier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.supplier { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink); background: #fff; transition: transform .2s, box-shadow .2s; }
.supplier:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.supplier .logo { height: 150px; background: var(--soft); display: flex; align-items: center; justify-content: center; padding: 28px; border-bottom: 1px solid var(--line); }
.supplier .logo img { max-height: 90px; max-width: 80%; object-fit: contain; }
.supplier .body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.supplier .cat { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.supplier h3 { font-size: 22px; font-style: italic; }
.supplier p { color: var(--muted); font-size: 15px; flex: 1; }
.note-box { display: flex; gap: 14px; align-items: flex-start; background: var(--ink); color: #fff; border-radius: var(--radius); padding: 20px 24px; margin-top: 26px; max-width: 760px; }
.note-box span:first-child { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 900; }

/* ---------- Kit builder ---------- */
.kb-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 80vh; background: #fff; }
.kb-steps { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- Design gallery ---------- */
.gl-bar { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin: 28px 0 16px; }
.gl-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.gl-filters .f-btn .c { color: var(--muted); font-weight: 600; margin-left: 4px; }
.gl-filters .f-btn.active .c { color: var(--lime); }
.gl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.gl-card { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.gl-thumb { aspect-ratio: 1; background: var(--soft); }
.gl-thumb img { width: 100%; height: 100%; object-fit: contain; }
.gl-info { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.gl-name { font-weight: 800; font-size: 14px; word-break: break-all; }
.gl-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.gl-dl { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; background: var(--ink); color: #fff; border-radius: 999px; padding: 6px 12px; text-decoration: none; border: 0; cursor: pointer; }
.gl-dl:hover { background: var(--lime); color: var(--ink); }
.gl-more { display: flex; justify-content: center; margin-top: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: clamp(48px, 7vw, 90px) 0 28px; margin-top: 0; }
.f-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.f-brand img { height: 34px; width: auto; margin-bottom: 18px; }
.f-brand p { color: #BDBDB8; font-size: 15px; max-width: 340px; }
.site-footer h4 { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #E6E6E1; text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: var(--lime); }
.site-footer address { font-style: normal; color: #BDBDB8; font-size: 15px; line-height: 1.75; }
.site-footer address strong { color: #fff; }
.f-big { margin: clamp(40px, 6vw, 80px) 0 24px; }
.f-big img { width: 100%; height: auto; opacity: .95; }
.f-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid #2A2A2A; padding-top: 22px; font-size: 13px; color: #A3A39E; }
.f-bottom b { color: var(--lime); font-weight: 700; }
@media (max-width: 900px) { .f-top { grid-template-columns: 1fr 1fr; } .f-brand { grid-column: 1/-1; } }
@media (max-width: 480px) { .f-top { grid-template-columns: 1fr; } }

/* ---------- Not found ---------- */
.not-found { padding: 100px 0; text-align: center; }
.not-found p { color: var(--muted); margin: 14px 0 28px; }

/* ---------- Chat widget (APEX snippet) re-themed for Kinetiq ---------- */
#dyo-chat-launcher, #dyo-chat-panel { --gold: #C8FF00; --gold-light: #C8FF00; --black: #FFFFFF; --dark: #F5F5F3; --dark2: #FFFFFF; --white: #0A0A0A; --text-muted: #5C5C58; }
#dyo-chat-launcher { background: #0A0A0A !important; color: #C8FF00 !important; box-shadow: 0 8px 24px rgba(10,10,10,.25) !important; }
#dyo-chat-panel { border: 1px solid #E4E4E0 !important; font-family: var(--font) !important; box-shadow: 0 20px 50px rgba(10,10,10,.18) !important; }
#dyo-chat-header { background: #0A0A0A !important; color: #fff !important; border-bottom: 3px solid #C8FF00 !important; }
#dyo-chat-header .dyo-title span { color: #C8FF00 !important; }
#dyo-chat-header .dyo-subtitle { color: #C8C8C3 !important; }
#dyo-chat-header-close { color: #C8C8C3 !important; }
#dyo-chat-messages { background: #F5F5F3 !important; }
#dyo-chat-panel .dyo-msg-bot { background: #fff !important; color: #0A0A0A !important; border: 1px solid #E4E4E0 !important; }
#dyo-chat-panel .dyo-msg a { color: #0A0A0A !important; font-weight: 700; text-decoration-color: #9BC400 !important; }
#dyo-chat-panel .dyo-msg-user { background: #0A0A0A !important; color: #fff !important; }
#dyo-chat-inputbar { background: #fff !important; border-top: 1px solid #E4E4E0 !important; }
#dyo-chat-input { background: #fff !important; color: #0A0A0A !important; border: 1.5px solid #E4E4E0 !important; }
#dyo-chat-input:focus { border-color: #0A0A0A !important; }
#dyo-chat-send { background: #C8FF00 !important; color: #0A0A0A !important; }
#dyo-chat-send:hover { background: #0A0A0A !important; color: #C8FF00 !important; }

/* ---------- Normalisers ---------- */
h3.p-name { font-stretch: 100%; font-style: normal; text-transform: none; letter-spacing: 0; line-height: 1.25; font-size: 17px; }
.usp p { margin: 0; }
.c-card h3 { font-stretch: 125%; }
.sport-tile .label i { font-style: normal; }
.page-head.image h1 { color: #fff; }
.page-head.image .crumbs a:hover { color: #fff; }

/* ---------- Review fixes (round 1) ---------- */
.display { line-height: 1.02; }
h3 { line-height: 1.1; }
.rail { scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.sport-tile .label { font-size: clamp(14px, 1.25vw, 19px); gap: 8px; }
.sport-tile .label i { flex: none; width: 32px; height: 32px; }
.promo.lime .eyebrow::before, .cta-band:not(.ink) .eyebrow::before, .promo .promo-panel .eyebrow::before { background: var(--ink); }
.promo .promo-panel { background: var(--lime); color: var(--ink); border-radius: calc(var(--radius) - 4px); margin: 14px; padding: clamp(20px, 2.6vw, 34px); }
.promo .promo-panel p { color: var(--ink-2); }
.promo.panel::after { background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,.35)); }
.sizing > *, .style-row > *, .specs > *, .contact-layout > *, .faq-layout > *, .pdp > *, .promo-grid > *, .f-top > * { min-width: 0; }
.sizing img { width: 100%; height: auto; }
.mosaic { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 760px) { .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
[hidden] { display: none !important; }
@media (max-width: 1040px) { .nav-open .site-header { z-index: 125; } }
@media (max-width: 1040px) {
  .mobile-nav { padding-top: 150px; }
  .mobile-nav a.btn { justify-content: center; font-size: 14px; font-style: normal; font-stretch: 100%; border-bottom: 0; padding: 0 28px; }
}
@media (max-width: 640px) { .hero-dots { bottom: 16px; left: var(--gutter); right: auto; } .hero-content { padding-bottom: 56px; } }

/* ---------- Review fixes (round 2, live check) ---------- */
.link-arrow svg { width: 16px; height: 16px; flex: none; }
.link-arrow { white-space: nowrap; }
.buybox h1 { font-size: clamp(28px, 2.7vw, 40px); line-height: 1; }
.moq-box strong { white-space: nowrap; font-size: 20px; }
.range-card .p-media img, .style-img img { object-fit: contain; background: #fff; padding: 6%; }
.gl-row { flex-wrap: wrap; }
.gl-dl { flex: none; }
.supplier .logo { background: #fff; }
.g-thumbs { scrollbar-width: none; }
.g-thumbs::-webkit-scrollbar { display: none; }
@media (max-width: 640px) {
  .hide-sm { display: none; }
  .page-head::after { display: none; }
  .page-head:not(.image) { border-bottom: 4px solid var(--lime); }
}
.sport-tile .label { font-stretch: 100%; font-size: clamp(14px, 1.2vw, 18px); }
.sport-tile .label span, .sport-tile .label { min-width: 0; }

/* ---------- Trusted by (logo marquee) ---------- */
.clients { padding: clamp(36px, 5vw, 60px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.clients-title { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.clients-track-wrap { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.clients-track { display: flex; align-items: center; gap: clamp(40px, 5vw, 72px); width: max-content; animation: clients-scroll 36s linear infinite; }
.clients-track-wrap:hover .clients-track { animation-play-state: paused; }
.clients-track img { height: clamp(80px, 9vw, 120px); width: auto; flex-shrink: 0; filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s; }
.clients-track img:hover { filter: none; opacity: 1; }
@keyframes clients-scroll { to { transform: translateX(calc(-50% - clamp(20px, 2.5vw, 36px))); } }
@media (prefers-reduced-motion: reduce) { .clients-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } .clients-track img[aria-hidden] { display: none; } }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }
.t-card { margin: 0; background: var(--soft); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; }
.t-card::after { content: "”"; position: absolute; right: 18px; top: -18px; font-size: 150px; font-weight: 900; line-height: 1; color: var(--lime); }
.t-stars { color: var(--ink); letter-spacing: 3px; font-size: 15px; position: relative; z-index: 1; }
.t-card blockquote { margin: 0; font-size: 18px; line-height: 1.55; font-weight: 600; flex: 1; position: relative; z-index: 1; }
.t-card figcaption { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.t-card figcaption strong { display: block; color: var(--ink); font-size: 15px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--lime); display: flex; align-items: center; justify-content: center; font-weight: 900; font-stretch: 125%; font-style: italic; flex: none; }
.sample-note { font-size: 13px !important; color: var(--muted); border: 1px dashed var(--line); border-radius: 999px; padding: 6px 14px; }
