/* ═══════════════════════════════════════════════════════════════
   VITOSAFE — Africa English Site · Shared design system
   Pages: index · about · contact · faq · news
   Palette:  yellow #E9C42D · ink #17191C · blue-gray #243746
             body text #555B63 · warm #C98B45 · paper #F4F3EF
   Type:     Barlow Condensed 600/700 (headings) · Inter 400–700
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --ink: #17191C;
  --ink-2: #243746;
  --paper: #F4F3EF;
  --line: #D9DDE1;
  --line-dark: #31363C;
  --mut: #555B63;
  --soft: #6E767F;
  --acc: #E9C42D;
  --acc-hi: #F3D54F;
  --acc-deep: #8E7714;
  --acc-soft: #D9C36A;
  --warm: #C98B45;
  --white: #FFFFFF;
  --danger: #C0392B;
  --font-h: "Barlow Condensed", Impact, system-ui, sans-serif;
  --font-b: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-sm: 0 1px 3px rgba(23, 25, 28, .10);
  --shadow-md: 0 6px 22px rgba(23, 25, 28, .12);
  --shadow-lg: 0 18px 44px rgba(10, 12, 15, .24);
  --r: 4px;
}

* , *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.08; letter-spacing: .005em; margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
svg { display: block; flex: none; }
em { font-style: normal; }

:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }
::selection { background: var(--acc); color: var(--ink); }

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 200;
  background: var(--acc); color: var(--ink); font-weight: 700; font-size: 13px;
  padding: 10px 16px; border-radius: 0 0 var(--r) var(--r); transition: top .18s;
}
.skip-link:focus { top: 0; }

.wrap { max-width: 1360px; margin: 0 auto; padding-left: clamp(20px, 4vw, 48px); padding-right: clamp(20px, 4vw, 48px); }
.section { padding: clamp(56px, 7vw, 88px) 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--ink); color: #E6E8E9; }

/* — placeholders marked “to be confirmed” — */
.tbd { color: var(--acc-deep); border-bottom: 1px dotted var(--acc-deep); font-size: .92em; }
.section-dark .tbd, .site-footer .tbd, .hero .tbd, .distributor-cta .tbd, .stat-box .tbd { color: var(--acc-soft); border-bottom-color: var(--acc-soft); }

/* — kicker / rules / titles — */
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--acc-deep);
  border-left: 4px solid var(--acc); padding-left: 12px; margin-bottom: 10px;
}
.kicker-dark { color: var(--acc); }
.kicker-center { display: block; text-align: center; border-left: 0; padding-left: 0; }
.rule { height: 1px; border: 0; background: var(--line); margin: 0 0 30px; }
.rule-dark { background: var(--line-dark); }
.rule-tight { margin-bottom: 18px; }
.section-title { font-size: clamp(30px, 3.4vw, 44px); text-transform: uppercase; margin-bottom: clamp(28px, 4vw, 44px); }
.section-title-sm { font-size: clamp(26px, 2.8vw, 36px); text-transform: uppercase; margin-bottom: 14px; }
.section-title-dark { color: var(--white); }
.foot-note { margin-top: 26px; font-size: 12.5px; color: var(--soft); }
.foot-note-dark { color: #9AA2AB; }

.grid { display: grid; gap: 22px; }
.grid-cat { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-product { grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); }
.grid-industry { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-feature { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 26px 22px; }
.grid-why { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; font-family: var(--font-b); font-weight: 700; font-size: 13.5px;
  letter-spacing: .03em; min-height: 44px; padding: 10px 20px;
  border-radius: var(--r); border: 1.5px solid transparent; transition: background .16s, color .16s, border-color .16s, transform .16s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--acc); color: var(--ink); border-color: var(--acc); }
.btn-primary:hover { background: var(--acc-hi); border-color: var(--acc-hi); }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--acc); color: var(--acc); }
.btn-outline-dark { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-ghost-dark { color: #E6E8E9; background: transparent; border-color: transparent; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.09); }
.btn-icon { width: 44px; min-width: 44px; padding: 0; }
.btn-lg { min-height: 50px; padding: 12px 26px; font-size: 14.5px; }
.btn-sm { min-height: 38px; padding: 7px 14px; font-size: 12.5px; }
.btn-block { width: 100%; }
.btn-text { background: none; border: 0; color: var(--soft); min-height: 40px; font-weight: 600; font-size: 13px; }
.btn-text:hover { color: var(--danger); }
.btn-cat { padding: 10px 14px; }

/* — tags / badges — */
.tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; letter-spacing: .03em; padding: 3px 9px; border-radius: 3px; }
.tag-standard { background: var(--acc); color: var(--ink); }
.tag-neutral { background: #EDEEEA; color: var(--mut); }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.count { display: inline-block; margin-left: 8px; font-family: var(--font-b); font-size: 11px; font-weight: 600; letter-spacing: .03em; color: var(--mut); background: #EDEEEA; padding: 3px 8px; border-radius: 3px; vertical-align: 3px; }
.count.tbd { background: transparent; }

/* ══════════ UTILITY BAR ══════════ */
.utility-bar { background: #101215; color: #C9CED3; font-size: 12.5px; }
.utility-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.utility-tag { letter-spacing: .05em; text-transform: uppercase; font-weight: 600; font-size: 11.5px; color: #9AA2AB; }
.utility-links { display: flex; gap: 22px; flex-wrap: wrap; }
.utility-links a { display: inline-flex; align-items: center; gap: 7px; color: #C9CED3; }
.utility-links a:hover { color: var(--acc); }

/* ══════════ HEADER ══════════ */
.site-header { position: sticky; top: 0; z-index: 90; background: var(--ink); box-shadow: 0 1px 0 rgba(255,255,255,.06); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(10,12,15,.35); }
.header-inner { display: flex; align-items: center; gap: 30px; min-height: 74px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-h); font-weight: 700; font-size: 30px; letter-spacing: .02em; color: var(--white); text-transform: uppercase; }
.brand-name em { color: var(--acc); }
.brand-sub { margin-top: 4px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: #8A9096; font-weight: 600; }
.main-nav { display: flex; gap: 4px; align-items: center; flex: 1; }
.main-nav > a, .mega-trigger {
  display: inline-flex; align-items: center; gap: 6px; padding: 26px 12px;
  font-size: 14px; font-weight: 600; color: #E6E8E9; background: none; border: 0;
  border-bottom: 3px solid transparent; cursor: pointer; font-family: var(--font-b); transition: color .16s, border-color .16s;
}
.main-nav > a:hover, .main-nav > a.active, .has-mega:hover .mega-trigger, .has-mega:focus-within .mega-trigger { color: var(--white); border-bottom-color: var(--acc); }
.header-actions { display: flex; align-items: center; gap: 10px; }
#mobile-toggle { display: none; }

/* — mega menu — */
.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 95;
  background: var(--white); border-top: 3px solid var(--acc); box-shadow: var(--shadow-lg);
  padding: 26px clamp(20px, 4vw, 48px) 30px;
  display: grid; grid-template-columns: 1fr 1.25fr 300px; gap: 30px;
  opacity: 0; visibility: hidden; transform: translateY(10px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu, .mega-menu.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-col h6 { font-family: var(--font-b); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--soft); margin-bottom: 10px; }
.mega-col a { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 7px 10px; margin-left: -10px; border-radius: var(--r); font-size: 14px; font-weight: 500; color: var(--ink); }
.mega-col a span { font-size: 11.5px; color: #98A0A8; white-space: nowrap; }
.mega-col a:hover { background: #FCFBF6; color: var(--ink); box-shadow: inset 2px 0 0 var(--acc); }
.mega-promo { background: var(--ink); color: #E6E8E9; padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.mega-promo b { font-family: var(--font-h); font-size: 21px; text-transform: uppercase; color: var(--white); }
.mega-promo p { font-size: 13px; color: #B7BDC4; }
.mega-promo .btn { margin-top: 6px; }
.mega-ghost { color: var(--acc); font-size: 12.5px; font-weight: 600; }
.mega-ghost:hover { text-decoration: underline; }

/* — mobile drawer nav — */
.mobile-menu { display: none; flex-direction: column; background: var(--ink); border-top: 1px solid var(--line-dark); padding: 10px clamp(20px, 4vw, 48px) 22px; }
.mobile-menu.open { display: flex; }
.mobile-menu > a { padding: 13px 0; color: #E6E8E9; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--line-dark); }
.mobile-menu > a.active, .mobile-menu > a:hover { color: var(--acc); }
.mob-acc { border-bottom: 1px solid var(--line-dark); }
.mob-acc summary {
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  padding: 13px 0; color: #E6E8E9; font-weight: 600; font-size: 15px; list-style: none;
}
.mob-acc summary::-webkit-details-marker { display: none; }
.mob-acc[open] summary svg { transform: rotate(180deg); }
.mob-acc summary svg { transition: transform .18s; color: #8A9096; }
.mob-acc-body h6 { font-family: var(--font-b); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #8A9096; margin: 14px 0 4px; }
.mob-acc-body a { display: flex; justify-content: space-between; padding: 9px 0 9px 12px; color: #C9CED3; font-size: 14px; border-left: 2px solid var(--line-dark); }
.mob-acc-body a span { color: #8A9096; font-size: 12px; }
.mob-acc-body a:hover { color: var(--acc); border-left-color: var(--acc); }
.mob-cta-row { display: flex; gap: 10px; margin-top: 18px; }
.mob-cta-row .btn { flex: 1; }

/* ══════════ HERO (home) ══════════ */
.hero {
  background: var(--ink); color: #E6E8E9; overflow: hidden; position: relative;
  padding: clamp(52px, 6vw, 92px) 0 clamp(60px, 7vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(36, 55, 70, .55), transparent 65%),
    repeating-linear-gradient(-55deg, rgba(255,255,255,.014) 0 2px, transparent 2px 26px);
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(36px, 5vw, 64px); align-items: center; }
.hero-title { font-size: clamp(42px, 4.9vw, 64px); text-transform: uppercase; color: var(--white); margin: 14px 0 18px; max-width: 15ch; }
.hero-sub { font-size: 16.5px; line-height: 1.65; color: #C3C9CF; max-width: 50ch; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.trust-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; max-width: 520px; }
.trust-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: #D7DADC; }
.trust-points svg { color: var(--acc); }

.hero-figure-wrap { position: relative; }
.hero-figure { margin: 0; aspect-ratio: 6/5; }
.hero-stripe {
  position: absolute; top: -14px; right: -14px; width: 120px; height: 34px;
  background: repeating-linear-gradient(-55deg, var(--acc) 0 14px, var(--ink) 14px 28px);
  opacity: .9; transform: skewX(-55deg);
}
.hero-product {
  position: absolute; bottom: -30px; left: -26px; width: clamp(220px, 44%, 300px);
  background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-product-img { background: var(--paper); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.hero-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.hero-product-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 2px; }
.hp-model { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--acc-deep); }
.hp-name { font-family: var(--font-h); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--ink); }
.hp-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.hp-link { font-size: 12.5px; font-weight: 600; color: var(--mut); }
.hp-link:hover { color: var(--ink); }

/* ══════════ PAGE HERO (subpages) ══════════ */
.page-hero { padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); background: var(--white); }
.page-hero-dark { background: var(--ink); border-bottom: 0; color: #E6E8E9; }
.page-title { font-size: clamp(36px, 4.4vw, 56px); text-transform: uppercase; color: var(--ink); margin: 12px 0 16px; }
.page-hero-dark .page-title { color: var(--white); }
.page-sub { font-size: 16.5px; line-height: 1.65; color: var(--mut); max-width: 58ch; }
.page-hero-dark .page-sub { color: #C3C9CF; }
.page-hero-center { text-align: center; }
.page-hero-center .page-sub { margin-left: auto; margin-right: auto; }

/* — photo placeholders — */
.ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--r);
}
.ph small { font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 11.5px; opacity: .75; }
.ph-dark {
  background: linear-gradient(140deg, var(--ink-2), #1B2632 55%, #141E28);
  color: #AEB9C4; border: 1px solid #33465A; position: relative; overflow: hidden;
}
.ph-dark::after {
  content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(174, 185, 196, .35); border-radius: 2px; pointer-events: none;
}
.ph-light { background: var(--paper); color: var(--soft); border: 1px dashed var(--line); }

/* ══════════ TRUST STRIP ══════════ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px 26px; padding-top: 22px; padding-bottom: 22px; }
.trust-strip-inner span { display: flex; align-items: center; gap: 11px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.trust-strip-inner svg { color: var(--acc-deep); }

/* ══════════ CATEGORY & PRODUCT CARDS ══════════ */
.card-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C4C9CE; }
.card-media { display: flex; align-items: center; justify-content: center; background: var(--paper); aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 9%; transition: transform .25s ease; }
.card-item:hover .card-media img { transform: scale(1.05); }
.card-media-square { aspect-ratio: 1/1; }
.card-media-wide { aspect-ratio: 16/9; }
.card-body-pad { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-h { font-size: 20px; text-transform: uppercase; letter-spacing: .01em; }
.card-p { font-size: 13.5px; color: var(--mut); margin-bottom: 8px; }
.link-arrow { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-top: auto; }
.link-arrow svg { transition: transform .16s; }
.link-arrow:hover { color: var(--acc-deep); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow-plain { font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--acc-deep); margin-top: auto; }
.link-arrow-plain:hover { text-decoration: underline; }
.article-h { font-size: 18px; line-height: 1.25; margin: 6px 0 2px; }

.product-id { display: flex; flex-direction: column; gap: 2px; }
.product-body { gap: 9px; }
.model { font-size: 11.5px; font-weight: 600; letter-spacing: .05em; color: var(--soft); text-transform: uppercase; }
.feature-list { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--mut); }
.feature-list li::before { content: "—"; margin-right: 8px; color: var(--acc-deep); }
.product-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }
.product-actions .btn { flex: 1; padding-left: 8px; padding-right: 8px; font-size: 12.5px; }

/* ══════════ INDUSTRY CARDS ══════════ */
.industry-card { padding: 24px; }
.ind-icon {
  width: 52px; height: 52px; border-radius: var(--r); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--acc);
}
.industry-card .card-h { font-size: 19px; }

/* ══════════ FEATURES (dark) ══════════ */
.feature-item { display: flex; flex-direction: column; gap: 8px; }
.feature-item > svg { color: var(--acc); }
.feature-h { font-size: 17px; text-transform: uppercase; color: var(--white); }
.feature-p { font-size: 13px; color: #A8AFB6; }

/* ══════════ SPLIT SECTIONS ══════════ */
.split-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(36px, 5vw, 64px); align-items: center; }
.split-reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split-reverse .split-figure { order: 2; }
.split-figure { margin: 0; aspect-ratio: 4/5; }
.split-copy { font-size: 15px; color: var(--mut); margin-bottom: 22px; max-width: 54ch; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.step-last { border-bottom: 0; }
.step-num { font-family: var(--font-h); font-weight: 700; font-size: 17px; color: var(--acc-deep); }
.check-list { display: flex; flex-direction: column; gap: 15px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.check-item svg { color: var(--acc-deep); margin-top: 3px; }
.cert-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.cert-chip { font-size: 12px; font-weight: 600; padding: 7px 12px; border: 1px dashed var(--acc-deep); color: var(--acc-deep); border-radius: 3px; }

/* ══════════ WHY CARDS ══════════ */
.card { display: flex; flex-direction: column; gap: 8px; padding: 22px; border: 1px solid var(--line); background: var(--white); border-radius: var(--r); }
.card-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--acc-deep); }
.card-title { font-size: 20px; text-transform: uppercase; }
.card-body { font-size: 13.5px; color: var(--mut); }
.elev-sm { box-shadow: var(--shadow-sm); }

/* ══════════ DISTRIBUTOR CTA ══════════ */
.distributor-cta { background: var(--ink); color: #E6E8E9; padding: clamp(56px, 7vw, 84px) 0; position: relative; overflow: hidden; }
.distributor-cta::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px;
  background: repeating-linear-gradient(-55deg, var(--acc) 0 16px, var(--ink) 16px 32px);
}
.distributor-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.distributor-title { font-size: clamp(28px, 3.2vw, 42px); text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.distributor-sub { font-size: 16px; color: #C3C9CF; margin-bottom: 30px; }
.distributor-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════ QUOTE / ENQUIRY FORM ══════════ */
.quote-wrap { max-width: 940px; }
.quote-intro { font-size: 15px; text-align: center; color: var(--mut); margin: -6px 0 34px; }
.quote-intro a { color: var(--acc-deep); font-weight: 600; }
.quote-intro a:hover { text-decoration: underline; }
.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.req { color: var(--danger); }
.input {
  width: 100%; min-height: 46px; padding: 10px 13px; font-family: var(--font-b); font-size: 14.5px;
  color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .16s;
}
.input:hover { border-color: #B9BEC3; }
.input:focus { border-color: var(--acc-deep); outline: 2px solid rgba(233, 196, 45, .45); outline-offset: 0; }
textarea.input { resize: vertical; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555B63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 14px; padding-right: 38px; }
.field.invalid .input { border-color: var(--danger); }
.err { min-height: 16px; font-size: 12px; font-weight: 500; color: var(--danger); }
.field-full { grid-column: 1 / -1; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-foot .btn { min-width: 220px; }
.form-note { font-size: 12.5px; color: var(--soft); }
.form-success { text-align: center; padding: 40px 20px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
.form-success svg { color: var(--acc-deep); margin: 0 auto 14px; }
.form-success h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }
.form-success p { color: var(--mut); font-size: 14.5px; }
.form-success a { color: var(--acc-deep); font-weight: 600; }
.form-success-demo { margin-top: 14px; font-size: 12px; }

/* — radios (contact page) — */
.radio { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-size: 14px; min-height: 44px; }
.radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio .dot { width: 18px; height: 18px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); transition: border-color .15s, box-shadow .15s; }
.radio:hover .dot { border-color: var(--acc-deep); }
.radio input:checked + .dot { border-color: var(--acc-deep); box-shadow: inset 0 0 0 5px var(--acc); }
.radio input:focus-visible + .dot { outline: 2px solid var(--acc); outline-offset: 2px; }
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; padding-top: 4px; }

/* ══════════ ABOUT PAGE ══════════ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.stat-box { background: var(--ink); border-radius: var(--r); padding: 26px 20px; text-align: center; }
.stat-num { display: block; font-family: var(--font-h); font-weight: 700; font-size: clamp(30px, 3vw, 40px); color: var(--acc); line-height: 1.05; }
.stat-label { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #9AA2AB; }
.market-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.market-list span { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
.market-list svg { color: var(--acc-deep); }

/* ══════════ FAQ PAGE ══════════ */
.faq-group { display: flex; flex-direction: column; gap: 12px; }
.faq-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 17px 20px; font-family: var(--font-h); font-weight: 600; font-size: 18px; letter-spacing: .01em;
  min-height: 56px; transition: background .15s, color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #FCFBF6; color: var(--acc-deep); }
.faq-item[open] summary { background: var(--ink); color: var(--white); }
.faq-item .faq-chevron { color: var(--acc-deep); transition: transform .18s; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--acc); }
.faq-item p { padding: 4px 20px 18px; font-size: 14px; line-height: 1.7; color: var(--mut); }

/* ══════════ NEWS PAGE ══════════ */
.featured-article {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.featured-article .ph { border-radius: 0; }
.featured-article-body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.featured-article-body h2 { font-size: clamp(24px, 2.6vw, 34px); text-transform: uppercase; }
.featured-article-body > p { font-size: 15px; color: var(--mut); max-width: 54ch; }
.news-list { display: flex; flex-direction: column; }
.news-row { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: baseline; flex-wrap: wrap; }
.news-list .news-row:last-child { border-bottom: 0; }
.news-date { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--acc-deep); min-width: 120px; }
.news-row h3 { font-size: 19px; margin: 0 0 4px; text-transform: uppercase; }
.news-row p { font-size: 14px; color: var(--mut); margin: 0; }
.news-row > div { flex: 1; min-width: 220px; }

/* ══════════ CONTACT PAGE ══════════ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px, 3vw, 34px); }
.contact-card h2 { font-size: 24px; text-transform: uppercase; margin-bottom: 20px; }
.contact-card h3 { font-size: 18px; text-transform: uppercase; margin-bottom: 16px; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { color: var(--acc-deep); margin-top: 2px; }
.info-row > div { display: flex; flex-direction: column; gap: 1px; }
.info-label { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--soft); }
.info-val { font-size: 14.5px; color: var(--ink); }
.info-val a:hover { color: var(--acc-deep); }

/* ══════════ FOOTER ══════════ */
.site-footer { background: var(--ink); color: #C9CED3; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .9fr 1.2fr; gap: 30px; padding-top: 52px; padding-bottom: 28px; }
.site-footer .brand-name { font-size: 28px; }
.footer-about { font-size: 13px; color: #9AA2AB; max-width: 30ch; margin-top: 10px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 7px; }
.footer-grid h6 { font-family: var(--font-b); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin: 0 0 6px; }
.footer-grid a { font-size: 13px; color: #9AA2AB; }
.footer-grid a:hover { color: var(--acc); }
.footer-contact { font-size: 13px; color: #9AA2AB; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact:hover { color: var(--acc); }
.footer-contact svg { color: #6E767F; margin-top: 2px; }
.footer-dl { margin-top: 10px; }
.footer-dl a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--acc); font-size: 13px; }
.footer-dl a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--line-dark); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 16px; padding-bottom: 16px; font-size: 12px; color: #8A9096; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #8A9096; }
.footer-legal a:hover { color: var(--acc); }

/* ══════════ FLOATING CONTROLS ══════════ */
/* Expandable contact FAB (desktop): WhatsApp · Email · Quote */
.contact-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.fab-main {
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--acc); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: transform .16s, background .16s;
}
.fab-main:hover { background: var(--acc-hi); transform: translateY(-2px); }
.fab-main .ic-x { display: none; }
.contact-fab.open .fab-main .ic-x { display: block; }
.contact-fab.open .fab-main .ic-chat { display: none; }
.fab-stack { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.fab-stack[hidden] { display: none; }
.fab-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-b); font-weight: 600; font-size: 13.5px; text-decoration: none;
  box-shadow: var(--shadow-md); transition: transform .16s;
}
.fab-item:hover { transform: translateY(-2px); }
.fab-item svg { flex-shrink: 0; }
.fab-wa { background: #25D366; color: #fff; }
.fab-mail { background: var(--ink); color: var(--white); }
.fab-quote { background: var(--blue); color: #fff; }

.enquiry-chip {
  position: fixed; bottom: 22px; left: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: var(--white); border: 1px solid var(--acc);
  font-family: var(--font-b); font-weight: 600; font-size: 13px;
  padding: 11px 16px; border-radius: 999px; cursor: pointer; box-shadow: var(--shadow-md);
  transition: background .16s;
}
.enquiry-chip:hover { background: var(--ink-2); }
.enquiry-chip b { color: var(--acc); }

/* — mobile action bar — */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  background: var(--ink); border-top: 1px solid var(--line-dark);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
}
.mb-btn {
  min-height: 46px; border: 0; border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 700; font-size: 13.5px; text-decoration: none;
}
.mb-quote { flex: 1; background: var(--acc); color: var(--ink); }
.mb-wa { width: 54px; background: #25D366; color: #fff; position: relative; }
.mb-mail, .mb-enq { width: 54px; background: #26292E; color: #E6E8E9; position: relative; }
.mb-badge {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px;
  background: var(--acc); color: var(--ink); font-size: 11px; font-weight: 700;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* ══════════ ENQUIRY DRAWER ══════════ */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 100; background: rgba(10, 12, 15, .58);
  opacity: 0; transition: opacity .22s;
}
.drawer-scrim.show { opacity: 1; }
.enquiry-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 110; width: min(400px, 94vw);
  background: var(--white); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .26s ease;
}
.enquiry-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line); background: var(--ink);
}
.drawer-head h3 { color: var(--white); font-size: 22px; text-transform: uppercase; }
.drawer-close {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: none; border: 0; color: #C9CED3; cursor: pointer; border-radius: var(--r);
}
.drawer-close:hover { background: rgba(255,255,255,.1); color: var(--white); }
.drawer-list { flex: 1; overflow-y: auto; padding: 8px 20px; }
.drawer-empty { padding: 40px 0; text-align: center; color: var(--soft); font-size: 14px; line-height: 1.7; }
.drawer-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.drawer-item-img { width: 64px; height: 64px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.drawer-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.drawer-item-info { display: flex; flex-direction: column; gap: 2px; }
.drawer-item-name { font-family: var(--font-h); font-weight: 700; font-size: 16px; text-transform: uppercase; }
.drawer-item-model { font-size: 11.5px; font-weight: 600; color: var(--soft); letter-spacing: .04em; }
.drawer-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.qty button { width: 32px; height: 34px; background: var(--paper); border: 0; font-size: 16px; font-weight: 700; color: var(--ink); cursor: pointer; }
.qty button:hover { background: var(--acc); }
.qty output { min-width: 44px; text-align: center; font-size: 13.5px; font-weight: 600; }
.drawer-remove { background: none; border: 0; color: var(--soft); font-size: 11.5px; font-weight: 600; cursor: pointer; }
.drawer-remove:hover { color: var(--danger); }
.drawer-foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; background: var(--paper); }

/* ══════════ SEARCH OVERLAY ══════════ */
.search-overlay { position: fixed; inset: 0; z-index: 120; background: rgba(10, 12, 15, .66); display: flex; justify-content: center; align-items: flex-start; padding: 12vh 20px 20px; }
.search-panel { width: min(600px, 100%); background: var(--white); border-radius: 6px; border-top: 3px solid var(--acc); box-shadow: var(--shadow-lg); overflow: hidden; }
.search-bar { display: flex; align-items: center; gap: 12px; padding: 6px 8px 6px 18px; border-bottom: 1px solid var(--line); }
.search-bar svg { color: var(--soft); }
.search-bar input { flex: 1; border: 0; min-height: 52px; font-size: 17px; font-family: var(--font-b); color: var(--ink); background: transparent; }
.search-bar input:focus { outline: none; }
.search-results { max-height: 46vh; overflow-y: auto; padding: 8px; }
.search-results a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--r); font-size: 14.5px; font-weight: 500; color: var(--ink); }
.search-results a span { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--soft); background: var(--paper); padding: 3px 8px; border-radius: 3px; }
.search-results a:hover { background: #FCFBF6; box-shadow: inset 2px 0 0 var(--acc); }
.search-none { padding: 22px 14px; color: var(--soft); font-size: 14px; text-align: center; }

/* ══════════ REVEAL MOTION ══════════ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1180px) {
  .main-nav, .header-actions { display: none; }
  #mobile-toggle { display: inline-flex; }
  .header-inner { justify-content: space-between; }
}

@media (max-width: 1024px) {
  .mega-menu { grid-template-columns: 1fr 1fr; }
  .mega-promo { display: none; }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-product { position: static; width: min(300px, 80%); margin-top: 18px; }
  .hero-stripe { display: none; }
  .trust-points { grid-template-columns: 1fr; }
  .split-inner, .split-reverse { grid-template-columns: 1fr; }
  .split-reverse .split-figure { order: -1; }
  .split-figure { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-article { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .market-list { grid-template-columns: 1fr; }
  /* mobile action bar replaces the FAB */
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .contact-fab { display: none; }
  .enquiry-chip { display: none; }
}

@media (max-width: 640px) {
  .quote-form { grid-template-columns: 1fr; }
  .form-foot .btn { width: 100%; min-width: 0; }
  .utility-inner { justify-content: center; }
  .utility-tag { display: none; }
  .hero-title { font-size: clamp(36px, 10vw, 46px); }
  .distributor-btns .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-item summary { font-size: 16px; }
}

/* ══════════ REDUCED MOTION ══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .card-item:hover, .fab-main:hover { transform: none; }
  .card-item:hover .card-media img { transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   CATALOGUE + PRODUCT DETAIL (products.html / product.html)
   ═══════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; font-size: 12.5px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.breadcrumb a { color: var(--soft); }
.breadcrumb a:hover { color: var(--acc-deep); }
.breadcrumb span { color: var(--line); }
.breadcrumb em { color: var(--ink); font-style: normal; }

/* ── Filter toolbar ── */
.cat-toolbar { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); background: var(--paper); color: var(--mut); border-radius: 999px; padding: 8px 16px; font-family: var(--font-b); font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.chip b { font-weight: 700; opacity: .7; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: var(--white); }
.chip.is-on b { color: var(--acc); }
.filter-more > summary { display: none; list-style: none; cursor: pointer; align-items: center; gap: 8px; font-family: var(--font-b); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); padding: 10px 0; }
.filter-more > summary::-webkit-details-marker { display: none; }
.f-body { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.f-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 170px; }
.f-field label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--soft); }
.f-reset { min-height: 44px; white-space: nowrap; }
.result-count { font-size: 12.5px; font-weight: 600; color: var(--soft); border-top: 1px solid var(--line); padding-top: 12px; }
.result-count b { color: var(--ink); }

/* ── Empty state ── */
.grid-empty { text-align: center; padding: 64px 20px; border: 1px dashed var(--line); border-radius: var(--r); background: var(--white); }
.grid-empty svg { color: var(--soft); margin-bottom: 12px; }
.grid-empty h2 { font-family: var(--font-h); font-size: 24px; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.grid-empty p { color: var(--mut); font-size: 14px; margin-bottom: 18px; }

/* ── OEM cross strip ── */
.cross-strip { display: flex; align-items: center; justify-content: space-between; gap: 28px; background: var(--ink); border-radius: var(--r); padding: 30px 34px; }
.cross-strip b { display: block; font-family: var(--font-h); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; color: var(--white); margin-bottom: 6px; }
.cross-strip p { color: #9AA2AB; font-size: 14px; max-width: 56ch; }
.cross-strip .btn { flex-shrink: 0; }

/* ── Product detail layout ── */
.detail-grid { display: grid; grid-template-columns: minmax(0, 46%) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.detail-gallery { position: sticky; top: 96px; }
.g-main { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.g-main img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 6%; }
.g-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.g-thumb { border: 1px solid var(--line); background: var(--white); border-radius: 4px; overflow: hidden; cursor: pointer; padding: 0; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.g-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10%; }
.g-thumb:hover { border-color: var(--mut); }
.g-thumb.is-on { border: 2px solid var(--acc); }
.g-thumb.ph { flex-direction: column; gap: 4px; }
.g-thumb.ph span { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── Info panel ── */
.detail-title { font-family: var(--font-h); font-size: clamp(30px, 4vw, 42px); font-weight: 700; text-transform: uppercase; line-height: 1.04; letter-spacing: .005em; color: var(--ink); margin: 10px 0 4px; }
.detail-model { font-size: 13px; font-weight: 600; color: var(--soft); margin-bottom: 14px; }
.detail-model b { color: var(--ink); letter-spacing: .04em; }
.detail-lead { font-size: 15.5px; line-height: 1.65; color: var(--mut); max-width: 60ch; }
.detail-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.detail-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.55; color: var(--mut); }
.detail-features svg { flex-shrink: 0; margin-top: 3px; color: var(--acc-deep); }

/* ── Buy box ── */
.detail-buy { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--acc); border-radius: var(--r); padding: 22px; margin: 4px 0 26px; }
.detail-price-note { display: flex; flex-direction: column; gap: 2px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.detail-price-note b { font-family: var(--font-h); font-size: 17px; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.detail-price-note span { font-size: 13px; color: var(--soft); }
.detail-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.detail-cta .btn { flex: 1; min-width: 150px; }
.btn-wa { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-wa:hover { background: #25D366; border-color: #25D366; color: #fff; }
.mini-points { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mini-points li { position: relative; padding-left: 16px; font-size: 12.5px; color: var(--mut); }
.mini-points li::before { content: "•"; position: absolute; left: 2px; color: var(--acc-deep); font-weight: 700; }

/* ── Spec table ── */
.spec-acc { border: 1px solid var(--line); border-radius: var(--r); background: var(--white); overflow: hidden; }
.spec-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-family: var(--font-h); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); background: var(--paper); }
.spec-acc > summary::-webkit-details-marker { display: none; }
.spec-acc > summary::after { content: "−"; font-size: 20px; color: var(--soft); }
.spec-acc:not([open]) > summary::after { content: "+"; }
.spec-table { margin: 0; padding: 6px 0; }
.spec-row { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 10px 20px; border-bottom: 1px solid #EDEEEA; }
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--soft); padding-top: 2px; }
.spec-row dd { margin: 0; font-size: 14px; font-weight: 500; color: var(--ink); }

/* ── Detail downloads ── */
.detail-dl { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.detail-dl a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink); border: 1px solid var(--line); border-radius: var(--r); padding: 10px 16px; background: var(--white); }
.detail-dl a:hover { border-color: var(--ink); }
.detail-dl svg { color: var(--acc-deep); }

/* ── Inline badge inside wide mobile button ── */
.mb-badge-inline { position: static; transform: none; display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 4px; background: var(--acc); color: var(--ink); }

/* ── Mega menu "View All Products" row ── */
.mega-col a.mega-all, .mob-acc-body a.mega-all { display: flex; justify-content: space-between; align-items: center; gap: 10px; background: #FCF8EA; border: 1px solid #EADFAE; border-radius: 4px; margin-bottom: 8px; color: var(--ink) !important; font-weight: 700 !important; }
.mega-col a.mega-all:hover, .mob-acc-body a.mega-all:hover { background: var(--acc); border-color: var(--acc); }
.mega-all span { color: var(--acc-deep); font-weight: 700; }

/* ── Category page layout (category.html) ── */
.category-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: clamp(24px, 3.5vw, 48px); align-items: start; }
.cat-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.cat-side-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 8px; }
.cat-side-box h6 { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--soft); padding: 10px 14px 6px; }
.cat-side-item { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 4px; font-size: 13.5px; font-weight: 600; color: var(--mut); }
.cat-side-item b { font-size: 11px; font-weight: 700; color: var(--soft); background: var(--paper); border-radius: 999px; padding: 2px 8px; white-space: nowrap; }
.cat-side-item:hover { background: #FCFBF6; color: var(--ink); }
.cat-side-item.is-on { background: var(--ink); color: var(--white); }
.cat-side-item.is-on b { background: var(--acc); color: var(--ink); }
.cat-side-cta { background: var(--ink); border-radius: var(--r); padding: 22px; }
.cat-side-cta b { display: block; font-family: var(--font-h); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--white); margin-bottom: 4px; }
.cat-side-cta p { font-size: 12.5px; line-height: 1.6; color: #9AA2AB; margin-bottom: 14px; }
.cat-side-cta .btn { width: 100%; }
.cat-side-cta .cat-side-alt { display: block; text-align: center; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--acc); }
.cat-side-cta .cat-side-alt:hover { text-decoration: underline; }
.cat-pills { display: none; }
.cat-count-note { font-size: 12.5px; color: var(--soft); margin-top: 18px; }

/* ── Responsive: category ── */
@media (max-width: 880px) {
  .category-layout { grid-template-columns: 1fr; }
  .cat-side { display: none; }
  .cat-pills { display: flex; overflow-x: auto; gap: 8px; padding: 2px 2px 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cat-pills::-webkit-scrollbar { display: none; }
  .cat-pills .chip { white-space: nowrap; flex-shrink: 0; }
  .cat-side-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   404 + THANK-YOU PAGES
   ═══════════════════════════════════════════════════════════ */
.error-code { font-family: var(--font-h); font-weight: 700; font-size: clamp(110px, 24vw, 210px); line-height: .9; letter-spacing: .02em; color: var(--ink); display: block; }
.error-code em { font-style: normal; color: var(--acc); }
.error-hero .page-title { margin: 10px 0 12px; }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.error-links a { font-size: 13px; font-weight: 700; color: var(--ink); border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 9px 16px; }
.error-links a:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.ty-check { width: 72px; height: 72px; border-radius: 50%; background: var(--ink); color: var(--acc); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ty-hero .page-title { margin-bottom: 12px; }
.ty-wrap { max-width: 760px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE (search.html)
   ═══════════════════════════════════════════════════════════ */
.sr-form { display: flex; gap: 10px; margin: 0 auto 10px; max-width: 640px; }
.sr-form .input { flex: 1; }
.sr-form .btn { flex-shrink: 0; }
.sr-count { text-align: center; font-size: 13px; font-weight: 600; color: var(--soft); margin-bottom: 34px; }
#sr-out h2 { font-family: var(--font-h); font-size: 21px; font-weight: 700; text-transform: uppercase; letter-spacing: .015em; color: var(--ink); margin: 34px 0 16px; }
#sr-out h2:first-child { margin-top: 0; }
.sr-rows { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--white); }
.sr-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid #EDEEEA; font-size: 15px; color: var(--ink); }
.sr-row:last-child { border-bottom: 0; }
.sr-row b { font-weight: 600; }
.sr-row:hover { background: #FCFBF6; box-shadow: inset 3px 0 0 var(--acc); }
.sr-tag { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--soft); white-space: nowrap; }
@media (max-width: 640px) {
  .sr-form { flex-direction: column; }
}

/* ── Responsive: catalogue + detail ── */
@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-gallery { position: static; }
  .g-main { max-width: 520px; }
  .cross-strip { flex-direction: column; align-items: flex-start; }
  .cross-strip .btn { width: 100%; }
}
@media (max-width: 640px) {
  .cat-toolbar { padding: 14px; }
  .filter-more > summary { display: flex; }
  .f-body { flex-direction: column; align-items: stretch; }
  .f-reset { width: 100%; }
  .detail-cta .btn { min-width: 0; }
  .spec-row { grid-template-columns: 1fr; gap: 2px; padding: 10px 16px; }
  .detail-dl a { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE (article.html)
   ═══════════════════════════════════════════════════════════ */
.article-wrap { max-width: 800px; }
.article-meta { font-size: 13px; color: var(--soft); margin: 10px 0 22px; }
.article-hero { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 230px; border-radius: var(--r); background: var(--paper); border: 1px dashed var(--line); color: var(--soft); }
.article-hero span { font-size: 13px; }
.article-body { font-size: 16px; }
.article-body p { line-height: 1.75; color: var(--body); margin-bottom: 18px; }
.article-body h2 { font-family: var(--font-h); font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; color: var(--ink); margin: 34px 0 14px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; display: grid; gap: 8px; }
.article-body li { line-height: 1.65; color: var(--body); }
.table-scroll { overflow-x: auto; border-radius: var(--r); }
.article-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); font-size: 14.5px; }
.article-table th { font-family: var(--font-h); text-transform: uppercase; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-align: left; background: var(--blue); color: #fff; padding: 11px 14px; white-space: nowrap; }
.article-table td { padding: 11px 14px; border-top: 1px solid var(--line); color: var(--body); }
.article-table tbody tr:nth-child(even) { background: #FAFAF7; }
.size-hot td { background: #FCF8EA !important; font-weight: 600; }
.article-cta { background: var(--blue); color: #fff; border-radius: var(--r); padding: 26px 28px; margin-top: 38px; }
.article-cta b { font-family: var(--font-h); font-size: 20px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 6px; }
.article-cta p { color: rgba(255,255,255,.82); margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════
   DOWNLOADS PAGE (downloads.html)
   ═══════════════════════════════════════════════════════════ */
.dl-card { display: flex; flex-direction: column; align-items: flex-start; }
.dl-card .card-body { flex: 1; }
.dl-icon { width: 46px; height: 46px; border-radius: var(--r); background: var(--ink); color: var(--acc); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.dl-btn { margin-top: 16px; }

@media (max-width: 640px) {
  .article-body h2 { font-size: 21px; }
  .article-table { font-size: 13.5px; }
  .article-table th, .article-table td { padding: 9px 10px; }
  .article-cta { padding: 20px; }
}
