/* ============================================================
   GORE BASHA ROYAL ENFIELD SPARE PARTS — MAIN STYLESHEET
   Premium black / white / grey palette with a brass accent.
   Mobile-first, fast, accessible.
   ============================================================ */

/* ---------- 1. Variables & Fonts ---------- */
:root {
  --black: #0b0b0d;
  --ink: #141416;
  --grey-800: #1d1d21;
  --grey-700: #26262b;
  --line-dark: #2c2c33;
  --grey-500: #5a5a63;

  --paper: #ffffff;
  --paper-2: #f3f3f5;
  --line-light: #e3e3e8;

  --text: #19191d;
  --muted: #63636c;

  --accent: #c9a227;
  --accent-dk: #a9861c;
  --accent-soft: rgba(201, 162, 39, 0.13);

  --wa: #25d366;
  --wa-dk: #1aaf55;

  --green: #2e9e44;
  --amber: #d97b0c;
  --red: #cf3b2f;

  --radius: 12px;
  --radius-sm: 8px;

  --shadow-1: 0 1px 2px rgba(11, 11, 13, 0.06), 0 4px 14px rgba(11, 11, 13, 0.06);
  --shadow-2: 0 10px 30px rgba(11, 11, 13, 0.14);

  --nav-h: 66px;

  --font-display: "Barlow Condensed", "Barlow", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

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

::selection { background: var(--accent); color: var(--black); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #000; padding: .7rem 1.2rem;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.1rem; }
.container-narrow { max-width: 920px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 8vw, 4.3rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; text-transform: uppercase; }
h4 { font-size: 1.05rem; text-transform: uppercase; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }

.lead { font-size: 1.08rem; color: var(--muted); }

.muted { color: var(--muted); }

.accent { color: var(--accent); }

/* ---------- 4. Layout helpers ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); scroll-margin-top: calc(var(--nav-h) + 16px); }
.section--grey { background: var(--paper-2); }
.section--dark { background: var(--black); color: #e8e8ea; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead, .section--dark .muted { color: #a7a7b0; }

.section-head { max-width: 640px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: .6rem; }

.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }

.grid { display: grid; gap: 1.1rem; }

.note-bar {
  display: flex; gap: .6rem; align-items: flex-start;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.35);
  color: #6d5710; border-radius: var(--radius-sm);
  padding: .75rem 1rem; font-size: .92rem;
}
.note-bar svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.35rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .98rem; letter-spacing: .02em;
  line-height: 1; transition: background .18s ease, color .18s ease,
    border-color .18s ease, transform .12s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { background: var(--accent-dk); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #0a0a0c; }

.btn-light { background: #fff; color: var(--black); }
.btn-light:hover { background: #ededf0; }

.btn-outline { border: 1.6px solid #cfcfd5; color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dk); }

.btn-outline-light { border: 1.6px solid #55555f; color: #fff; }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }

.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dk); }

.btn-ghost-dark { border: 1.6px solid #3a3a42; color: var(--accent); }
.btn-ghost-dark:hover { border-color: var(--accent); background: var(--accent-soft); }

.btn-sm { padding: .55rem .9rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.06rem; }

/* ---------- 6. Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28em .7em; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1.3; white-space: nowrap;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.badge-avail { background: rgba(46,158,68,.14); color: var(--green); }
.badge-avail-l { background: rgba(217,123,12,.15); color: var(--amber); }
.badge-avail-o { background: rgba(207,59,47,.12); color: var(--red); }
.badge-tag { background: var(--accent-soft); color: var(--accent-dk); border: 1px solid rgba(201,162,39,.4); }
.badge-muted { background: rgba(11,11,13,.06); color: var(--muted); }
.badge-on-dark { background: rgba(255,255,255,.1); color: #cfcfd4; }
.badge-wa { background: rgba(37,211,102,.16); color: var(--wa-dk); }

/* ---------- 7. Topbar & Navbar ---------- */
.topbar {
  background: var(--black); color: #c9c9cf; font-size: .8rem;
  border-bottom: 1px solid var(--line-dark);
  padding-block: .5rem;
}
.topbar .container { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: var(--accent); font-weight: 600; }
.topbar__hours { display: inline-flex; align-items: center; gap: .4rem; color: #a7a7b0; }
.topbar__hours svg { width: 14px; height: 14px; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 1rem;
}

.logo { display: flex; align-items: center; gap: .65rem; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.logo__mark svg { width: 20px; height: 20px; color: var(--accent); }
.logo__text { line-height: 1.05; }
.logo__text b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.02rem; letter-spacing: .08em; color: #fff; text-transform: uppercase;
}
.logo__text span { font-size: .62rem; letter-spacing: .26em; color: #a7a7b0; text-transform: uppercase; }

.nav__links { display: none; align-items: center; gap: .1rem; margin-left: .4rem; }
.nav__links a {
  padding: .55rem .6rem; border-radius: 7px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  letter-spacing: .03em; text-transform: uppercase;
  color: #d6d6dc; transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__links a.is-active { color: var(--accent); }

.nav__search { display: none; flex: 1; max-width: 340px; margin-left: auto; }
.nav__actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.nav__actions .btn-wa-sm {
  display: flex; align-items: center; gap: .45rem;
  background: var(--wa); color: #fff; font-weight: 700; font-size: .9rem;
  padding: .6rem 1rem; border-radius: var(--radius-sm); transition: background .15s ease;
}
.nav__actions .btn-wa-sm:hover { background: var(--wa-dk); }
.nav__actions .btn-wa-sm svg { width: 17px; height: 17px; }
.nav__actions .btn-wa-sm span { display: none; }

.search-form { position: relative; width: 100%; }
.search-form input {
  width: 100%; border: 1px solid var(--line-dark); border-radius: 999px;
  background: var(--grey-800); color: #fff; padding: .55rem 2.6rem .55rem 1.1rem;
  font-size: .9rem; transition: border-color .15s ease;
}
.search-form input::placeholder { color: #7c7c86; }
.search-form input:focus { outline: none; border-color: var(--accent); }
.search-form button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: #9a9aa3; transition: color .15s ease, background .15s ease;
}
.search-form button:hover { color: var(--accent); background: rgba(255,255,255,.06); }
.search-form button svg { width: 18px; height: 18px; }

.hamburger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--line-dark); border-radius: 8px; color: #fff;
  transition: border-color .15s ease;
}
.hamburger:hover { border-color: var(--accent); }
.hamburger svg { width: 22px; height: 22px; }

/* mobile drawer */
.mobile-menu {
  display: none; background: var(--ink); border-top: 1px solid var(--line-dark);
  padding-bottom: 1.4rem;
}
.mobile-menu.is-open { display: block; animation: fadeIn .2s ease; }
.mobile-menu .search-form { margin: 1.1rem 0 .6rem; }
.mobile-menu__links { display: grid; gap: .15rem; }
.mobile-menu__links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem .4rem; color: #e2e2e6; font-weight: 600; font-size: 1rem;
  border-bottom: 1px solid var(--line-dark); border-radius: 6px;
}
.mobile-menu__links a:hover, .mobile-menu__links a.is-active { color: var(--accent); }
.mobile-menu__links a svg { width: 16px; height: 16px; opacity: .5; }
.mobile-menu .btn { margin-top: 1rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 8. Hero (homepage) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--black); color: #ececef;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 82% 30%, rgba(201,162,39,.10), transparent 60%),
    radial-gradient(600px 380px at 8% 90%, rgba(201,162,39,.06), transparent 55%);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: .24; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 60% at 70% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 70% 30%, #000 0%, transparent 75%);
}
.hero .container { position: relative; display: grid; gap: 2.4rem; align-items: center; }

.hero__copy { max-width: 540px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(201,162,39,.45); color: var(--accent);
  background: var(--accent-soft); border-radius: 999px;
  padding: .4rem .95rem; font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% {opacity:1} 50% {opacity:.35} }

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { margin-top: 1.1rem; font-size: 1.12rem; color: #a3a3ad; max-width: 46ch; }
.hero__ctas { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__foot { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-size: .84rem; color: #8f8f99; }
.hero__foot span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__foot svg { width: 15px; height: 15px; color: var(--accent); }

.hero__visual { position: relative; }
.hero__visual img { width: 100%; height: auto; }

.hero__caption {
  position: absolute; left: 6%; bottom: 2%;
  background: rgba(20,20,22,.9); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: .8rem 1.1rem;
  font-size: .85rem; color: #d5d5da;
  display: flex; align-items: center; gap: .75rem; max-width: 78%;
  box-shadow: var(--shadow-2);
}
.hero__caption svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.hero__caption b { display: block; color: #fff; font-size: .95rem; }

/* ---------- 9. Trust bar ---------- */
.trust-bar { background: var(--ink); border-bottom: 1px solid var(--line-dark); color: #ececef; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; padding-block: 1.6rem; }
.trust-item { display: flex; gap: .85rem; align-items: flex-start; }
.trust-item__icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.35);
  display: grid; place-items: center; color: var(--accent);
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-family: var(--font-display); font-size: 1.04rem; color: #fff; text-transform: uppercase; letter-spacing: .02em; line-height: 1.2; }
.trust-item p { font-size: .85rem; color: #9b9ba5; margin-top: .15rem; }

/* ---------- 10. Category cards ---------- */
.category-grid { grid-template-columns: repeat(2, 1fr); }
.category-card {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-height: 170px;
}
.category-card::after {
  content: ""; position: absolute; right: -42px; bottom: -42px; width: 130px; height: 130px;
  border-radius: 50%; border: 1px solid rgba(201,162,39,.18); pointer-events: none;
}
.category-card:hover {
  transform: translateY(-3px); border-color: rgba(201,162,39,.55);
  box-shadow: var(--shadow-2);
}
.category-card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.35);
  display: grid; place-items: center; color: var(--accent);
}
.category-card__icon svg { width: 27px; height: 27px; }
.category-card h3 { color: #fff; }
.category-card__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.category-card__count { font-size: .82rem; color: #8f8f99; }
.category-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent); font-weight: 700; font-size: .84rem; letter-spacing: .04em;
  text-transform: uppercase; transition: gap .15s ease;
}
.category-card__link svg { width: 15px; height: 15px; }
.category-card:hover .category-card__link { gap: .65rem; }

/* ---------- 11. Model cards ---------- */
.model-grid { grid-template-columns: 1fr; }
.model-card {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1.4rem 1.35rem;
  display: flex; flex-direction: column; gap: .55rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.model-card:hover { transform: translateY(-3px); border-color: rgba(201,162,39,.5); box-shadow: var(--shadow-2); }
.model-card__top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.model-card h3 { font-size: 1.3rem; }
.model-card__years { font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.model-card p { font-size: .92rem; color: var(--muted); }
.model-card__count { color: var(--accent-dk); font-weight: 700; font-size: .9rem; }

/* ---------- 12. Product cards ---------- */
.parts-grid { grid-template-columns: 1fr; }

.product-card {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: rgba(201,162,39,.45); box-shadow: var(--shadow-2); }

.product-card__media {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--ink); display: grid; place-items: center; overflow: hidden;
}
.product-card__media .ph {
  position: relative; display: grid; place-items: center;
  width: 74px; height: 74px; color: rgba(201,162,39,.85);
  transition: transform .25s ease;
}
.product-card__media .ph span {
  position: absolute; bottom: .65rem; right: .8rem;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; color: rgba(255,255,255,.28);
}
.product-card__media > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-card:hover .product-card__media .ph { transform: scale(1.08); }
.product-card__media .ph svg { width: 100%; height: 100%; }
.product-card__badges { position: absolute; top: .7rem; left: .7rem; right: .7rem; display: flex; justify-content: space-between; gap: .5rem; }
.product-card__view { position: absolute; inset: 0; z-index: 2; }

.product-card__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dk); }
.product-card h3 {
  font-size: 1.18rem; line-height: 1.15; color: var(--text);
}
.product-card__models { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.product-card__models svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.product-card__bottom { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.product-card__price { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--text); line-height: 1; }
.product-card__price small { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; font-family: var(--font-body); }
.product-card__price .was { color: var(--muted); text-decoration: line-through; font-size: 1rem; font-weight: 600; margin-right: .3rem; }

.product-card__ctas { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.product-card__ctas .btn { padding: .62rem .6rem; font-size: .9rem; }

/* ---------- 13. Catalogue: toolbar + filters ---------- */
.cat-toolbar {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(243,243,245,.94); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-light);
  padding-block: .85rem;
}
.cat-toolbar__row { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.cat-toolbar__count { font-size: .88rem; color: var(--muted); font-weight: 600; margin-right: auto; }
.cat-toolbar__count b { color: var(--text); }

.select-wrap { position: relative; display: inline-flex; align-items: center; }
.select-wrap::after {
  content: ""; position: absolute; right: .85rem; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-50%); top: 50%; pointer-events: none; color: #777;
}
select, .select-wrap select {
  appearance: none; -webkit-appearance: none;
  border: 1px solid #d5d5db; background: #fff; border-radius: var(--radius-sm);
  padding: .55rem 2.2rem .55rem .9rem; font-size: .9rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: border-color .15s ease;
}
select:focus { outline: none; border-color: var(--accent); }

.filters-panel {
  display: none; background: #fff; border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1.1rem; margin-top: .8rem;
  gap: 1rem;
}
.filters-panel.is-open { display: grid; }
.filters-panel__group { display: grid; gap: .45rem; }
.filters-panel__group > label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.filters-panel__chips { display: flex; flex-wrap: wrap; gap: .45rem; }

.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid #d5d5db; background: #fff; border-radius: 999px;
  padding: .42rem .95rem; font-size: .86rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all .15s ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent-dk); }
.chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.is-on-count { background: var(--accent-soft); border-color: rgba(201,162,39,.5); color: var(--accent-dk); }

.chip-remove {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--ink); color: #fff; border-radius: 999px; padding: .4rem .95rem;
  font-size: .84rem; font-weight: 600;
}
.chip-remove svg { width: 13px; height: 13px; }
.chip-remove:hover { background: var(--red); }

.price-inputs { display: flex; align-items: center; gap: .5rem; }
.price-inputs input {
  width: 100px; border: 1px solid #d5d5db; border-radius: var(--radius-sm);
  padding: .5rem .7rem; font-size: .9rem;
}
.price-inputs input:focus { outline: none; border-color: var(--accent); }

.check-toggle { display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .92rem; font-weight: 600; }
.check-toggle input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }

/* ---------- 14. Empty state ---------- */
.empty-state { text-align: center; padding: 3.2rem 1rem; }
.empty-state svg { width: 54px; height: 54px; margin: 0 auto 1rem; color: #b9b9c0; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.empty-state p { color: var(--muted); max-width: 40ch; margin: 0 auto .5rem; }
.empty-state .btn { margin-top: .8rem; }

/* ---------- 15. Product detail ---------- */
.pd { display: grid; gap: 2rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--muted); margin-bottom: .6rem; }
.breadcrumbs a:hover { color: var(--accent-dk); }
.breadcrumbs svg { width: 13px; height: 13px; align-self: center; color: #bbb; }

.pd__media { border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.pd__media .main-img { aspect-ratio: 4 / 3; display: grid; place-items: center; position: relative; }
.pd__media .main-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd__media .main-img .ph { position: relative; display: grid; place-items: center; width: 130px; height: 130px; color: rgba(201,162,39,.85); }
.pd__media .main-img .ph svg { width: 100%; height: 100%; }
.pd__media .main-img .ph span {
  position: absolute; bottom: .9rem; right: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  letter-spacing: .16em; color: rgba(255,255,255,.3);
}
.pd__badges { position: absolute; top: .9rem; left: .9rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.pd__thumbs { display: flex; gap: .6rem; padding: .8rem; background: #0f0f12; border-top: 1px solid var(--line-dark); flex-wrap: wrap; }
.pd__thumbs img, .pd__thumbs .thumb-ph {
  width: 64px; height: 64px; border-radius: 8px; cursor: pointer;
  border: 2px solid transparent; object-fit: cover; transition: border-color .15s ease;
}
.pd__thumbs img { background: var(--grey-800); }
.pd__thumbs .thumb-ph { display: grid; place-items: center; color: var(--accent); border-color: var(--line-dark); }
.pd__thumbs .thumb-ph svg { width: 26px; height: 26px; }
.pd__thumbs img.is-active, .pd__thumbs .thumb-ph.is-active { border-color: var(--accent); }

.pd__title { font-size: clamp(1.9rem, 4.5vw, 2.6rem); line-height: 1.04; }
.pd__meta { font-size: .86rem; color: var(--muted); margin-top: .5rem; }
.pd__meta b { color: var(--text); }

.pd__price { display: flex; align-items: baseline; gap: .65rem; margin-block: 1rem; }
.pd__price .now { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; }
.pd__price .was { font-size: 1.15rem; color: var(--muted); text-decoration: line-through; }
.pd__price .save { font-size: .82rem; font-weight: 700; color: var(--green); background: rgba(46,158,68,.12); padding: .25rem .6rem; border-radius: 999px; }

.pd__actions { display: grid; gap: .7rem; margin-top: 1.2rem; }
.pd__actions .btn { padding: .95rem 1.4rem; font-size: 1rem; }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; font-size: .93rem; }
.spec-table tr + tr { border-top: 1px solid var(--line-light); }
.spec-table th, .spec-table td { text-align: left; padding: .7rem .75rem; vertical-align: top; }
.spec-table th { color: var(--muted); font-weight: 600; width: 46%; }
.spec-table td { font-weight: 600; }
.spec-table .model-tags { display: flex; flex-wrap: wrap; gap: .35rem; }

.pd__desc h3, .pd__compat h3, .pd__related h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.pd__desc p { color: var(--muted); }

.compat-note {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.4);
  border-radius: var(--radius); padding: 1rem 1.1rem;
}
.compat-note svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.compat-note b { display: block; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; }
.compat-note p { color: #5c4a10; font-size: .92rem; margin-top: .2rem; }

/* ---------- 16. About / Why choose ---------- */
.about-card { display: flex; gap: 1.4rem; flex-direction: column; }
.about-card__text p + p { margin-top: .9rem; }
.about-card__text p { color: #52525b; }
.about-card__sig { margin-top: 1.4rem; border-top: 2px solid var(--accent); padding-top: .8rem; max-width: 260px; }
.about-card__sig b { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .03em; text-transform: uppercase; }
.about-card__sig span { font-size: .85rem; color: var(--muted); }

.why-grid { grid-template-columns: 1fr; }
.why-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); transition: transform .18s ease, border-color .18s ease;
}
.why-item:hover { transform: translateY(-2px); border-color: rgba(201,162,39,.45); }
.why-item__icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.35);
  display: grid; place-items: center; color: var(--accent);
}
.why-item__icon svg { width: 23px; height: 23px; }
.why-item h3 { font-size: 1rem; }
.why-item p { font-size: .88rem; color: var(--muted); margin-top: .2rem; }

.timeline-strip {
  display: grid; gap: 1.2rem; margin-top: .5rem;
}
.timeline-strip .t-item { display: flex; gap: .9rem; align-items: flex-start; }
.timeline-strip .t-dot {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.4);
  display: grid; place-items: center; color: var(--accent); font-weight: 800;
  font-family: var(--font-display);
}
.timeline-strip .t-item b { display: block; font-family: var(--font-display); font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; }
.timeline-strip .t-item p { font-size: .88rem; color: var(--muted); }

/* ---------- 17. Forms ---------- */
.cfm-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .86rem; font-weight: 700; }
.field label span { color: var(--red); }
.field input, .field select, .field textarea {
  border: 1px solid #d5d5db; border-radius: var(--radius-sm);
  padding: .72rem .9rem; width: 100%; font-size: .96rem;
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: .8rem; color: var(--muted); }

.form-card {
  background: #fff; border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-1);
}
.form-card--dark { background: var(--ink); border-color: var(--line-dark); }
.form-card--dark .field label { color: #d9d9de; }
.form-card--dark .field input, .form-card--dark .field select, .form-card--dark .field textarea {
  background: var(--grey-800); border-color: var(--line-dark); color: #fff;
}
.form-card--dark .field input::placeholder, .form-card--dark .field textarea::placeholder { color: #73737d; }

.file-drop { position: relative; }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop__ui {
  border: 1.6px dashed #b9b9c2; border-radius: var(--radius-sm);
  padding: 1.1rem; text-align: center; color: var(--muted);
  font-size: .9rem; display: grid; gap: .3rem; justify-items: center;
  transition: border-color .15s ease, background .15s ease;
}
.file-drop__ui svg { width: 30px; height: 30px; color: var(--accent); }
.file-drop:hover .file-drop__ui, .file-drop input:focus + .file-drop__ui { border-color: var(--accent); background: var(--accent-soft); }

.fine-print { font-size: .8rem; color: var(--muted); margin-top: .8rem; }

.contact-list { display: grid; gap: .9rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1rem 1.1rem;
  transition: border-color .15s ease, transform .18s ease;
}
.contact-item:hover { border-color: rgba(201,162,39,.5); transform: translateY(-2px); }
.contact-item__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 11px;
  background: var(--accent-soft); border: 1px solid rgba(201,162,39,.35);
  display: grid; place-items: center; color: var(--accent);
}
.contact-item__icon svg { width: 24px; height: 24px; }
.contact-item b { display: block; font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-family: var(--font-display); }
.contact-item span { font-weight: 600; font-size: .97rem; }
.contact-item--wa .contact-item__icon { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.4); color: var(--wa-dk); }

.map-frame { width: 100%; border: 1px solid var(--line-light); border-radius: var(--radius); min-height: 300px; display: block; }

/* ---------- 18. Testimonials ---------- */
.testi-grid { grid-template-columns: 1fr; }
.testi-card {
  background: #fff; border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .8rem;
}
.testi-card__stars { display: flex; gap: 2px; color: var(--accent); }
.testi-card__stars svg { width: 17px; height: 17px; }
.testi-card__text { color: #4b4b54; font-size: .98rem; }
.testi-card__who { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--line-light); padding-top: .9rem; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--accent); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.testi-card__who b { display: block; font-size: .95rem; }
.testi-card__who span { font-size: .82rem; color: var(--muted); }
.testi-placeholder {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--amber); background: rgba(217,123,12,.12);
  padding: .3rem .7rem; border-radius: 999px; align-self: flex-start;
}

/* ---------- 19. FAQ ---------- */
.faq-list { display: grid; gap: .7rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  overflow: hidden; transition: border-color .15s ease;
}
.faq-item.is-open { border-color: rgba(201,162,39,.5); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-align: left; padding: 1.05rem 1.2rem;
  font-weight: 650; font-size: 1rem; color: var(--text);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); transition: transform .2s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 1.2rem 1.15rem; color: var(--muted); font-size: .95rem; }

/* ---------- 20. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--black) 0%, var(--ink) 60%, #1b1810 100%);
  color: #fff; text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 50% 100%, rgba(201,162,39,.18), transparent 65%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band p { color: #a7a7b0; margin: 1rem auto 0; max-width: 46ch; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }

/* ---------- 21. Footer ---------- */
.footer { background: var(--black); color: #a9a9b2; border-top: 1px solid #1b1b20; }
.footer__grid { display: grid; gap: 2rem; padding-block: 3rem 2rem; }
.footer__brand p { margin-top: .9rem; font-size: .92rem; max-width: 30ch; }
.footer h4 {
  color: #fff; font-size: .9rem; letter-spacing: .14em; margin-bottom: 1rem;
}
.footer__links { display: grid; gap: .5rem; }
.footer__links a, .footer__links button {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #a9a9b2; font-size: .93rem; padding: .1rem 0;
  transition: color .15s ease, transform .15s ease;
}
.footer__links a:hover { color: var(--accent); transform: translateX(3px); }
.footer__links svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; }
.footer__contact li + li { margin-top: .7rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer__contact a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid #1b1b20; padding-block: 1.3rem;
  font-size: .82rem; color: #76767f;
}
.footer__bottom .container { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; align-items: center; justify-content: space-between; }
.footer__policies { display: flex; flex-wrap: wrap; gap: .15rem 1.1rem; }
.footer__policies a:hover { color: var(--accent); }

/* ---------- 22. Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(26,175,85,.45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,175,85,.55); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55); animation: waPing 2.4s infinite;
}
@keyframes waPing { 0% { transform: scale(1); opacity: 1; } 70% { transform: scale(1.45); opacity: 0; } 100% { opacity: 0; } }
.wa-float .wa-float__label {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .35rem .7rem; border-radius: 7px; white-space: nowrap;
  opacity: 0; transition: opacity .18s ease; pointer-events: none;
}
.wa-float:hover .wa-float__label { opacity: 1; }

/* ---------- 23. Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- 24. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--black); color: #ececef;
  padding: clamp(2.6rem, 6vw, 4.5rem) 0;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(201,162,39,.12), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin-top: .6rem; }
.page-hero .lead { color: #a3a3ad; margin-top: .7rem; max-width: 62ch; }
.page-hero .breadcrumbs { color: #8f8f99; margin-bottom: 0; }
.page-hero .breadcrumbs a { color: #c4c4cb; }
.page-hero .breadcrumbs a:hover { color: var(--accent); }

/* ---------- 25. Misc ---------- */
.request-band {
  display: grid; gap: 1.4rem; align-items: center;
  background: linear-gradient(110deg, var(--ink), #221d0f);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: var(--radius); color: #fff;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  position: relative; overflow: hidden;
}
.request-band::after {
  content: "?"; position: absolute; right: -10px; bottom: -46px;
  font-family: var(--font-display); font-size: 11rem; font-weight: 700;
  color: rgba(201,162,39,.08); line-height: 1; pointer-events: none;
}
.request-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.request-band p { color: #b6b6c0; margin-top: .4rem; max-width: 48ch; }
.request-band .btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-cell {
  border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.02);
  padding: 1rem 1.1rem; text-align: left;
}
.stat-cell b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--accent); line-height: 1; }
.stat-cell span { font-size: .8rem; color: #9b9ba5; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

.hint-wa {
  display: flex; align-items: center; gap: .5rem; font-size: .86rem;
  color: #8f8f99; margin-top: .8rem;
}
.hint-wa svg { width: 16px; height: 16px; color: var(--wa-dk); }

/* ---------- 26. Responsive ---------- */
@media (min-width: 560px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cfm-grid { grid-template-columns: 1fr 1fr; }
  .cfm-grid .span-2 { grid-column: 1 / -1; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .pd__actions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero .container { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .about-card { flex-direction: row; align-items: flex-start; gap: 2.6rem; }
  .about-card__text { flex: 1.4; }
  .timeline-strip { flex: 1; margin-top: 0; }
  .request-band { grid-template-columns: 1.4fr auto; }
  .filters-panel { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .container { padding-inline: 1.6rem; }
  .nav__links { display: flex; }
  .hamburger { display: none; }
  .nav__actions .btn-wa-sm span { display: inline; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .category-card { min-height: 190px; }
  .parts-grid { grid-template-columns: repeat(3, 1fr); }
  .model-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .pd { grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
  .pd__media { position: sticky; top: calc(var(--nav-h) + 20px); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
}

@media (min-width: 1200px) {
  .nav__search { display: block; }
}

@media (max-width: 380px) {
  .hero__caption { max-width: 92%; }
  .product-card__ctas { grid-template-columns: 1fr; }
}