:root {
  color-scheme: dark;
  --ab-bg: #07080b;
  --ab-panel: #11141a;
  --ab-panel-2: #151a21;
  --ab-text: #f5f7fb;
  --ab-muted: #9299a6;
  --ab-line: rgba(255, 255, 255, .085);
  --ab-line-strong: rgba(255, 255, 255, .15);
  --ab-red: #ef2029;
  --ab-red-hover: #fa303a;
  --ab-red-soft: rgba(239, 32, 41, .13);
  --ab-green: #55c88a;
  --ab-amber: #f2ba52;
  --ab-danger: #ff6670;
  --ab-shadow: 0 18px 52px rgba(0, 0, 0, .32);
  --ab-shadow-sm: 0 10px 30px rgba(0, 0, 0, .24);
  --ab-radius-lg: 26px;
  --ab-radius: 16px;
  --ab-container: 1440px;
  --ab-header-height: 114px;
  --ab-body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

/* Language is resolved before first paint. Russian content stays hidden only
   until the initial translation pass is complete, preventing a UA→RU flash. */
html.ab-i18n-pending body { visibility: hidden; }
html.ab-language-changing body { pointer-events: none; }

html { scroll-behavior: smooth; overflow-x: hidden; background: var(--ab-bg); }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ab-bg);
  color: var(--ab-text);
  font-family: var(--ab-body-font);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked, body.panel-open { overflow: hidden; overscroll-behavior: none; }
body.is-scroll-locked { position: fixed; left: 0; right: 0; width: 100%; }
button, input, select, textarea { font: inherit; }
input[type="search"] { -webkit-appearance: none; appearance: none; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
:where(a, button, input, select, textarea, [tabindex]):focus { outline: none; }
:where(a, button, input, select, textarea, [tabindex]):focus-visible { outline: 2px solid rgba(226, 38, 47, .88); outline-offset: 3px; }
.ab-header-search input:focus-visible, .ab-search-form input:focus-visible { outline: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
::selection { background: rgba(226, 38, 47, .35); color: #fff; }

.ab-container { width: min(calc(100% - 40px), var(--ab-container)); margin-inline: auto; }
.ab-skip { position: fixed; z-index: 2000; top: 10px; left: 10px; padding: 10px 14px; border-radius: 10px; background: #fff; color: #000; transform: translateY(-160%); }
.ab-skip:focus { transform: none; }
.ab-kicker, .eyebrow { display: block; margin-bottom: 9px; color: #ff7c82; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.ab-center { display: flex; justify-content: center; margin-top: 24px; }

/* Controls */
.ab-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, opacity .18s ease;
}
.ab-btn:hover { transform: translateY(-1px); }
.ab-btn:active { transform: translateY(0); }
.ab-btn:disabled, .ab-btn.is-disabled { opacity: .46; cursor: not-allowed; transform: none; }
.ab-btn--primary { background: var(--ab-red); border-color: var(--ab-red); color: #fff; box-shadow: 0 9px 24px rgba(226, 38, 47, .2); }
.ab-btn--primary:hover { background: var(--ab-red-hover); border-color: var(--ab-red-hover); }
.ab-btn--secondary { background: var(--ab-panel-2); border-color: var(--ab-line); color: #fff; }
.ab-btn--secondary:hover, .ab-btn--ghost:hover { border-color: rgba(226, 38, 47, .45); background: var(--ab-red-soft); }
.ab-btn--ghost { background: transparent; border-color: var(--ab-line-strong); color: #d8dce2; }
.ab-btn--block { width: 100%; }
.ab-btn--small { min-height: 40px; padding-inline: 14px; }
.ab-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--ab-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  color: #d8dce2;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.ab-icon-btn:hover { border-color: rgba(226, 38, 47, .45); background: var(--ab-red-soft); color: #fff; }
.ab-input, .ab-select, .ab-textarea,
.ab-field input, .ab-field select, .ab-field textarea,
.ab-fit-form select, .ab-fit-form input,
.ab-form input, .ab-form select, .ab-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--ab-line);
  border-radius: 11px;
  outline: 0;
  background: #0b0e13;
  color: #fff;
  padding: 0 13px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.ab-textarea, .ab-field textarea, .ab-form textarea { min-height: 124px; padding-block: 12px; resize: vertical; }
.ab-input:focus, .ab-select:focus, .ab-textarea:focus,
.ab-field input:focus, .ab-field select:focus, .ab-field textarea:focus,
.ab-fit-form select:focus, .ab-fit-form input:focus,
.ab-form input:focus, .ab-form select:focus, .ab-form textarea:focus {
  border-color: rgba(226, 38, 47, .72);
  box-shadow: 0 0 0 3px rgba(226, 38, 47, .12);
  background: #0d1117;
}
select:disabled, input:disabled { opacity: .48; cursor: not-allowed; }
label { color: #c8cdd4; }
.ab-field { display: grid; gap: 7px; min-width: 0; }
.ab-field > label, .ab-form label { font-size: 11px; font-weight: 750; }
.ab-field--full { grid-column: 1 / -1; }
.ab-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ab-form-grid--spaced { margin-top: 18px; }
.ab-field--spaced { margin-top: 16px; }
.ab-check { display: flex; align-items: flex-start; gap: 9px; color: var(--ab-muted); font-size: 11px; }
.ab-check input { margin-top: 3px; accent-color: var(--ab-red); }

/* Header */
.ab-header {
  position: sticky;
  z-index: 700;
  top: 0;
  height: var(--ab-header-height);
  border-bottom: 1px solid var(--ab-line);
  background: rgba(7, 9, 12, .96);
  transform: translate3d(0, 0, 0);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), background-color .2s ease, box-shadow .2s ease;
}
.ab-header.is-hidden { transform: translate3d(0, calc(-100% - 2px), 0); }
.ab-header.is-scrolled { background: rgba(7, 9, 12, .985); box-shadow: 0 12px 32px rgba(0, 0, 0, .2); }
.ab-header__row { min-height: 69px; display: grid; grid-template-columns: auto auto minmax(280px, 1fr) auto; align-items: center; gap: 15px; }
.ab-brand { min-width: 0; display: inline-flex; align-items: center; gap: 10px; }
.ab-brand__mark { width: 41px; height: 41px; object-fit: contain; flex: 0 0 auto; }
.ab-brand__name { color: #fff; font-size: 19px; font-weight: 900; letter-spacing: .035em; white-space: nowrap; }
.ab-brand__name span { color: var(--ab-red); }
.ab-menu-toggle__lines { width: 19px; height: 15px; display: flex; flex-direction: column; justify-content: space-between; }
.ab-menu-toggle__lines i { width: 100%; height: 2px; display: block; border-radius: 10px; background: currentColor; transition: transform .22s ease, opacity .18s ease; }
.ab-menu-toggle[aria-expanded="true"] .ab-menu-toggle__lines i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ab-menu-toggle[aria-expanded="true"] .ab-menu-toggle__lines i:nth-child(2) { opacity: 0; }
.ab-menu-toggle[aria-expanded="true"] .ab-menu-toggle__lines i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.ab-header-search { position: relative; height: 44px; display: flex; align-items: center; gap: 10px; padding-left: 13px; border: 1px solid var(--ab-line); border-radius: 11px; background: #0b0e13; transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease; }
.ab-header-search:focus-within { border-color: rgba(226, 38, 47, .72); background: #0d1117; box-shadow: 0 0 0 3px rgba(226, 38, 47, .12); }
.ab-header-search > svg { width: 18px; color: var(--ab-muted); flex: 0 0 auto; }
.ab-header-search input { width: 100%; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; color: #fff; }
.ab-header-search input::placeholder { color: #6e7681; }
.ab-header-search > button { align-self: stretch; min-width: 76px; border: 0; border-radius: 0 10px 10px 0; background: var(--ab-red); color: #fff; font-weight: 800; cursor: pointer; }
.ab-header-search .ab-search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 25; }
.ab-header-actions { min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.ab-header-actions .ab-icon-btn {
  width: 38px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #d9dde4;
}
.ab-header-actions .ab-icon-btn:hover,
.ab-header-actions .ab-icon-btn:focus-visible {
  border: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.ab-header-actions .ab-icon-btn svg { width: 22px; height: 22px; }
.ab-header-actions .ab-counter { top: 0; right: -3px; border-color: #07090c; }
.ab-mobile-search { display: none; }
.ab-counter { position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; display: grid; place-items: center; padding: 0 5px; border: 2px solid var(--ab-bg); border-radius: 99px; background: var(--ab-red); color: #fff; font-size: 9px; font-weight: 900; }
.ab-header__nav-shell { min-height: 45px; border-top: 1px solid rgba(255, 255, 255, .05); background: #090c10; }
.ab-desktop-nav { min-height: 44px; display: flex; align-items: center; gap: 3px; overflow-x: auto; scrollbar-width: none; }
.ab-desktop-nav::-webkit-scrollbar { display: none; }
.ab-desktop-nav a { position: relative; min-height: 34px; display: inline-flex; align-items: center; flex: 0 0 auto; padding: 0 13px; border-radius: 9px; color: #a5acb6; font-size: 11px; font-weight: 750; transition: color .18s ease, background-color .18s ease; }
.ab-desktop-nav a:hover, .ab-desktop-nav a.is-active { color: #fff; background: rgba(255, 255, 255, .045); }
.ab-desktop-nav a.is-active::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: -5px; height: 2px; background: var(--ab-red); }
.ab-desktop-nav__sale { color: #ff8b91 !important; }
.ab-desktop-nav__fit { margin-left: auto; border: 1px solid rgba(226, 38, 47, .3); background: var(--ab-red-soft); color: #fff !important; }

/* Drawers and search */
.ab-overlay { position: fixed; z-index: 880; inset: 0; background: rgba(0, 0, 0, .68); opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.ab-overlay.is-open { opacity: 1; visibility: visible; }
.ab-nav-drawer { position: fixed; z-index: 900; inset: 0 auto 0 0; width: min(420px, calc(100vw - 18px)); height: 100vh; height: 100svh; max-height: 100svh; overflow: hidden; overscroll-behavior: none; border-right: 1px solid var(--ab-line-strong); background: #090c10; box-shadow: 24px 0 70px rgba(0, 0, 0, .48); transform: translateX(-102%); visibility: hidden; transition: transform .28s ease, visibility .28s ease; }
.ab-nav-drawer[aria-hidden="false"] { transform: none; visibility: visible; }
.ab-nav-drawer__glow { display: none; }
.ab-nav-drawer__shell { min-height: 0; height: 100%; overflow-y: auto; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; touch-action: pan-y; padding: 18px 18px max(20px, env(safe-area-inset-bottom)); }
.ab-nav-drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--ab-line); }
.ab-nav-drawer__intro { padding: 22px 2px 15px; }
.ab-nav-drawer__intro > span { color: #ff858b; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.ab-nav-drawer__intro h2 { margin: 7px 0 5px; font-size: 27px; line-height: 1.05; letter-spacing: -.04em; }
.ab-nav-drawer__intro p { margin: 0; color: var(--ab-muted); font-size: 11px; }
.ab-nav-drawer__fit { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 70px; padding: 12px; border: 1px solid rgba(226, 38, 47, .34); border-radius: 15px; background: var(--ab-red-soft); }
.ab-nav-drawer__fit-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--ab-red); }
.ab-nav-drawer__fit strong, .ab-nav-drawer__fit small { display: block; }
.ab-nav-drawer__fit strong { font-size: 12px; }
.ab-nav-drawer__fit small { margin-top: 2px; color: #aab0b9; font-size: 9px; }
.ab-nav-drawer__fit > b { font-size: 20px; }
.ab-nav-drawer__nav { display: grid; gap: 4px; margin-top: 14px; }
.ab-nav-drawer__nav a { min-height: 58px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 9px 11px; border: 1px solid transparent; border-radius: 13px; color: #d7dbe0; }
.ab-nav-drawer__nav a:hover, .ab-nav-drawer__nav a.is-active { border-color: var(--ab-line); background: rgba(255, 255, 255, .035); color: #fff; }
.ab-nav-drawer__nav a.is-active { border-color: rgba(226, 38, 47, .28); background: var(--ab-red-soft); }
.ab-nav-drawer__nav a > span { font-size: 12px; font-weight: 750; }
.ab-nav-drawer__nav small { display: block; margin-top: 1px; color: #727a85; font-size: 9px; font-weight: 500; }
.ab-nav-drawer__nav a > b { color: #5d6570; font-size: 9px; }
.ab-nav-drawer__section { margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--ab-line); }
.ab-nav-drawer__section-head { display: flex; justify-content: space-between; margin-bottom: 10px; color: #808893; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.ab-nav-drawer__section-head a { color: #ff8288; }
.ab-nav-drawer__categories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.ab-nav-drawer__categories a { min-height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 11px; border: 1px solid var(--ab-line); border-radius: 11px; background: rgba(255, 255, 255, .02); color: #c8cdd4; font-size: 10px; font-weight: 700; }
.ab-nav-drawer__categories a::after { content: "↗"; color: #68707b; }
.ab-nav-drawer__services { display: flex; flex-wrap: wrap; gap: 8px 13px; margin-top: 16px; }
.ab-nav-drawer__services a { color: #7f8792; font-size: 10px; }
.ab-search-panel { position: fixed; z-index: 910; inset: 0 0 auto; padding: 20px 0 24px; border-bottom: 1px solid var(--ab-line-strong); background: #090c10; box-shadow: var(--ab-shadow); transform: translate3d(0, -112%, 0); opacity: 0; visibility: hidden; transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, visibility .28s ease; }
.ab-search-panel[aria-hidden="false"] { transform: translate3d(0, 0, 0); opacity: 1; visibility: visible; }
.ab-search-panel__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.ab-search-form { min-height: 52px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; overflow: hidden; border: 1px solid var(--ab-line-strong); border-radius: 13px; background: var(--ab-panel); transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease; }
.ab-search-form:focus-within { border-color: rgba(226, 38, 47, .72); background: #12171e; box-shadow: 0 0 0 3px rgba(226, 38, 47, .12); }
.ab-search-form > svg { margin-left: 15px; color: var(--ab-muted); }
.ab-search-form input { width: 100%; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; color: #fff; padding: 0 12px; }
.ab-search-form .ab-btn { border-radius: 0; height: 100%; }
.ab-search-results { overflow: hidden; border: 1px solid var(--ab-line); border-radius: 13px; background: #10141a; box-shadow: var(--ab-shadow); }
.ab-search-results:empty { display: none; }
.ab-search-result { min-height: 68px; display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 11px; padding: 8px 10px; border-bottom: 1px solid var(--ab-line); }
.ab-search-result:last-child { border-bottom: 0; }
.ab-search-result img { width: 58px; height: 50px; object-fit: contain; border-radius: 9px; background: #080a0d; }
.ab-search-result strong { display: block; font-size: 11px; }
.ab-search-result small { color: var(--ab-muted); font-size: 9px; }

/* Hero and home */
.ab-hero { position: relative; min-height: 570px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--ab-line); background: #090b0f; }
.ab-hero__media { position: absolute; inset: 0; }
.ab-hero__media picture, .ab-hero__media img { width: 100%; height: 100%; }
.ab-hero__media img { object-fit: cover; object-position: center; }
.ab-hero__veil { position: absolute; inset: 0; background: rgba(0, 0, 0, .44); }
.ab-hero__content { position: relative; z-index: 2; padding-block: 74px; }
.ab-hero__copy { max-width: 720px; }
.ab-hero__eyebrow { display: inline-flex; align-items: center; min-height: 27px; padding: 0 10px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 99px; background: rgba(7, 9, 12, .62); color: #ff858b; font-size: 9px; font-weight: 850; letter-spacing: .17em; }
.ab-hero h1 { max-width: 730px; margin: 15px 0 0; font-size: clamp(48px, 6vw, 78px); line-height: .96; letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 5px 28px rgba(0, 0, 0, .5); }
.ab-hero h1 span { color: var(--ab-red); }
.ab-hero__copy > p { max-width: 620px; margin: 20px 0 0; color: #c9ced5; font-size: 16px; line-height: 1.65; text-shadow: 0 3px 18px rgba(0, 0, 0, .6); }
.ab-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.ab-hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: #d2d6dc; font-size: 10px; font-weight: 700; }
.ab-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.ab-hero__trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ab-red); box-shadow: 0 0 0 4px rgba(226, 38, 47, .14); }
.ab-section { padding: 72px 0; }
.ab-section--compact { padding: 48px 0 68px; }
.ab-section--soft { border-block: 1px solid rgba(255, 255, 255, .05); background: #090c10; }
.ab-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: 25px; }
.ab-section-head > div { max-width: 720px; }
.ab-section-head h2 { margin: 0; font-size: clamp(30px, 3.1vw, 44px); line-height: 1.05; letter-spacing: -.045em; }
.ab-section-head p { margin: 9px 0 0; color: var(--ab-muted); font-size: 13px; }
.ab-section-head > a, .ab-section-head__actions a { color: #dfe3e8; font-size: 11px; font-weight: 800; white-space: nowrap; }
.ab-section-head > a:hover, .ab-section-head__actions a:hover { color: #ff7c82; }
.ab-section-head__actions { display: flex; align-items: center; gap: 14px; }
.ab-section-head__actions > span { color: var(--ab-muted); font-size: 10px; }
#offers.ab-section { padding: 54px 0 60px; border-bottom: 1px solid var(--ab-line); background: #0a0d11; }
#offers .ab-section-head { margin-bottom: 22px; }
#offers .ab-section-head h2 { color: #fff; font-size: clamp(34px, 3.4vw, 48px); }
.ab-section-head--simple { align-items: center; }

.ab-fit-form { display: grid; gap: 12px; }
.ab-fit-form label { display: grid; gap: 7px; color: #aeb4bc; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.ab-fit-status { min-height: 0; margin: 0; color: var(--ab-muted); font-size: 10px; }

.ab-vehicle-finder { padding: 72px 0; border-bottom: 1px solid var(--ab-line); background: #07090c; }
.ab-vehicle-finder__panel { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(390px, .78fr); overflow: hidden; border: 1px solid var(--ab-line-strong); border-radius: 24px; background: #0d1117; box-shadow: 0 28px 80px rgba(0, 0, 0, .35); }
.ab-vehicle-finder__visual { position: relative; min-height: 590px; overflow: hidden; background: #080a0d; }
.ab-vehicle-finder__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 5, 7, .08) 0%, rgba(4, 5, 7, .18) 48%, rgba(4, 5, 7, .82) 100%), linear-gradient(0deg, rgba(4, 5, 7, .9) 0%, transparent 58%); }
.ab-vehicle-finder__visual > img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: center; }
.ab-vehicle-finder__visual-copy { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 32px; max-width: 620px; }
.ab-vehicle-finder__visual-copy h2 { margin: 0; max-width: 560px; font-size: clamp(38px, 4.5vw, 62px); line-height: .98; letter-spacing: -.055em; }
.ab-vehicle-finder__visual-copy > p { max-width: 540px; margin: 15px 0 0; color: #c6cbd2; font-size: 13px; line-height: 1.65; }
.ab-vehicle-finder__benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ab-vehicle-finder__benefits span { min-height: 36px; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 99px; background: rgba(8, 11, 15, .72); color: #e9ecf0; font-size: 9px; font-weight: 750; }
.ab-vehicle-finder__benefits svg { width: 16px; height: 16px; color: #ff6c74; }
.ab-vehicle-finder__form-card { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 36px; border-left: 1px solid var(--ab-line); background: linear-gradient(180deg, #11161d, #0d1117); }
.ab-vehicle-finder__form-head > span { color: #ff747b; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.ab-vehicle-finder__form-head > strong { display: block; margin-top: 8px; font-size: 28px; line-height: 1.08; letter-spacing: -.04em; }
.ab-vehicle-finder__form-head > p { margin: 10px 0 0; color: var(--ab-muted); font-size: 11px; }
.ab-fit-form--premium { margin-top: 24px; }
.ab-vehicle-finder__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.ab-vehicle-finder__fields label { position: relative; min-width: 0; }
.ab-vehicle-finder__fields label > span { position: absolute; z-index: 2; right: 9px; top: 1px; color: #4f5762; font-size: 8px; letter-spacing: .06em; }
.ab-fit-form--premium select { min-height: 50px; border-color: rgba(255, 255, 255, .11); background: #090c11; }
.ab-fit-form--premium .ab-btn { min-height: 50px; margin-top: 3px; }
.ab-vehicle-finder__note { display: grid; grid-template-columns: 31px minmax(0, 1fr); gap: 11px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--ab-line); }
.ab-vehicle-finder__note svg { width: 23px; height: 23px; color: var(--ab-red); }
.ab-vehicle-finder__note strong, .ab-vehicle-finder__note small { display: block; }
.ab-vehicle-finder__note strong { font-size: 10px; }
.ab-vehicle-finder__note small { margin-top: 3px; color: var(--ab-muted); font-size: 9px; line-height: 1.5; }


/* Categories */
.ab-category-grid { display: grid; gap: 13px; }
.ab-category-grid--bento { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ab-category-card { position: relative; min-height: 245px; overflow: hidden; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); box-shadow: var(--ab-shadow-sm); }
.ab-category-card--feature { grid-column: span 2; }
.ab-category-card::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .42); transition: background-color .22s ease; }
.ab-category-card:hover::after { background: rgba(0, 0, 0, .27); }
.ab-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ab-category-card:hover img { transform: scale(1.035); }
.ab-category-card__copy { position: absolute; z-index: 2; left: 17px; right: 17px; bottom: 15px; }
.ab-category-card__copy span { color: #c0c5cc; font-size: 9px; }
.ab-category-card__copy h3 { margin: 3px 0 0; font-size: 22px; line-height: 1; letter-spacing: -.035em; }
.ab-category-card__copy p { max-width: 270px; margin: 7px 0 0; color: #b2b8c1; font-size: 10px; }
.ab-category-card__copy b { display: inline-block; margin-top: 11px; color: #fff; font-size: 10px; }

/* Product cards */
.ab-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ab-product-card { min-width: 0; overflow: hidden; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); box-shadow: var(--ab-shadow-sm); transition: border-color .2s ease, transform .2s ease; }
.ab-product-card:hover { border-color: rgba(255, 255, 255, .17); transform: translateY(-2px); }
.ab-product-media { position: relative; height: 205px; overflow: hidden; border-bottom: 1px solid var(--ab-line); background: #0a0d11; }
.ab-product-media__track { height: 100%; display: flex; transition: transform .28s ease; }
.ab-product-media__slide { min-width: 100%; height: 100%; display: grid; place-items: center; padding: 22px; }
.ab-product-media__slide img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.ab-product-card:hover .ab-product-media__slide img { transform: scale(1.025); }
.ab-product-badge, .ab-product-gallery__badge { position: absolute; z-index: 3; top: 11px; left: 11px; min-height: 26px; display: inline-flex; align-items: center; padding: 0 9px; border-radius: 7px; background: var(--ab-red); color: #fff; font-size: 9px; font-weight: 900; }
.ab-fav-btn {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ab-line);
  border-radius: 10px;
  background: rgba(7, 9, 12, .88);
  color: #f3f5f8;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}
.ab-fav-btn:hover { border-color: rgba(255, 255, 255, .22); background: rgba(12, 15, 20, .96); }
.ab-fav-btn svg { width: 20px; height: 20px; display: block; fill: transparent; stroke: currentColor; stroke-width: 1.8; transition: fill .18s ease, stroke .18s ease; pointer-events: none; }
.ab-fav-btn.is-active { border-color: rgba(239, 32, 41, .58); background: rgba(7, 9, 12, .92); color: var(--ab-red); }
.ab-fav-btn.is-active svg { fill: currentColor; stroke: currentColor; }
.ab-product-image-count { position: absolute; z-index: 3; left: 10px; bottom: 9px; padding: 4px 7px; border-radius: 7px; background: rgba(7, 9, 12, .78); color: #aab1ba; font-size: 8px; }
.ab-product-slider-btn { position: absolute; z-index: 3; top: 50%; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--ab-line); border-radius: 9px; background: rgba(7, 9, 12, .78); color: #fff; opacity: 0; cursor: pointer; transform: translateY(-50%); transition: opacity .18s ease; }
.ab-product-media:hover .ab-product-slider-btn, .ab-product-gallery:hover .ab-product-slider-btn { opacity: 1; }
.ab-product-slider-btn.prev { left: 8px; }
.ab-product-slider-btn.next { right: 8px; }
.ab-product-slider-btn svg { width: 15px; height: 15px; }
.ab-product-body { display: flex; flex-direction: column; min-height: 292px; padding: 14px; }
.ab-product-kicker-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #7f8792; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.ab-product-kicker-row a:hover { color: #ff7c82; }
.ab-product-title { min-height: 42px; display: -webkit-box; margin-top: 8px; overflow: hidden; color: #f0f2f5; font-size: 13px; font-weight: 800; line-height: 1.42; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.ab-product-title:hover { color: #ff858b; }
.ab-product-state-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
.ab-product-rating { color: var(--ab-amber); font-size: 9px; font-weight: 850; }
.ab-product-rating small { color: #777f89; font-weight: 600; }
.ab-product-availability { font-size: 8px; font-weight: 800; }
.ab-product-availability.is-available { color: var(--ab-green); }
.ab-product-availability.is-unavailable { color: var(--ab-danger); }
.ab-product-delivery { display: grid; grid-template-columns: 17px minmax(0, 1fr); align-items: start; gap: 7px; color: #9ca3ad; font-size: 9px; line-height: 1.45; }
.ab-product-delivery { margin-top: 8px; }
.ab-product-delivery svg { width: 15px; height: 15px; color: #e6636a; }
.ab-product-spec-preview { display: grid; gap: 4px; margin: 10px 0 0; padding: 0; list-style: none; }
.ab-product-spec-preview li { display: flex; justify-content: space-between; gap: 8px; color: #747c87; font-size: 8px; }
.ab-product-spec-preview strong { color: #abb1ba; text-align: right; }
.ab-price-block { margin-top: auto; padding-top: 12px; }
.ab-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
.ab-price-row strong { font-size: 18px; line-height: 1; letter-spacing: -.025em; }
.ab-price-row del { color: #707883; font-size: 10px; }
.ab-price-block > small { display: block; margin-top: 3px; color: #ff7c82; font-size: 8px; }
.ab-product-actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 9px; margin-top: 12px; }
.ab-product-actions .ab-btn { min-height: 40px; padding-inline: 12px; font-size: 10px; }
.ab-product-more { color: #aeb4bd; font-size: 9px; font-weight: 800; white-space: nowrap; }
.ab-product-more:hover { color: #fff; }
.ab-card-skeleton { min-height: 430px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: #10141a; animation: ab-pulse 1.3s ease-in-out infinite; }
.ab-card-skeleton--category { min-height: 245px; }
@keyframes ab-pulse { 50% { opacity: .55; } }

/* Catalog */
.ab-page-hero { padding: 58px 0 50px; border-bottom: 1px solid var(--ab-line); background: #090c10; }
.ab-page-hero h1 { margin: 7px 0 0; font-size: clamp(38px, 4.5vw, 60px); line-height: 1; letter-spacing: -.055em; }
.ab-page-hero h1 span { color: var(--ab-red); }
.ab-page-hero p { max-width: 730px; margin: 13px 0 0; color: var(--ab-muted); font-size: 13px; }
.ab-catalog-categories, .ab-filter-chips { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
.ab-catalog-categories::-webkit-scrollbar, .ab-filter-chips::-webkit-scrollbar { display: none; }
.ab-catalog-categories button, .ab-filter-chips button { min-height: 38px; flex: 0 0 auto; padding: 0 13px; border: 1px solid var(--ab-line); border-radius: 10px; background: var(--ab-panel); color: #aab1ba; font-size: 10px; font-weight: 800; cursor: pointer; }
.ab-catalog-categories button:hover, .ab-catalog-categories button.is-active,
.ab-filter-chips button:hover, .ab-filter-chips button.is-active { border-color: rgba(226, 38, 47, .42); background: var(--ab-red-soft); color: #fff; }
.ab-catalog-toolbar { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; padding: 10px 12px; border: 1px solid var(--ab-line); border-radius: 13px; background: var(--ab-panel); }
.ab-catalog-toolbar__left { display: flex; align-items: center; gap: 12px; }
.ab-catalog-toolbar__count { color: var(--ab-muted); font-size: 10px; }
/* Custom sorting menu */
.ab-sort-menu { position: relative; width: 230px; flex: 0 0 auto; }
.ab-sort-menu__trigger { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; outline: 0; background: #0d1117; color: #eef1f5; font-size: 10px; font-weight: 800; text-align: left; cursor: pointer; -webkit-appearance: none; appearance: none; -webkit-tap-highlight-color: transparent; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.ab-sort-menu__trigger:hover, .ab-sort-menu__trigger:focus-visible, .ab-sort-menu.is-open .ab-sort-menu__trigger { border-color: rgba(239,32,41,.58); background: #12161d; box-shadow: 0 0 0 3px rgba(239,32,41,.10); }
.ab-sort-menu__trigger svg { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; color: #ff5962; transition: transform .2s ease; }
.ab-sort-menu.is-open .ab-sort-menu__trigger svg { transform: rotate(180deg); }
.ab-sort-menu__list { position: absolute; z-index: 80; top: calc(100% + 8px); right: 0; width: 100%; overflow: hidden; padding: 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: #10141a; box-shadow: 0 20px 45px rgba(0,0,0,.48); }
.ab-sort-menu__list[hidden] { display: none; }
.ab-sort-menu__list button { width: 100%; min-height: 42px; display: flex; align-items: center; padding: 0 12px; border: 0; border-radius: 9px; outline: 0; background: transparent; color: #aeb5bf; font-size: 10px; font-weight: 750; text-align: left; cursor: pointer; -webkit-appearance: none; appearance: none; -webkit-tap-highlight-color: transparent; }
.ab-sort-menu__list button:hover, .ab-sort-menu__list button:focus-visible { background: rgba(255,255,255,.055); color: #fff; }
.ab-sort-menu__list button.is-active { background: rgba(226,38,47,.16); color: #fff; }
.ab-sort-menu__list button.is-active::after { content: '✓'; margin-left: auto; color: #ff5962; font-size: 12px; }
.ab-sort-native { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; opacity: 0 !important; pointer-events: none !important; }

.ab-catalog-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); align-items: start; gap: 18px; margin-top: 18px; }
.ab-filter-panel { position: sticky; top: calc(var(--ab-header-height) + 16px); padding: 17px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); }
.ab-filter-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 13px; border-bottom: 1px solid var(--ab-line); }
.ab-filter-panel__head h2 { margin: 0; font-size: 17px; }
.ab-filter-group { padding: 15px 0; border-bottom: 1px solid var(--ab-line); }
.ab-filter-group:last-of-type { border-bottom: 0; }
.ab-filter-group h3 { margin: 0 0 10px; color: #dce0e5; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.ab-filter-group label { display: flex; align-items: center; gap: 8px; margin-top: 8px; color: #a4abb5; font-size: 10px; }
.ab-filter-group input[type="checkbox"] { accent-color: var(--ab-red); }
.ab-price-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ab-filter-reset { width: 100%; margin-top: 12px; }
.ab-filter-toggle { display: none; }
.ab-active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 0; }
.ab-active-filter { min-height: 30px; display: inline-flex; align-items: center; gap: 7px; padding: 0 9px; border: 1px solid rgba(226, 38, 47, .27); border-radius: 9px; background: var(--ab-red-soft); color: #d9dde3; font-size: 9px; }
.ab-catalog-products { min-width: 0; }

/* Product page */
.ab-product-page { padding: 35px 0 70px; }
.ab-product-loading { min-height: 360px; display: grid; place-items: center; align-content: center; gap: 13px; color: var(--ab-muted); }
.ab-product-loading--small { min-height: 150px; }
.ab-product-loading span { width: 33px; height: 33px; border: 3px solid rgba(255, 255, 255, .1); border-top-color: var(--ab-red); border-radius: 50%; animation: ab-spin .8s linear infinite; }
@keyframes ab-spin { to { transform: rotate(360deg); } }
.ab-product-view { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: 32px; align-items: start; }
.ab-product-close { min-height: 39px; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 15px; padding: 0 12px; border: 1px solid var(--ab-line); border-radius: 10px; background: var(--ab-panel); color: #bcc2ca; font-size: 10px; font-weight: 800; cursor: pointer; }
.ab-product-gallery { position: relative; aspect-ratio: 1.12 / 1; overflow: hidden; border: 1px solid var(--ab-line); border-radius: var(--ab-radius-lg); background: #0b0e13; }
.ab-product-gallery .ab-product-media__slide { padding: 45px; }
.ab-product-thumbs { display: flex; gap: 8px; margin-top: 9px; overflow-x: auto; }
.ab-product-thumb { width: 72px; height: 63px; flex: 0 0 auto; padding: 6px; border: 1px solid var(--ab-line); border-radius: 10px; background: var(--ab-panel); cursor: pointer; }
.ab-product-thumb.is-active { border-color: var(--ab-red); }
.ab-product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.ab-product-gallery-note { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--ab-muted); font-size: 9px; }
.ab-product-info { min-width: 0; }
.ab-product-info h1 { margin: 11px 0 0; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.ab-product-page-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--ab-line); }
.ab-product-description { margin: 17px 0 0; color: var(--ab-muted); font-size: 12px; line-height: 1.7; }
.ab-product-purchase-card { margin-top: 18px; padding: 18px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); }
.ab-product-price-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.ab-product-price-line .ab-price-row strong { font-size: 28px; }
.ab-product-price-line > div > small { display: block; margin-top: 3px; color: var(--ab-green); font-size: 9px; }
.ab-product-price-line > span { max-width: 170px; padding: 6px 8px; border-radius: 9px; background: rgba(85, 200, 138, .08); color: #8cddb0; font-size: 9px; text-align: right; }
.ab-product-buy { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 9px; margin-top: 16px; }
.ab-qty, .ab-qty--compact { display: inline-grid; grid-template-columns: 36px 40px 36px; align-items: center; min-height: 46px; overflow: hidden; border: 1px solid var(--ab-line); border-radius: 11px; }
.ab-qty button, .ab-qty--compact button { height: 100%; border: 0; background: rgba(255, 255, 255, .035); cursor: pointer; }
.ab-qty span, .ab-qty--compact span { text-align: center; font-weight: 800; }
.ab-product-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.ab-product-secondary [data-favorite].is-active { border-color: rgba(226, 38, 47, .42); background: var(--ab-red-soft); }
.ab-product-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 13px; }
.ab-product-service-grid article { padding: 11px; border: 1px solid var(--ab-line); border-radius: 11px; background: rgba(255, 255, 255, .018); }
.ab-product-service-grid strong, .ab-product-service-grid span { display: block; }
.ab-product-service-grid strong { font-size: 9px; }
.ab-product-service-grid span { margin-top: 2px; color: var(--ab-muted); font-size: 8px; }
.ab-product-content-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 17px; margin-top: 30px; }
.ab-product-details, .ab-product-reviews { padding: 20px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); }
.ab-product-details h2, .ab-product-reviews h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.ab-specs { display: grid; margin-top: 16px; border-top: 1px solid var(--ab-line); }
.ab-spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--ab-line); color: var(--ab-muted); font-size: 10px; }
.ab-spec-row strong { color: #dce0e5; text-align: right; }
.ab-product-reviews__head { display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.ab-product-reviews__head > span { color: var(--ab-amber); font-size: 13px; font-weight: 850; }
.ab-review-list { display: grid; gap: 9px; margin-top: 16px; }
.ab-review-card { padding: 14px; border: 1px solid var(--ab-line); border-radius: 12px; background: rgba(255, 255, 255, .018); }
.ab-review-card__head { display: flex; justify-content: space-between; gap: 13px; }
.ab-review-card__head strong { font-size: 11px; }
.ab-review-card__head span { color: var(--ab-green); font-size: 8px; }
.ab-review-card__head b { color: var(--ab-amber); }
.ab-review-card > p { color: #c0c5cd; font-size: 10px; }
.ab-review-card time { color: #6f7782; font-size: 8px; }
.ab-review-reply { margin-top: 10px; padding: 10px; border-left: 2px solid var(--ab-red); background: var(--ab-red-soft); }
.ab-review-reply strong { color: #ff777e; font-size: 8px; }
.ab-review-reply p { margin: 3px 0 0; color: #adb4bd; font-size: 9px; }
.ab-review-summary { min-height: 135px; display: flex; align-items: center; gap: 18px; margin-top: 16px; padding: 18px; border: 1px solid var(--ab-line); border-radius: 13px; }
.ab-review-summary > strong { font-size: 44px; line-height: 1; }
.ab-review-summary span { color: var(--ab-amber); }
.ab-review-summary p { margin: 3px 0 0; color: var(--ab-muted); font-size: 9px; }

/* FitCheck, promotions and proof */
.ab-fitcheck-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); align-items: start; gap: 20px; }
.ab-fitcheck-card { position: sticky; top: calc(var(--ab-header-height) + 16px); padding: 20px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); }
.ab-fitcheck-card h2 { margin: 0; font-size: 30px; letter-spacing: -.04em; }
.ab-fitcheck-card > p { margin: 8px 0 17px; color: var(--ab-muted); font-size: 11px; }
.ab-saved-car { margin-top: 14px; }
.ab-saved-car:empty { display: none; }
.ab-fit-results { min-width: 0; }
.ab-fit-group { margin-bottom: 28px; }
.ab-fit-group__head { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.ab-fit-group__head h3 { margin: 0; font-size: 22px; }
.ab-fit-group__head p { margin: 4px 0 0; color: var(--ab-muted); font-size: 10px; }
.ab-sale-banner { display: grid; grid-template-columns: 1fr .75fr; align-items: center; overflow: hidden; min-height: 300px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius-lg); background: var(--ab-panel); }
.ab-sale-banner__copy { padding: 34px; }
.ab-sale-banner__copy h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: -.05em; }
.ab-sale-banner__copy p { max-width: 560px; color: var(--ab-muted); }
.ab-sale-banner__visual { height: 100%; min-height: 300px; overflow: hidden; border-left: 1px solid var(--ab-line); }
.ab-sale-banner__visual img { width: 100%; height: 100%; object-fit: cover; }
.ab-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.ab-faq-grid details { padding: 16px; border: 1px solid var(--ab-line); border-radius: 13px; background: var(--ab-panel); }
.ab-faq-grid summary { cursor: pointer; font-size: 11px; font-weight: 800; }
.ab-faq-grid p { margin: 10px 0 0; color: var(--ab-muted); font-size: 10px; }

/* Checkout and contacts */
.ab-checkout-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 42px;
  border-bottom: 1px solid var(--ab-line);
  background:
    radial-gradient(circle at 85% 20%, rgba(239, 32, 41, .13), transparent 31%),
    linear-gradient(180deg, #0b0e13 0%, #080a0e 100%);
}
.ab-checkout-hero__inner { display: grid; gap: 11px; }
.ab-checkout-hero__kicker { color: #ff7c82; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.ab-checkout-hero h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 5vw, 66px); line-height: .98; letter-spacing: -.055em; }
.ab-checkout-hero h1 span { color: var(--ab-red); }
.ab-checkout-hero p { max-width: 720px; margin: 2px 0 0; color: var(--ab-muted); font-size: 12px; }
.ab-checkout-benefits { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 8px; color: #b6bdc7; font-size: 9px; font-weight: 750; }
.ab-checkout-benefits span { display: inline-flex; align-items: center; gap: 7px; }
.ab-checkout-benefits span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ab-red); box-shadow: 0 0 0 5px rgba(239,32,41,.1); }
.ab-checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: start; gap: 20px; }
.ab-checkout-main { min-width: 0; display: grid; gap: 13px; }
.ab-checkout-card, .ab-order-summary, .ab-contact-card, .ab-support-form { padding: 22px; border: 1px solid var(--ab-line); border-radius: 18px; background: linear-gradient(180deg, rgba(20,24,31,.96), rgba(15,18,24,.96)); box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.ab-checkout-card + .ab-checkout-card { margin-top: 0; }
.ab-checkout-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ab-checkout-step-head > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: var(--ab-red-soft); color: #ff727a; font-size: 10px; font-weight: 900; }
.ab-checkout-step-head h2, .ab-order-summary h2, .ab-support-title { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.ab-checkout-step-head p { margin: 3px 0 0; color: var(--ab-muted); font-size: 9px; }
.ab-choice-grid { display: grid; gap: 9px; }
.ab-choice { position: relative; min-height: 68px; display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--ab-line); border-radius: 13px; background: #0b0e13; cursor: pointer; transition: border-color .18s ease, background-color .18s ease, transform .18s ease; }
.ab-choice:hover { border-color: rgba(255,255,255,.16); transform: translateY(-1px); }
.ab-choice:has(input:checked) { border-color: rgba(239,32,41,.62); background: rgba(239,32,41,.085); }
.ab-choice input { width: 18px; height: 18px; margin: 0; accent-color: var(--ab-red); }
.ab-choice span { min-width: 0; display: grid; gap: 2px; }
.ab-choice b { font-size: 11px; }
.ab-choice small { color: var(--ab-muted); font-size: 9px; }
.ab-choice strong { color: #dce1e7; font-size: 9px; white-space: nowrap; }
.ab-order-summary { position: sticky; top: calc(var(--ab-header-height) + 16px); }
.ab-order-summary > h2 { margin-bottom: 16px; }
.ab-summary-items { display: grid; gap: 10px; max-height: 350px; overflow-y: auto; padding-right: 3px; }
.ab-summary-item { display: grid; grid-template-columns: 62px minmax(0, 1fr) auto; align-items: center; gap: 11px; padding: 10px 0; border-bottom: 1px solid var(--ab-line); }
.ab-summary-item:first-child { padding-top: 0; }
.ab-summary-item img { width: 62px; height: 56px; object-fit: contain; border: 1px solid rgba(255,255,255,.055); border-radius: 10px; background: #080a0d; }
.ab-summary-item h3 { margin: 0; font-size: 10px; line-height: 1.4; }
.ab-summary-item small { color: var(--ab-muted); font-size: 8px; }
.ab-summary-item strong { font-size: 10px; white-space: nowrap; }
.ab-coupon { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; margin-top: 16px; }
.ab-coupon-status { display: block; min-height: 15px; margin: 7px 0 0; color: var(--ab-muted); font-size: 9px; }
.ab-summary-lines { display: grid; gap: 9px; margin-top: 10px; padding-top: 15px; border-top: 1px solid var(--ab-line); }
.ab-summary-line { display: flex; justify-content: space-between; gap: 12px; color: var(--ab-muted); font-size: 10px; }
.ab-summary-line strong { color: #fff; }
.ab-summary-line--total { margin-top: 5px; padding-top: 13px; border-top: 1px solid var(--ab-line); color: #fff; font-size: 13px; }
.ab-summary-line--total strong { color: #fff; font-size: 22px; }
.ab-checkout-submit { min-height: 50px; margin-top: 17px; }
.ab-checkout-submit svg { width: 18px; height: 18px; }

.ab-checkout-layout.is-submitting { pointer-events: none; }
.ab-checkout-layout.is-submitting .ab-checkout-main,
.ab-checkout-layout.is-submitting .ab-order-summary { opacity: .82; }
.ab-checkout-submit.is-loading { position: relative; gap: 10px; }
.ab-checkout-submit__spinner { width: 17px; height: 17px; flex: 0 0 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: ab-checkout-spin .65s linear infinite; }
@keyframes ab-checkout-spin { to { transform: rotate(360deg); } }
.ab-order-success { scroll-margin-top: calc(var(--ab-header-height) + 14px); max-width: 760px; margin: 0 auto; padding: 42px 28px; border: 1px solid rgba(83,200,138,.24); border-radius: 22px; background: radial-gradient(circle at 50% 0, rgba(83,200,138,.12), transparent 42%), var(--ab-panel); text-align: center; box-shadow: var(--ab-shadow-sm); }
.ab-order-success__icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: rgba(83,200,138,.14); color: var(--ab-green); }
.ab-order-success__icon svg { width: 32px; height: 32px; stroke-width: 2.2; }
.ab-order-success h2 { margin: 0; font-size: clamp(30px, 5vw, 44px); letter-spacing: -.045em; }
.ab-order-success > p { max-width: 560px; margin: 11px auto 0; color: var(--ab-muted); font-size: 11px; }
.ab-order-success__number { width: fit-content; max-width: 100%; margin: 20px auto 0; padding: 11px 15px; border: 1px solid var(--ab-line); border-radius: 12px; background: #0a0d12; color: #cfd5de; font-size: 10px; }
.ab-order-success__number strong { color: #fff; letter-spacing: .06em; }
.ab-order-success__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ab-order-success__actions .ab-btn { min-width: 190px; }
.ab-contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 18px; }
.ab-contact-cards { display: grid; gap: 10px; }
.ab-contact-card strong, .ab-contact-card span, .ab-contact-card a { display: block; }
.ab-contact-card strong { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #818a96; }
.ab-contact-card a, .ab-contact-card span { margin-top: 5px; font-size: 13px; }
.ab-support-lead { max-width: 680px; margin: 8px 0 0; color: var(--ab-muted); font-size: 10px; line-height: 1.6; }
.ab-support-form .ab-form-grid { margin-top: 17px; }
.ab-support-status { min-height: 18px; margin: 9px 0 0; color: var(--ab-muted); font-size: 10px; }
.ab-support-status.is-success { color: var(--ab-green); }
.ab-support-status.is-error { color: var(--ab-danger); }

/* Content pages */
.ab-content-layout { display: block; }
.ab-content { display: grid; gap: 12px; }
.ab-content-section { scroll-margin-top: calc(var(--ab-header-height) + 20px); padding: 22px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); }
.ab-content-section h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.ab-content-section h3 { margin: 20px 0 0; font-size: 15px; }
.ab-content-section p, .ab-content-section li { color: #a9b0ba; font-size: 11px; line-height: 1.75; }
.ab-content-section a { color: #ff7c82; }
.ab-content-section ul, .ab-content-section ol { padding-left: 18px; }

/* Cart */
/* Manager message drawer */
.ab-support-overlay { position: fixed; z-index: 935; inset: 0; background: rgba(0, 0, 0, .7); opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.ab-support-overlay.is-open { opacity: 1; visibility: visible; }
.ab-support-drawer { position: fixed; z-index: 940; top: 0; right: 0; width: min(100%, 540px); height: 100vh; height: 100svh; max-height: 100svh; display: grid; grid-template-rows: auto minmax(0, 1fr); border-left: 1px solid var(--ab-line-strong); background: #0b0e13; box-shadow: -24px 0 70px rgba(0, 0, 0, .5); transform: translateX(104%); visibility: hidden; transition: transform .27s ease, visibility .27s ease; }
.ab-support-drawer[aria-hidden="false"] { transform: none; visibility: visible; }
.ab-support-drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 20px 20px 17px; border-bottom: 1px solid var(--ab-line); }
.ab-support-drawer__head span { display: block; color: #ff7b82; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.ab-support-drawer__head h2 { margin: 5px 0 0; font-size: 26px; letter-spacing: -.04em; }
.ab-support-drawer__body { min-height: 0; overflow-y: auto; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; touch-action: pan-y; padding: 20px 20px max(24px, env(safe-area-inset-bottom)); }
.ab-support-drawer__intro { margin: 0 0 18px; color: var(--ab-muted); font-size: 10px; line-height: 1.65; }
.ab-support-drawer .ab-support-form { padding: 0; border: 0; background: transparent; }
.ab-support-drawer .ab-form-grid { grid-template-columns: 1fr 1fr; }
.ab-support-drawer .ab-btn { min-height: 50px; }
.ab-support-drawer__privacy { display: flex; gap: 8px; margin-top: 13px; color: #6f7782; font-size: 8px; line-height: 1.5; }
.ab-support-drawer__privacy svg { width: 15px; height: 15px; flex: 0 0 auto; color: #8f97a2; }

.ab-cart {
  position: fixed;
  z-index: 920;
  inset: 0 0 0 auto;
  width: min(96vw, 500px);
  height: 100vh;
  height: 100svh;
  max-height: 100svh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  overscroll-behavior: none;
  border-left: 1px solid var(--ab-line-strong);
  background: #0b0e13;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .48);
  transform: translate3d(104%, 0, 0);
  visibility: hidden;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), visibility .3s ease;
  contain: layout paint;
}
.ab-cart[aria-hidden="false"] { transform: translate3d(0, 0, 0); visibility: visible; }
.ab-cart__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px; border-bottom: 1px solid var(--ab-line); background: #0b0e13; }
.ab-cart__eyebrow { color: #ff7c82; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.ab-cart__heading { min-width: 0; display: grid; gap: 2px; }
.ab-cart__title-row { min-width: 0; display: flex; align-items: baseline; gap: 10px; }
.ab-cart__heading h2 { margin: 0; font-size: 24px; }
.ab-cart__title-row small { color: var(--ab-muted); font-size: 9px; white-space: nowrap; }
.ab-cart__head-actions { display: flex; align-items: center; gap: 7px; }
.ab-cart__clear { min-height: 36px; padding: 0 8px; border: 0; border-radius: 8px; background: transparent; color: #8d95a0; font-size: 9px; cursor: pointer; }
.ab-cart__clear:hover { background: rgba(255, 255, 255, .04); color: #fff; }
.ab-cart__progress { padding: 12px 18px; border-bottom: 1px solid var(--ab-line); background: #0a0d11; color: #afb5be; font-size: 9px; }
.ab-cart__progress p { margin: 0; }
.ab-cart__track { height: 5px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .07); }
.ab-cart__track span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--ab-red); transition: width .24s ease; }
.ab-cart__items { min-height: 0; overflow-x: hidden; overflow-y: auto; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; touch-action: pan-y; scrollbar-gutter: stable; padding: 8px 18px; }
.ab-cart__items > .ab-empty { min-height: 100%; display: grid; align-content: center; }
.ab-cart-item { min-width: 0; display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; align-items: start; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--ab-line); }
.ab-cart-item:last-child { border-bottom: 0; }
.ab-cart-item__media { width: 78px; height: 70px; display: grid; place-items: center; overflow: hidden; border-radius: 10px; background: #080a0d; }
.ab-cart-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.ab-cart-item__copy { min-width: 0; }
.ab-cart-item__copy > small { display: block; margin-top: 3px; color: var(--ab-muted); font-size: 8px; }
.ab-cart-item__title { display: -webkit-box; overflow: hidden; font-size: 10px; font-weight: 800; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.ab-cart-item__status { margin-bottom: 3px; color: var(--ab-green); font-size: 8px; }
.ab-cart-item__status.is-unavailable { color: var(--ab-danger); }
.ab-cart-item__actions { min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 9px; }
.ab-cart-save, .ab-cart-remove { min-height: 30px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 8px; background: transparent; color: #858d98; font-size: 8px; cursor: pointer; }
.ab-cart-save { padding: 0 7px; }
.ab-cart-save:hover, .ab-cart-save.is-active { background: rgba(226, 38, 47, .1); color: #ff7c82; }
.ab-cart-remove { width: 30px; padding: 0; }
.ab-cart-remove:hover { background: rgba(255, 102, 112, .1); color: var(--ab-danger); }
.ab-cart-remove svg { width: 15px; height: 15px; }
.ab-cart-item__total { align-self: start; color: #fff; font-size: 11px; white-space: nowrap; }
.ab-cart__footer { position: relative; z-index: 2; padding: 16px 18px max(18px, env(safe-area-inset-bottom)); border-top: 1px solid var(--ab-line); background: #090c10; box-shadow: 0 -12px 28px rgba(0, 0, 0, .18); }
.ab-cart__summary { display: grid; gap: 7px; }
.ab-cart__summary-row { display: flex; justify-content: space-between; gap: 12px; color: var(--ab-muted); font-size: 10px; }
.ab-cart__summary-row--total { margin-top: 5px; padding-top: 11px; border-top: 1px solid var(--ab-line); color: #fff; font-size: 13px; }
.ab-cart__summary-row--total strong { font-size: 20px; }
.ab-cart__note { margin: 9px 0 0; color: #7d8590; font-size: 8px; }
.ab-cart__footer .ab-btn { margin-top: 10px; }
.ab-cart-overlay { position: fixed; z-index: 915; inset: 0; background: rgba(0, 0, 0, .64); opacity: 0; visibility: hidden; touch-action: none; transition: opacity .22s ease, visibility .22s ease; }
.ab-cart-overlay.is-open { opacity: 1; visibility: visible; }

/* States */
.ab-empty { grid-column: 1 / -1; min-height: 210px; display: grid; place-items: center; align-content: center; text-align: center; padding: 26px; border: 1px dashed var(--ab-line-strong); border-radius: var(--ab-radius); background: rgba(255, 255, 255, .015); }
.ab-empty.compact { min-height: 120px; }
.ab-empty h3 { margin: 0; font-size: 20px; }
.ab-empty p { max-width: 520px; margin: 7px 0 14px; color: var(--ab-muted); font-size: 10px; }
.ab-empty a:not(.ab-btn) { color: #ff7c82; font-size: 10px; font-weight: 800; }
.ab-empty .ab-btn { min-width: min(280px, 100%); font-size: 12px; }
.ab-empty .ab-btn--primary, .ab-empty .ab-btn--primary:visited { color: #fff; }
.ab-toast { position: fixed; z-index: 1200; left: 50%; bottom: 26px; max-width: min(92vw, 420px); padding: 12px 14px; border: 1px solid var(--ab-line-strong); border-radius: 12px; background: #171c23; color: #fff; box-shadow: var(--ab-shadow); font-size: 10px; transform: translate(-50%, 20px); opacity: 0; transition: opacity .2s ease, transform .2s ease; }
.ab-toast.is-active { opacity: 1; transform: translate(-50%, 0); }
.ab-toast__action { margin-left: 10px; border: 0; background: transparent; color: #ff858b; font-weight: 850; cursor: pointer; }

/* Footer */
.ab-footer { border-top: 1px solid var(--ab-line); background: #07090c; }
.ab-footer__top { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr); gap: 64px; padding: 52px 0 40px; }
.ab-footer__intro > p { max-width: 410px; margin: 18px 0 0; color: var(--ab-muted); font-size: 11px; line-height: 1.75; }
.ab-footer__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.ab-footer__column { min-width: 0; }
.ab-footer__column h3 { margin: 0 0 15px; color: #fff; font-size: 11px; letter-spacing: .02em; }
.ab-footer__column > a { display: block; width: fit-content; margin-top: 9px; color: #8f97a2; font-size: 9px; transition: color .18s ease, transform .18s ease; }
.ab-footer__column > a:hover { color: #fff; transform: translateX(2px); }
.ab-footer__social > p { margin: -5px 0 13px; color: #777f8a; font-size: 8px; line-height: 1.55; }
.ab-social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.ab-social-link { width: 44px; min-width: 44px; height: 44px; min-height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--ab-line); border-radius: 12px; background: rgba(255, 255, 255, .025); color: #fff; transition: border-color .18s ease, background-color .18s ease, transform .18s ease, opacity .18s ease; }
.ab-social-link:hover { border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .05); transform: translateY(-1px); }
.ab-social-link.is-disabled { opacity: .72; cursor: pointer; }
.ab-social-link__icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, .22); }
.ab-social-link__icon svg { width: 19px; height: 19px; }
.ab-social-link--telegram .ab-social-link__icon { background: #229ed9; }
.ab-social-link--telegram .ab-social-link__icon svg { fill: currentColor; stroke: none; }
.ab-social-link--instagram .ab-social-link__icon { background: linear-gradient(145deg, #833ab4 0%, #c13584 34%, #e1306c 54%, #fd1d1d 72%, #fcb045 100%); }
.ab-social-link--instagram .ab-social-link__icon svg { stroke: #fff; fill: none; }
.ab-social-link--instagram .ab-instagram-dot { fill: #fff; stroke: none; }
.ab-social-link__copy, .ab-social-link > b { display: none; }
.ab-footer__bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--ab-line); color: #68707a; font-size: 9px; }
.ab-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.ab-footer__bottom a { color: #8d949f; }
.ab-footer__bottom a:hover { color: #fff; }

/* 404 */
.ab-hero--not-found { min-height: calc(100vh - var(--ab-header-height)); }
.ab-hero--not-found::before { content: "404"; position: absolute; right: 5vw; top: 50%; color: rgba(255, 255, 255, .035); font-size: min(33vw, 420px); font-weight: 950; line-height: .7; transform: translateY(-50%); }
.ab-hero--not-found .ab-hero__grid { position: relative; z-index: 2; }
.ab-hero--not-found h1 { font-size: clamp(55px, 8vw, 104px); }
@media (max-width: 1220px) {
  .ab-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-vehicle-finder__panel { grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr); }
  .ab-vehicle-finder__visual, .ab-vehicle-finder__visual > img { min-height: 560px; }
  .ab-vehicle-finder__form-card { padding: 28px; }
  .ab-category-grid--bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-category-card--feature { grid-column: span 2; }
}

@media (max-width: 980px) {
  :root { --ab-header-height: 68px; }
  .ab-container { width: min(calc(100% - 28px), var(--ab-container)); }
  .ab-header { height: var(--ab-header-height); }
  .ab-header__row { min-height: 68px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; }
  .ab-brand__mark { width: 36px; height: 36px; }
  .ab-brand__name { font-size: 17px; }
  .ab-header-search, .ab-header__nav-shell { display: none; }
  .ab-mobile-search { display: inline-grid; }
  .ab-hero { min-height: 520px; }
  .ab-vehicle-finder { padding: 54px 0; }
  .ab-vehicle-finder__panel { grid-template-columns: 1fr; }
  .ab-vehicle-finder__visual, .ab-vehicle-finder__visual > img { min-height: 430px; }
  .ab-vehicle-finder__visual::after { background: linear-gradient(0deg, rgba(4, 5, 7, .92) 0%, rgba(4, 5, 7, .2) 70%); }
  .ab-vehicle-finder__form-card { border-left: 0; border-top: 1px solid var(--ab-line); }
  .ab-footer__top { grid-template-columns: 1fr; gap: 38px; }
  .ab-footer__links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-hero__content { padding-block: 54px; }
  .ab-catalog-layout { grid-template-columns: 1fr; }
  .ab-filter-toggle { display: inline-flex; }
  .ab-filter-panel { position: fixed; z-index: 930; inset: 0 auto 0 0; width: min(390px, calc(100vw - 18px)); height: 100vh; height: 100svh; max-height: 100svh; overflow-y: auto; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; border-radius: 0 18px 18px 0; transform: translateX(-105%); visibility: hidden; transition: transform .25s ease, visibility .25s ease; }
  .ab-filter-panel.is-open { transform: none; visibility: visible; }
  .ab-product-view, .ab-product-content-grid, .ab-contact-grid { grid-template-columns: 1fr; }
  .ab-product-gallery { max-height: 620px; }
  .ab-checkout-layout { grid-template-columns: 1fr; }
  .ab-order-summary { position: static; }
  .ab-fitcheck-layout { grid-template-columns: 1fr; }
  .ab-fitcheck-card { position: static; }
}

@media (max-width: 720px) {
  .ab-container { width: min(calc(100% - 20px), var(--ab-container)); }
  .ab-header { --ab-header-height: 62px; }
  .ab-header__row { min-height: 62px; display: flex; align-items: center; gap: 7px; }
  .ab-menu-toggle { width: 38px; height: 38px; flex: 0 0 38px; }
  .ab-header__row > .ab-brand { min-width: 0; max-width: 145px; flex: 1 1 145px; gap: 6px; overflow: hidden; }
  .ab-header__row > .ab-brand .ab-brand__mark { width: 30px; height: 30px; }
  .ab-header__row > .ab-brand .ab-brand__name { min-width: 0; overflow: hidden; font-size: 14px; text-overflow: clip; }
  .ab-header-actions { flex: 0 0 auto; gap: 4px; margin-left: auto; }
  .ab-header-actions .ab-icon-btn { width: 30px; height: 38px; display: inline-grid; }
  .ab-header-actions .ab-icon-btn svg { width: 21px; height: 21px; }
  .ab-header-actions > a, .ab-header-actions > a.ab-favorites-header, .ab-header-actions > a.ab-account-header { display: inline-grid; }
  .ab-header-actions .ab-counter { top: -1px; right: -5px; min-width: 17px; height: 17px; padding: 0 4px; font-size: 8px; }
  .ab-nav-drawer { width: min(394px, calc(100vw - 10px)); border-radius: 0 18px 18px 0; }
  .ab-search-panel { padding: 11px 0 15px; }
  .ab-search-panel__inner { grid-template-columns: minmax(0, 1fr) 39px; }
  .ab-search-form { min-height: 48px; }
  .ab-search-form .ab-btn { min-width: 70px; padding-inline: 10px; }
  .ab-hero { min-height: 472px; }
  .ab-hero__media img { object-position: 63% center; }
  .ab-hero__veil { background: rgba(0, 0, 0, .55); }
  .ab-hero__content { padding-block: 48px; }
  .ab-hero h1 { max-width: 370px; font-size: clamp(39px, 12vw, 57px); }
  .ab-hero__copy > p { max-width: 360px; margin-top: 15px; font-size: 13px; }
  .ab-hero__actions { margin-top: 21px; }
  .ab-hero__actions .ab-btn { min-height: 44px; padding-inline: 14px; }
  .ab-hero__trust { display: grid; gap: 7px; margin-top: 20px; }
  .ab-section { padding: 48px 0; }
  .ab-section--compact { padding: 34px 0 50px; }
  #offers.ab-section { padding: 36px 0 42px; }
  .ab-section-head { align-items: flex-start; margin-bottom: 18px; }
  .ab-vehicle-finder { padding: 42px 0; }
  .ab-vehicle-finder__panel { border-radius: 17px; }
  .ab-vehicle-finder__visual, .ab-vehicle-finder__visual > img { min-height: 360px; }
  .ab-vehicle-finder__visual-copy { left: 18px; right: 18px; bottom: 20px; }
  .ab-vehicle-finder__visual-copy h2 { font-size: 39px; }
  .ab-vehicle-finder__visual-copy > p { font-size: 11px; }
  .ab-vehicle-finder__benefits { gap: 7px; margin-top: 15px; }
  .ab-vehicle-finder__benefits span { min-height: 32px; padding-inline: 9px; font-size: 8px; }
  .ab-vehicle-finder__form-card { padding: 20px 17px; }
  .ab-vehicle-finder__form-head > strong { font-size: 24px; }
  .ab-vehicle-finder__fields { grid-template-columns: 1fr; }
  .ab-fit-form--premium select { min-height: 48px; }
  .ab-support-drawer { width: 100%; }
  .ab-support-drawer__head { padding: 16px 15px 14px; }
  .ab-support-drawer__body { padding: 16px 15px max(20px, env(safe-area-inset-bottom)); }
  .ab-support-drawer .ab-form-grid { grid-template-columns: 1fr; }
  .ab-section-head h2 { font-size: 29px; }
  .ab-section-head p { font-size: 11px; }
  .ab-section-head > a { display: none; }
  .ab-section-head__actions > span { display: none; }
  .ab-category-grid--bento { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .ab-category-card, .ab-category-card--feature { min-height: 180px; grid-column: auto; }
  .ab-category-card__copy { left: 12px; right: 12px; bottom: 11px; }
  .ab-category-card__copy h3 { font-size: 17px; }
  .ab-category-card__copy p { display: none; }
  .ab-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .ab-product-card { border-radius: 13px; }
  .ab-product-media { height: 142px; }
  .ab-product-media__slide { padding: 14px; }
  .ab-product-badge { top: 7px; left: 7px; min-height: 22px; padding: 0 7px; font-size: 8px; }
  .ab-fav-btn { top: 6px; right: 6px; width: 29px; height: 29px; min-width: 29px; min-height: 29px; border-radius: 8px; }
  .ab-fav-btn svg { width: 18px; height: 18px; }
  .ab-product-slider-btn, .ab-product-image-count { display: none; }
  .ab-product-body { min-height: 235px; padding: 10px; }
  .ab-product-kicker-row { font-size: 7px; }
  .ab-product-kicker-row span:last-child { display: none; }
  .ab-product-title { min-height: 36px; margin-top: 6px; font-size: 11px; line-height: 1.35; }
  .ab-product-state-row { margin-top: 6px; }
  .ab-product-rating { font-size: 8px; }
  .ab-product-availability { max-width: 72px; overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
  .ab-product-delivery, .ab-product-spec-preview { display: none; }
  .ab-price-block { padding-top: 9px; }
  .ab-price-row strong { font-size: 15px; }
  .ab-price-row del { font-size: 8px; }
  .ab-product-actions { grid-template-columns: 1fr; gap: 5px; margin-top: 9px; }
  .ab-product-actions .ab-btn { min-height: 37px; padding-inline: 8px; font-size: 9px; }
  .ab-product-more { display: none; }
  .ab-card-skeleton { min-height: 360px; }
  .ab-card-skeleton--category { min-height: 180px; }
  .ab-page-hero { padding: 36px 0 31px; }
  .ab-page-hero h1 { font-size: 38px; }
  .ab-page-hero p { font-size: 11px; }
  .ab-catalog-toolbar { min-height: 54px; padding: 7px; }
  .ab-catalog-toolbar__count { display: none; }
  .ab-sort-menu { width: min(47vw, 190px); }
  .ab-sort-menu__trigger { min-height: 40px; padding: 0 11px; border-radius: 10px; font-size: 9px; }
  .ab-sort-menu__list { right: 0; width: min(76vw, 260px); }
  .ab-sort-menu__list button { min-height: 40px; font-size: 9px; }
  .ab-product-page { padding: 23px 0 48px; }
  .ab-product-view { gap: 20px; }
  .ab-product-gallery { border-radius: 15px; }
  .ab-product-gallery .ab-product-media__slide { padding: 28px; }
  .ab-product-info h1 { font-size: 33px; }
  .ab-product-price-line { align-items: flex-end; }
  .ab-product-price-line > span { max-width: 130px; font-size: 8px; }
  .ab-product-buy { grid-template-columns: 1fr; }
  .ab-qty { width: 100%; grid-template-columns: 1fr 48px 1fr; }
  .ab-product-secondary { grid-template-columns: 1fr; }
  .ab-product-service-grid { grid-template-columns: 1fr; }
  .ab-product-content-grid { gap: 10px; }
  .ab-product-details, .ab-product-reviews { padding: 16px; }
  .ab-fitcheck-layout { gap: 13px; }
  .ab-fitcheck-card { padding: 16px; }
  .ab-sale-banner { grid-template-columns: 1fr; }
  .ab-sale-banner__copy { padding: 22px; }
  .ab-sale-banner__visual { min-height: 210px; border-left: 0; border-top: 1px solid var(--ab-line); }
  .ab-faq-grid { grid-template-columns: 1fr; }
  .ab-checkout-hero { padding: 34px 0 31px; }
  .ab-checkout-hero h1 { font-size: 39px; }
  .ab-checkout-hero p { font-size: 10px; }
  .ab-checkout-benefits { gap: 7px 15px; font-size: 8px; }
  .ab-checkout-card, .ab-order-summary, .ab-contact-card, .ab-support-form, .ab-content-section { padding: 16px; border-radius: 15px; }
  .ab-checkout-step-head { align-items: flex-start; margin-bottom: 15px; }
  .ab-checkout-step-head > span { width: 31px; height: 31px; }
  .ab-checkout-step-head h2, .ab-order-summary h2 { font-size: 21px; }
  .ab-checkout-step-head p { font-size: 8px; }
  .ab-form-grid { grid-template-columns: 1fr; }
  .ab-choice { min-height: 64px; grid-template-columns: 18px minmax(0, 1fr) auto; gap: 10px; padding: 10px 11px; }
  .ab-choice strong { max-width: 80px; text-align: right; white-space: normal; }
  .ab-coupon { grid-template-columns: 1fr; }
  .ab-coupon .ab-btn { width: 100%; }
  .ab-order-success { padding: 34px 18px; border-radius: 18px; }
  .ab-order-success__actions { display: grid; }
  .ab-order-success__actions .ab-btn { width: 100%; min-width: 0; }
  .ab-contact-grid { gap: 10px; }
  .ab-choice { min-height: 62px; padding: 10px; }
  .ab-footer__top { gap: 30px; padding: 38px 0 30px; }
  .ab-footer__links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .ab-footer__social { grid-column: 1 / -1; }
  .ab-social-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ab-footer__bottom { min-height: 92px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 9px; }
  .ab-footer__bottom nav { gap: 11px 16px; }
  .ab-cart { width: 100%; border-left: 0; }
  .ab-cart__head, .ab-cart__progress, .ab-cart__items, .ab-cart__footer { padding-left: 14px; padding-right: 14px; }
  .ab-cart-item { grid-template-columns: 67px minmax(0, 1fr); }
  .ab-cart-item__media { width: 67px; height: 61px; }
  .ab-cart-item__total { grid-column: 2; justify-self: start; margin-top: 2px; }
  .ab-toast { bottom: calc(18px + env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .ab-header__row { gap: 5px; }
  .ab-header__row > .ab-brand { max-width: 112px; flex-basis: 112px; gap: 5px; }
  .ab-header__row > .ab-brand .ab-brand__mark { width: 27px; height: 27px; }
  .ab-header__row > .ab-brand .ab-brand__name { font-size: 12.5px; }
  .ab-header-actions { gap: 2px; }
  .ab-header-actions .ab-icon-btn { width: 28px; height: 36px; }
  .ab-header-actions .ab-icon-btn svg { width: 20px; height: 20px; }
  .ab-lang-picker__toggle { min-width: 36px; width: 36px; }
  .ab-product-media { height: 128px; }
  .ab-product-body { min-height: 225px; }
  .ab-product-title { font-size: 10px; }
  .ab-price-row strong { font-size: 14px; }
}

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

/* Small structural modifiers used by individual pages */
.ab-section-head__copy { min-width: 0; }
.ab-section-head--catalog { align-items: center; }
.ab-catalog-section { position: relative; }
.ab-product-grid--catalog, .ab-product-shell, .ab-product-visual-column, .ab-cart-item__copy { min-width: 0; }
.ab-hero__text { max-width: 620px; margin: 18px 0 0; color: #c8cdd4; font-size: 14px; }
.ab-receipt-notice { margin-top: 13px; padding: 13px; border: 1px solid rgba(242, 186, 82, .24); border-radius: 11px; background: rgba(242, 186, 82, .07); }
.ab-receipt-notice b { display: block; color: #f1c873; font-size: 9px; }
.ab-receipt-notice p { margin: 4px 0 0; color: #aab1ba; font-size: 8px; }
@media (max-width: 720px) {
}


/* Storefront audit fixes */
.ab-fit-results-list { display: block; min-width: 0; }
.ab-fit-group { min-width: 0; padding: 18px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: var(--ab-panel); }
.ab-fit-group + .ab-fit-group { margin-top: 18px; }
.ab-fit-group__head { align-items: flex-start; }
.ab-fit-group__head > span { min-width: 32px; height: 32px; display: grid; place-items: center; border-radius: 99px; background: rgba(255,255,255,.06); color: #fff; font-size: 10px; font-weight: 850; }
.ab-fit-group--exact { border-color: rgba(85,200,138,.28); }
.ab-fit-group--verify { border-color: rgba(255,190,92,.2); }
.ab-fit-group .ab-product-grid { width: 100%; }

.ab-manager-button { position: fixed; z-index: 620; right: 22px; bottom: 22px; min-height: 56px; display: inline-grid; grid-template-columns: 34px auto; align-items: center; gap: 10px; padding: 9px 15px 9px 10px; border: 1px solid rgba(226,38,47,.5); border-radius: 16px; background: rgba(15,18,24,.96); box-shadow: 0 18px 48px rgba(0,0,0,.4); color: #fff; cursor: pointer; backdrop-filter: blur(14px); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.ab-manager-button:hover { transform: translateY(-3px); border-color: var(--ab-red); box-shadow: 0 22px 56px rgba(0,0,0,.5); }
.ab-manager-button svg { width: 34px; height: 34px; padding: 7px; border-radius: 11px; background: var(--ab-red); }
.ab-manager-button strong, .ab-manager-button small { display: block; text-align: left; }
.ab-manager-button strong { font-size: 10px; }
.ab-manager-button small { margin-top: 2px; color: #aeb5be; font-size: 8px; }
body.panel-open .ab-manager-button { opacity: 0; pointer-events: none; transform: translateY(10px); }

.ab-nav-drawer__close {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  align-self: center;
  margin: 0;
  padding: 0;
  display: inline-grid;
  place-items: center;
  outline: 0;
  box-shadow: none;
}
.ab-nav-drawer__close svg { width: 20px; height: 20px; display: block; margin: 0; pointer-events: none; }
.ab-nav-drawer__close svg path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; vector-effect: non-scaling-stroke; }

.ab-reveal { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity .5s cubic-bezier(.2,.7,.2,1) var(--ab-reveal-delay,0ms), transform .5s cubic-bezier(.2,.7,.2,1) var(--ab-reveal-delay,0ms); will-change: opacity, transform; }
.ab-reveal.is-revealed { opacity: 1; transform: none; will-change: auto; }

@media (max-width: 720px) {
  .ab-fit-group { padding: 12px; border-radius: 14px; }
  .ab-fit-group__head { display: grid; grid-template-columns: minmax(0,1fr) auto; }
  .ab-fit-group__head h3 { font-size: 18px; }
  .ab-fit-group__head p { font-size: 9px; }
  .ab-manager-button { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); width: 48px; min-height: 48px; grid-template-columns: 1fr; padding: 7px; border-radius: 14px; }
  .ab-manager-button svg { width: 32px; height: 32px; }
  .ab-manager-button span { display: none; }
  .ab-footer__social { grid-column: 1 / -1; }
  .ab-social-links { grid-template-columns: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ab-reveal { opacity: 1; transform: none; transition: none; }
}

/* Language picker */
.ab-lang-picker { position: relative; flex: 0 0 auto; z-index: 40; }
.ab-lang-picker__toggle {
  min-width: 48px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d9dde4;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.ab-lang-picker__toggle svg { width: 14px; height: 14px; transition: transform .18s ease; }
.ab-lang-picker.is-open .ab-lang-picker__toggle { color: #fff; }
.ab-lang-picker.is-open .ab-lang-picker__toggle svg { transform: rotate(180deg); }
.ab-lang-picker__menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  width: 178px;
  padding: 6px;
  border: 1px solid var(--ab-line-strong);
  border-radius: 13px;
  background: #10141a;
  box-shadow: 0 18px 44px rgba(0,0,0,.48);
}
.ab-lang-picker__menu[hidden] { display: none !important; }
.ab-lang-picker__option {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 30px minmax(0,1fr) 18px;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #d7dbe2;
  text-align: left;
  cursor: pointer;
}
.ab-lang-picker__option:hover,
.ab-lang-picker__option:focus-visible { background: rgba(255,255,255,.055); color: #fff; }
.ab-lang-picker__option > span { font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.ab-lang-picker__option > small { color: #858d99; font-size: 9px; }
.ab-lang-picker__option > b { visibility: hidden; color: var(--ab-red); font-size: 12px; }
.ab-lang-picker__option.is-active { background: var(--ab-red-soft); color: #fff; }
.ab-lang-picker__option.is-active > b { visibility: visible; }
.ab-lang-picker--auth .ab-lang-picker__toggle { min-width: 54px; }
@media (max-width: 760px) {
  .ab-lang-picker__toggle { min-width: 40px; width: 40px; height: 40px; gap: 2px; padding: 0; font-size: 8px; }
  .ab-lang-picker__toggle svg { width: 12px; height: 12px; }
  .ab-lang-picker__menu { right: -4px; width: 168px; }
}

/* FitCheck keeps result sections independent from product grids. */
.ab-fit-results-list { display: grid; gap: 18px; min-width: 0; }
.ab-fit-group { min-width: 0; padding: 16px; border: 1px solid var(--ab-line); border-radius: var(--ab-radius); background: rgba(255,255,255,.018); }
.ab-fit-group__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.ab-fit-group__head h3 { margin: 0; font-size: 20px; letter-spacing: -.025em; }
.ab-fit-group__head p { max-width: 760px; margin: 6px 0 0; color: var(--ab-muted); font-size: 10px; line-height: 1.65; }
.ab-fit-group__head > span { min-width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.06); font-size: 10px; font-weight: 900; }
.ab-fit-group > .ab-product-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 300px)); justify-content: start; }
.ab-fit-group--exact { border-color: rgba(83,196,133,.28); }
.ab-fit-group--universal { border-color: rgba(234,180,69,.24); }

@media (max-width: 680px) {
  .ab-fit-group { padding: 12px; }
  .ab-fit-group__head h3 { font-size: 17px; }
  .ab-fit-group > .ab-product-grid { grid-template-columns: minmax(0, 1fr); }
}
.ab-auth-showcase__top .ab-lang-picker--auth { margin-left: auto; }
.ab-auth-mobile-head .ab-lang-picker--auth { margin-left: auto; }
@media (min-width: 901px) { .ab-auth-mobile-head .ab-lang-picker--auth { display: none; } }
@media (max-width: 900px) { .ab-auth-showcase__top .ab-lang-picker--auth { display: none; } }


/* V8: unified modern content pages and reliable home FitCheck results */
.ab-content-layout--modern .ab-content { gap: 14px; }
.ab-content-layout--modern .ab-content-section {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border-color: rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(20,24,31,.98), rgba(10,13,18,.98));
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.ab-content-layout--modern .ab-content-section::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ab-red), rgba(226,38,47,.05));
}
.ab-content-layout--modern .ab-content-section h2 { font-size: clamp(24px, 3vw, 36px); }
.ab-content-layout--modern .ab-content-section p,
.ab-content-layout--modern .ab-content-section li { font-size: 12px; }
.ab-nav-drawer__account-feature .ab-nav-drawer__fit-icon svg { width: 25px; height: 25px; }
.ab-home-fit-results {
  scroll-margin-top: calc(var(--ab-header-height) + 18px);
  margin-top: 20px;
}
.ab-home-fit-results > .ab-fit-group,
.ab-home-fit-results > .ab-empty { margin-bottom: 0; }
.ab-home-fit-results .ab-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1050px) {
  .ab-home-fit-results .ab-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .ab-content-layout--modern .ab-content-section { padding: 18px; }
  .ab-content-layout--modern .ab-content-section p,
  .ab-content-layout--modern .ab-content-section li { font-size: 10px; }
  .ab-home-fit-results { margin-top: 14px; }
  .ab-home-fit-results .ab-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
