/* =============================================================
   ZYRAXS AUTOMOTIVE — Stylesheet
   Light chrome / brushed-silver theme derived from the logo.
   ============================================================= */

/* ---------------------------- 1. Tokens ---------------------------- */
:root {
  /* Surfaces — brushed metal, light */
  --page:        #EBEFF4;
  --page-2:      #F5F7FA;
  --surface:     #FFFFFF;
  --surface-2:   #F7F9FB;
  --silver-100:  #E4E9EF;
  --silver-200:  #D3DBE4;
  --silver-300:  #BCC6D2;

  /* Lines */
  --line:        #D9E0E8;
  --line-strong: #C2CBD6;

  /* Ink */
  --ink:         #161B21;
  --ink-2:       #3C4653;
  --ink-3:       #6A7583;
  --ink-4:       #8D97A4;

  /* Metal accents */
  --graphite:    #242A32;
  --graphite-2:  #39424D;
  --steel:       #5C6976;

  /* Gradients */
  --chrome:        linear-gradient(180deg, #FFFFFF 0%, #EDF1F6 48%, #DCE3EB 100%);
  --chrome-soft:   linear-gradient(180deg, #FFFFFF 0%, #F2F5F8 100%);
  --chrome-edge:   linear-gradient(90deg, transparent, var(--line-strong) 18%, #FFFFFF 50%, var(--line-strong) 82%, transparent);
  --graphite-grad: linear-gradient(135deg, #4A5462 0%, #262D36 55%, #171C23 100%);
  --ink-grad:      linear-gradient(180deg, #2B333D 0%, #59636F 100%);

  /* Functional */
  --wa:      #25D366;
  --wa-dark: #128C7E;

  /* Shape & motion */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh-1: 0 1px 2px rgba(23, 32, 45, .05), 0 2px 8px rgba(23, 32, 45, .05);
  --sh-2: 0 2px 6px rgba(23, 32, 45, .06), 0 12px 28px rgba(23, 32, 45, .09);
  --sh-3: 0 8px 20px rgba(23, 32, 45, .10), 0 28px 60px rgba(23, 32, 45, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;

  --wrap: 1240px;
}

/* ---------------------------- 2. Reset ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background-color: var(--page);
  /* Brushed-metal page ground: soft chrome highlights over light silver */
  background-image:
    radial-gradient(1100px 520px at 82% -8%, rgba(255, 255, 255, .95), transparent 62%),
    radial-gradient(760px 420px at 8% 4%, rgba(255, 255, 255, .7), transparent 66%),
    linear-gradient(180deg, #F6F8FB 0%, #EBEFF4 34%, #E6EBF1 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* The UA `hidden` rule loses to any author `display` declaration, and several
   components below set display explicitly — so make [hidden] authoritative. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
  letter-spacing: .01em;
  font-weight: 700;
  text-transform: uppercase;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--graphite-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------- 3. Layout ---------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(58px, 7vw, 104px) 0; position: relative; }
.section--tint { background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.34)); border-block: 1px solid var(--line); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--surface); color: var(--ink);
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
  box-shadow: var(--sh-2);
}
.skip:focus { left: 0; }

/* Section heading block */
.head { margin-bottom: clamp(30px, 4vw, 48px); max-width: 720px; }
.head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--silver-300), var(--steel));
}
.head--center .eyebrow::after {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--steel), var(--silver-300));
}

.h-xl { font-size: clamp(34px, 5.1vw, 60px); }
.h-lg { font-size: clamp(28px, 3.7vw, 44px); }
.h-md { font-size: clamp(21px, 2.1vw, 27px); }

/* Polished-graphite text fill — the light-theme analogue of chrome */
.metal-text {
  background: var(--ink-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lede {
  margin-top: 16px;
  font-size: clamp(15.5px, 1.15vw, 17.5px);
  color: var(--ink-3);
  max-width: 62ch;
}
.head--center .lede { margin-inline: auto; }

/* ---------------------------- 4. Buttons ---------------------------- */
.btn {
  --btn-bg: var(--chrome);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--ink);
  font-size: 14.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease), background-color .28s var(--ease),
              color .28s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2), inset 0 1px 0 rgba(255,255,255,.9); border-color: var(--silver-300); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* Primary — polished graphite */
.btn--primary {
  background: var(--graphite-grad);
  border-color: #1B2128;
  color: #F3F6F9;
  box-shadow: 0 2px 6px rgba(20,26,33,.24), 0 12px 26px rgba(20,26,33,.20), inset 0 1px 0 rgba(255,255,255,.16);
}
.btn--primary:hover { box-shadow: 0 4px 10px rgba(20,26,33,.28), 0 18px 38px rgba(20,26,33,.26), inset 0 1px 0 rgba(255,255,255,.2); }

/* Sheen sweep on primary hover */
.btn--primary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.22) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(120%); }

/* WhatsApp */
.btn--wa { background: linear-gradient(180deg, #2FDD73 0%, #21B457 100%); border-color: #199B4A; color: #05240F; }
.btn--wa:hover { box-shadow: 0 4px 10px rgba(24,150,73,.26), 0 16px 34px rgba(24,150,73,.22), inset 0 1px 0 rgba(255,255,255,.4); }

.btn--ghost { background: rgba(255,255,255,.62); backdrop-filter: blur(8px); }
.btn--sm { padding: 10px 17px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------------------------- 5. Header ---------------------------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246, 248, 251, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(194, 203, 214, .5);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header.is-stuck {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 1px 0 rgba(194,203,214,.6), 0 10px 30px rgba(23,32,45,.09);
}

.header__bar {
  height: var(--header-h);
  display: flex; align-items: center; gap: 18px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__logo {
  height: 42px; width: auto;
  filter: drop-shadow(0 1px 2px rgba(23,32,45,.18));
  transition: transform .35s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.03); }
.brand__text { display: none; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  display: block;
  padding: 9px 13px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--graphite-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(255,255,255,.7); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: 9px; flex: none; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--chrome-soft);
  cursor: pointer;
  box-shadow: var(--sh-1), inset 0 1px 0 #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2), inset 0 1px 0 #fff; color: var(--ink); }
.icon-btn svg { width: 19px; height: 19px; }

.hamburger { display: none; }

/* Header search drawer */
.hsearch {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
  border-top: 1px solid transparent;
}
.hsearch.is-open { grid-template-rows: 1fr; border-top-color: var(--line); }
.hsearch__inner { overflow: hidden; }
.hsearch__pad { padding: 16px 0 20px; }

/* ---------------------------- 6. Mobile nav ---------------------------- */
.mnav {
  position: fixed; inset: 0; z-index: 120;
  visibility: hidden; pointer-events: none;
}
.mnav.is-open { visibility: visible; pointer-events: auto; }

.mnav__scrim {
  position: absolute; inset: 0;
  background: rgba(24, 31, 40, .42);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .34s var(--ease);
}
.mnav.is-open .mnav__scrim { opacity: 1; }

.mnav__panel {
  position: absolute; inset: 0 0 0 auto;
  width: min(360px, 88vw);
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF2F6 100%);
  border-left: 1px solid var(--line-strong);
  box-shadow: -20px 0 60px rgba(23,32,45,.2);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mnav.is-open .mnav__panel { transform: translateX(0); }

.mnav__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.mnav__logo { height: 34px; width: auto; }
.mnav__list { padding: 12px 12px 4px; }
.mnav__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink);
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--line);
  transition: background-color .2s var(--ease), padding-left .2s var(--ease);
}
.mnav__list a:hover { background: rgba(255,255,255,.9); padding-left: 20px; }
.mnav__list a span { color: var(--ink-4); font-size: 14px; letter-spacing: 0; }
.mnav__cta { padding: 16px 20px 26px; display: grid; gap: 10px; }
.mnav__note {
  margin-top: 4px; text-align: center;
  font-size: 13px; color: var(--ink-3);
}

/* ---------------------------- 7. Hero ---------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

/* Layered automotive backdrop.
   TO USE A PHOTOGRAPH: save a licensed motorcycle image as
   assets/img/hero-photo.jpg and uncomment the two lines marked below.
   The white gradient above it keeps the headline readable — that is the
   light-theme equivalent of a dark overlay. */
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.7) 45%, rgba(240,243,247,.92) 100%);
  /* background-image:
       linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.7) 45%, rgba(240,243,247,.92) 100%),
       url('../img/hero-photo.jpg'); */
  background-size: cover, cover;
  background-position: center, center 30%;
}
.hero__art {
  position: absolute; inset: 0; z-index: -2;
  background: url('../img/hero-bg.svg') center right / cover no-repeat;
  opacity: .95;
}
/* Chrome sheen + vignette so headline contrast always holds */
.hero__wash {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 520px at 18% 30%, rgba(255,255,255,.94), rgba(255,255,255,.42) 52%, transparent 74%),
    linear-gradient(100deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.5) 42%, rgba(255,255,255,.06) 70%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(62px, 8.5vw, 128px) 0 clamp(58px, 7vw, 110px);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-1), inset 0 1px 0 #fff;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 22px;
}
.hero__badge b { color: var(--ink); font-weight: 700; }
.hero__badge i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa); box-shadow: 0 0 0 3px rgba(37,211,102,.2);
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 82px);
  letter-spacing: -.005em;
  line-height: .96;
}
.hero h1 .l2 { display: block; }

.hero__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.35vw, 19.5px);
  color: var(--ink-2);
  max-width: 54ch;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__contact {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 30px; padding: 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-1), inset 0 1px 0 #fff;
}
.hero__contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
}
.hero__contact-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(21px, 2vw, 27px); font-weight: 700; letter-spacing: .02em;
  color: var(--ink);
}
.hero__contact-num:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Hero stat strip */
.hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--sh-1);
}
.hero__stat {
  padding: 16px 18px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
}
.hero__stat b {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 2.6vw, 33px); font-weight: 700;
  color: var(--ink); line-height: 1.05;
}
.hero__stat span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }

/* Hero visual card */
.hero__visual { position: relative; }
.hero__disc {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  background: var(--chrome);
  box-shadow: var(--sh-3), inset 0 1px 0 #fff;
  padding: clamp(20px, 2.6vw, 34px);
  overflow: hidden;
}
.hero__disc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,.75) 50%, transparent 60%);
  pointer-events: none;
}
.hero__disc img { width: 100%; height: auto; position: relative; }
.hero__disc-cap {
  position: relative;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
}
.hero__disc-cap strong {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .06em; font-size: 17px; color: var(--ink);
}
.hero__disc-cap span { font-size: 13px; color: var(--ink-3); }

/* ---------------------------- 8. Cards (shared) ---------------------------- */
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
  box-shadow: var(--sh-1);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-strong); }

/* Thin chrome top edge that lights up on hover */
.card::before {
  content: ''; position: absolute; left: 16px; right: 16px; top: -1px; height: 1px;
  background: var(--chrome-edge);
  opacity: 0; transition: opacity .34s var(--ease);
}
.card:hover::before { opacity: 1; }

/* ---------------------------- 9. Categories ---------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.cat {
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
}
.cat--live { grid-column: span 1; }
.cat__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--r);
  border: 1px solid var(--line-strong);
  background: var(--chrome);
  box-shadow: var(--sh-1), inset 0 1px 0 #fff;
  color: var(--graphite-2);
  transition: transform .34s var(--ease);
}
.cat:hover .cat__icon { transform: rotate(-6deg) scale(1.05); }
.cat__icon svg { width: 30px; height: 30px; }
.cat h3 { font-size: 24px; }
.cat p { font-size: 14.5px; color: var(--ink-3); }
.cat__foot { margin-top: auto; padding-top: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
}
.pill--count { background: var(--graphite-grad); border-color: #1E242C; color: #EEF2F6; }
.pill--soon { color: var(--ink-4); }

.cat--soon { opacity: .82; }
.cat--soon:hover { opacity: 1; }
.cat__link {
  font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--graphite-2);
  display: inline-flex; align-items: center; gap: 7px;
}
.cat__link svg { width: 15px; height: 15px; transition: transform .28s var(--ease); }
.cat__link:hover svg { transform: translateX(4px); }

/* ---------------------------- 10. Toolbar (search + filters) ------------- */
.toolbar {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,249,251,.92));
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-1);
  padding: 18px;
  margin-bottom: 26px;
}

.search {
  position: relative;
  display: flex; align-items: center;
}
.search__icon {
  position: absolute; left: 17px;
  width: 20px; height: 20px; color: var(--ink-4); pointer-events: none;
}
.search input {
  width: 100%;
  padding: 15px 46px 15px 48px;
  font-size: 15.5px; font-family: inherit; color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(23,32,45,.05);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search input::placeholder { color: var(--ink-4); }
.search input:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(92,105,118,.13), inset 0 1px 3px rgba(23,32,45,.05);
}
.search__clear {
  position: absolute; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  display: none; place-items: center;
  border: 0; background: var(--silver-100); color: var(--ink-2);
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.search__clear:hover { background: var(--silver-200); }
.search.has-value .search__clear { display: grid; }

/* Filter row */
.filters { margin-top: 16px; }
.filters__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
@media (min-width: 901px) {
  /* the segmented type control needs room for three labels */
  .filters__inner > .field--seg { grid-column: span 2; }
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field > label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}

.select {
  position: relative;
  display: flex; align-items: center;
}
.select select {
  appearance: none; -webkit-appearance: none;
  width: 100%;
  padding: 11px 38px 11px 14px;
  font-size: 14.5px; font-family: inherit; color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--chrome-soft);
  cursor: pointer;
  box-shadow: inset 0 1px 0 #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.select select:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px rgba(92,105,118,.13); }
.select svg { position: absolute; right: 13px; width: 15px; height: 15px; color: var(--ink-3); pointer-events: none; }

/* Segmented type filter */
.seg {
  display: inline-flex; gap: 3px; padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--silver-100);
  box-shadow: inset 0 1px 3px rgba(23,32,45,.06);
  flex-wrap: wrap;
}
.seg button {
  border: 0; cursor: pointer;
  padding: 9px 17px;
  border-radius: 999px;
  background: transparent;
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-3);
  transition: background-color .26s var(--ease), color .26s var(--ease), box-shadow .26s var(--ease);
}
.seg button:hover { color: var(--ink); }
.seg button[aria-pressed="true"] {
  background: var(--graphite-grad);
  color: #F2F5F9;
  box-shadow: 0 1px 3px rgba(20,26,33,.28), inset 0 1px 0 rgba(255,255,255,.16);
}

/* Price range */
.range { display: flex; align-items: center; gap: 12px; padding-top: 3px; }
.range input[type="range"] {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 6px; min-width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--graphite-2) var(--fill, 100%), var(--silver-200) var(--fill, 100%));
  cursor: pointer;
}
.range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--chrome); border: 1px solid var(--steel);
  box-shadow: 0 1px 4px rgba(23,32,45,.25), inset 0 1px 0 #fff;
}
.range input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #F1F4F8; border: 1px solid var(--steel);
  box-shadow: 0 1px 4px rgba(23,32,45,.25);
}
.range output {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--ink);
  min-width: 78px; text-align: right; white-space: nowrap;
}

/* Results bar */
.resbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.resbar__count { font-size: 14.5px; color: var(--ink-3); }
.resbar__count b { color: var(--ink); font-weight: 700; }
.resbar__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.chipbar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 8px 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 13px; color: var(--ink-2);
  box-shadow: var(--sh-1);
}
.chip button {
  border: 0; cursor: pointer;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--silver-100); color: var(--ink-2);
  transition: background-color .2s var(--ease);
}
.chip button:hover { background: var(--silver-200); }
.chip svg { width: 11px; height: 11px; }

/* Mobile filter drawer trigger */
.filters-toggle { display: none; }

/* ---------------------------- 11. Product grid ---------------------------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.prod {
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: cardIn .42s var(--ease) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.prod__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  padding: 18px;
  background:
    radial-gradient(420px 240px at 50% 18%, #FFFFFF, transparent 70%),
    linear-gradient(180deg, #F3F6F9 0%, #E6EBF1 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.prod__media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .55s var(--ease);
  filter: drop-shadow(0 6px 14px rgba(23,32,45,.16));
}
.prod:hover .prod__media img { transform: scale(1.07); }

.prod__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--graphite-2);
}
.prod__pos {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--graphite-grad);
  color: #EEF2F6;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 1px 4px rgba(20,26,33,.28);
}

.prod__body { padding: 18px 18px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.prod__name {
  font-size: 22px; line-height: 1.12;
  overflow-wrap: anywhere;
}

.prod__fit { min-width: 0; }
.prod__fit-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-4);
  display: block; margin-bottom: 5px;
}
.prod__fit-val {
  font-size: 13.5px; line-height: 1.55; color: var(--ink-2);
  overflow-wrap: anywhere;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod__price-row {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding-top: 4px;
}
.prod__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 700; letter-spacing: .01em;
  color: var(--ink);
}
.prod__price-note { font-size: 12px; color: var(--ink-4); letter-spacing: .04em; text-transform: uppercase; }

.prod__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px;
  padding: 16px 18px 18px;
}
/* Two buttons share a narrow card, so tighten the label metrics enough that
   "Enquire Now" never overflows its column. */
.prod__actions .btn {
  min-width: 0;
  padding: 11px 8px;
  font-size: 12px;
  letter-spacing: .02em;
}

/* Empty state */
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 62px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.6);
}
.empty svg { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--ink-4); }
.empty h3 { font-size: 24px; margin-bottom: 8px; }
.empty p { color: var(--ink-3); font-size: 14.5px; margin-bottom: 20px; }

/* ---------------------------- 12. Compatibility finder ------------------ */
.fit {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FA 100%);
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.fit__pick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: clamp(20px, 2.6vw, 30px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(240,244,248,.7));
}
.fit__go { align-self: end; }

.fit__out { padding: clamp(20px, 2.6vw, 30px); }
.fit__out-head {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.fit__out-head h3 { font-size: 21px; }
.fit__out-head span { font-size: 14px; color: var(--ink-3); }

.fitlist { display: grid; gap: 12px; }
.fitrow {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  align-items: center; gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  animation: cardIn .38s var(--ease) both;
}
.fitrow:hover { transform: translateX(3px); box-shadow: var(--sh-2); border-color: var(--line-strong); }
.fitrow__thumb {
  width: 54px; height: 54px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: linear-gradient(180deg, #F5F7FA, #E7ECF2);
  border: 1px solid var(--line);
  padding: 6px;
}
.fitrow__thumb img { width: 100%; height: 100%; object-fit: contain; }
.fitrow__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  color: var(--ink); line-height: 1.16;
  overflow-wrap: anywhere;
}
.fitrow__meta { font-size: 12.5px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.fitrow__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px; font-weight: 700; color: var(--ink); white-space: nowrap;
}

.fit__hint {
  display: flex; align-items: center; gap: 12px;
  padding: 26px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  background: rgba(255,255,255,.62);
  color: var(--ink-3);
  font-size: 14.5px;
}
.fit__hint svg { width: 26px; height: 26px; flex: none; color: var(--ink-4); }

/* ---------------------------- 13. Why Zyraxs ---------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  gap: 18px;
}
.why { padding: 28px 24px; display: flex; flex-direction: column; gap: 13px; overflow: hidden; }
.why__n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .2em;
  color: var(--ink-4);
}
.why__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--chrome);
  box-shadow: var(--sh-1), inset 0 1px 0 #fff;
  color: var(--graphite-2);
  transition: transform .34s var(--ease);
}
.why:hover .why__icon { transform: translateY(-3px) scale(1.06); }
.why__icon svg { width: 25px; height: 25px; }
.why h3 { font-size: 21px; }
.why p { font-size: 14.5px; color: var(--ink-3); }

/* ---------------------------- 14. About ---------------------------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.about__visual {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background: var(--chrome);
  box-shadow: var(--sh-3), inset 0 1px 0 #fff;
  padding: clamp(30px, 4vw, 52px);
  display: grid; place-items: center;
  overflow: hidden;
}
.about__visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,.8) 51%, transparent 60%);
}
.about__visual img { position: relative; width: min(300px, 78%); height: auto; }
.about__body p + p { margin-top: 16px; }
.about__facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px; margin-top: 28px;
}
.fact {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.82);
  box-shadow: var(--sh-1);
}
.fact b {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 27px; font-weight: 700; color: var(--ink); line-height: 1.06;
}
.fact span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }

/* ---------------------------- 15. Contact ---------------------------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 3.4vw, 40px);
  align-items: start;
}

.ccard {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F6FA 100%);
  box-shadow: var(--sh-2);
  padding: clamp(24px, 3vw, 34px);
}
.ccard h3 { font-size: 25px; margin-bottom: 6px; }
.ccard__sub { font-size: 14.5px; color: var(--ink-3); }

.cnum {
  display: block;
  margin: 4px 0 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(29px, 3.4vw, 40px); font-weight: 700; letter-spacing: .01em;
  color: var(--ink);
}
.cnum:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.cnum-label {
  display: block; margin-top: 24px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-4);
}

.ccard__btns { display: grid; gap: 10px; margin-top: 24px; }
.ccard__meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.cmeta { display: flex; gap: 13px; align-items: flex-start; }
.cmeta svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--steel); }
.cmeta b { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.cmeta span { font-size: 14px; color: var(--ink-3); }

/* Form */
.form {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
  box-shadow: var(--sh-2);
  padding: clamp(24px, 3vw, 34px);
}
.form h3 { font-size: 25px; margin-bottom: 6px; }
.form__sub { font-size: 14.5px; color: var(--ink-3); margin-bottom: 24px; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.form__grid .field--full { grid-column: 1 / -1; }

.form input[type="text"],
.form input[type="tel"],
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(23,32,45,.045);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(92,105,118,.13), inset 0 1px 3px rgba(23,32,45,.045);
}
.form input:user-invalid, .form textarea:user-invalid { border-color: #C7473A; }
.form__foot { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: 12.5px; color: var(--ink-4); flex: 1; min-width: 210px; }

/* ---------------------------- 16. Modal ---------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
  visibility: hidden; pointer-events: none;
}
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(22, 29, 38, .48);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.modal.is-open .modal__scrim { opacity: 1; }

.modal__box {
  position: relative;
  width: min(660px, 100%);
  max-height: min(86vh, 780px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FA 100%);
  box-shadow: 0 30px 80px rgba(20,28,38,.34);
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .34s var(--ease), opacity .34s var(--ease);
}
.modal.is-open .modal__box { transform: none; opacity: 1; }

.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.92);
  color: var(--ink-2);
  box-shadow: var(--sh-1);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.modal__close:hover { transform: rotate(90deg); background: #fff; }
.modal__close svg { width: 17px; height: 17px; }

.modal__media {
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  padding: 24px;
  background:
    radial-gradient(520px 260px at 50% 16%, #FFFFFF, transparent 70%),
    linear-gradient(180deg, #F2F5F9 0%, #E4EAF0 100%);
  border-bottom: 1px solid var(--line);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.modal__media img { max-height: 100%; width: auto; filter: drop-shadow(0 8px 18px rgba(23,32,45,.18)); }

.modal__body { padding: clamp(22px, 3vw, 30px); }
.modal__cat {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--steel);
}
.modal__body h3 { font-size: clamp(26px, 3vw, 34px); margin: 8px 0 4px; overflow-wrap: anywhere; }
.modal__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 700; color: var(--ink); line-height: 1.1;
  margin: 12px 0 22px;
}

.spec { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.spec__row {
  display: grid; grid-template-columns: 172px minmax(0, 1fr);
  gap: 14px; padding: 13px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec__row:last-child { border-bottom: 0; }
.spec__row:nth-child(even) { background: var(--surface-2); }
.spec__row dt { font-weight: 600; color: var(--ink-2); letter-spacing: .02em; }
.spec__row dd { margin: 0; color: var(--ink-3); overflow-wrap: anywhere; }

.taglist { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  font-size: 12px; color: var(--ink-2);
}

.modal__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 24px; }

/* ---------------------------- 17. Footer ---------------------------- */
.footer {
  margin-top: clamp(40px, 6vw, 80px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0) 30%),
    linear-gradient(180deg, #E9EEF3 0%, #DCE3EA 100%);
  border-top: 1px solid var(--line-strong);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
  padding: clamp(42px, 5vw, 66px) 0 clamp(30px, 3.4vw, 42px);
}
.footer__brand-logo { height: 52px; width: auto; margin-bottom: 20px; }
.footer__tag { font-size: 15px; color: var(--ink-2); max-width: 34ch; }
.footer__social { display: flex; gap: 9px; margin-top: 22px; flex-wrap: wrap; }
.soc {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--chrome-soft);
  color: var(--ink-2);
  box-shadow: var(--sh-1), inset 0 1px 0 #fff;
  transition: transform .26s var(--ease), color .26s var(--ease), box-shadow .26s var(--ease);
}
.soc:hover { transform: translateY(-3px); color: var(--ink); box-shadow: var(--sh-2), inset 0 1px 0 #fff; }
.soc svg { width: 18px; height: 18px; }
.soc[aria-disabled="true"] { opacity: .55; cursor: default; }
.soc[aria-disabled="true"]:hover { transform: none; }

.footer h4 {
  font-size: 15px; letter-spacing: .16em;
  color: var(--ink); margin-bottom: 16px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a, .footer__links span { font-size: 14.5px; color: var(--ink-2); transition: color .22s var(--ease), transform .22s var(--ease); display: inline-block; }
.footer__links a:hover { color: var(--ink); transform: translateX(3px); }
.footer__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px; font-weight: 700; color: var(--ink);
  display: block; margin-bottom: 14px;
}
.footer__bottom {
  border-top: 1px solid var(--line-strong);
  padding: 20px 0 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}
.footer__bottom a:hover { color: var(--ink); }

/* ---------------------------- 18. Mobile sticky CTA ---------------------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -6px 24px rgba(23,32,45,.1);
}
.dock .btn { flex: 1; padding: 13px 12px; }

/* Desktop floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #2FDD73, #1FA851);
  color: #05240F;
  border: 1px solid #199B4A;
  box-shadow: 0 6px 18px rgba(24,150,73,.34), 0 16px 40px rgba(24,150,73,.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.9); opacity: .8; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------------------------- 19. Reveal animation ---------------------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .68s var(--ease), transform .68s var(--ease);
}
.reveal-d1.is-in { transition-delay: .06s; }
.reveal-d2.is-in { transition-delay: .12s; }
.reveal-d3.is-in { transition-delay: .18s; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------------------------- 20. Responsive ---------------------------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* Headline leads on one-column layouts; the visual follows it. */
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .about { grid-template-columns: 1fr; }
  .about__visual { order: -1; max-width: 460px; }
  .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fit__pick { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fit__go { grid-column: 1 / -1; }
  .fit__go .btn { width: 100%; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .nav { display: none; }
  .hamburger { display: inline-grid; }
  .header__actions .btn--call-label { display: none; }
  .header__actions .btn { padding: 11px 15px; }
  .brand__logo { height: 30px; }

  /* Filters collapse into a drawer */
  .filters-toggle {
    display: inline-flex;
    margin-top: 14px;
    width: 100%;
  }
  .filters-toggle svg:last-child { transition: transform .3s var(--ease); }
  .filters-toggle[aria-expanded="true"] svg:last-child { transform: rotate(180deg); }
  .filters {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    transition: grid-template-rows .36s var(--ease), margin-top .36s var(--ease);
  }
  .filters > .filters__inner { overflow: hidden; }
  .filters.is-open { grid-template-rows: 1fr; margin-top: 14px; }
  .filters__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
  }

  .dock { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 74px; }

  .fitrow { grid-template-columns: 46px minmax(0, 1fr); row-gap: 10px; }
  .fitrow__thumb { width: 46px; height: 46px; }
  .fitrow__price { grid-column: 1 / -1; }
  .fitrow .btn { grid-column: 1 / -1; width: 100%; }

  .spec__row { grid-template-columns: 1fr; gap: 3px; }
}

@media (max-width: 700px) {
  .wrap { padding-inline: 16px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__contact { width: 100%; }
  /* Grow to share the row, but never shrink below the label — the buttons
     wrap onto separate lines instead of clipping their text. */
  .hero__cta .btn { flex: 1 0 auto; }
  .hero__badge { font-size: 11px; letter-spacing: .1em; gap: 8px; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .modal__cta { grid-template-columns: 1fr; }
  .fit__pick { grid-template-columns: 1fr; }
  .toolbar { padding: 14px; }
}

@media (max-width: 560px) {
  /* Two-up product grid down to very small screens, then one-up */
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }
  .prod__body { padding: 14px 13px 0; gap: 9px; }
  .prod__name { font-size: 18px; }
  .prod__price { font-size: 24px; }
  .prod__actions { grid-template-columns: 1fr; padding: 12px 13px 14px; }
  .prod__fit-val { -webkit-line-clamp: 2; font-size: 12.5px; }
  .prod__cat { font-size: 9.5px; letter-spacing: .1em; padding: 4px 8px; }
  .prod__pos { display: none; }
  .cat__foot { gap: 8px; }
}

@media (max-width: 380px) {
  .prod-grid { grid-template-columns: 1fr; }
  .dock .btn { font-size: 12.5px; padding: 12px 8px; }
}

/* ---------------------------- 21. Preferences ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .dock, .wa-float, .modal, .mnav, .toolbar, .footer__social { display: none !important; }
  body { background: #fff; padding: 0; }
  .card, .prod { break-inside: avoid; box-shadow: none; }
}
