/* Turboparts — стиль Apple, адаптация (см. DESIGN.md) */
:root {
  --color-gallery-white: #ffffff;
  --color-studio-mist: #f5f5f7;
  --color-paper-frost: #fafafc;
  --color-hairline-silver: #d6d6d6;
  --color-control-gray: #e6e6e8;
  --color-ink: #1d1d1f;
  --color-slate: #707070;
  --color-steel: #86868b;
  --color-turbo-red: #d70015;
  --color-link-red: #bf0013;
  --color-night: #000000;
  --color-night-text: #f5f5f7;
  --color-night-slate: #a1a1a6;
  --color-launch-orange: #b64400;

  --font: "Inter", "Helvetica Neue", Arial, sans-serif;

  --section-gap: 90px;
  --card-padding: 28px;
  --element-gap: 20px;

  --radius-cards: 28px;
  --radius-links: 10px;
  --radius-navigation: 20px;
  --radius-inputs: 980px;
  --radius-buttons: 9999px;
  --radius-pills: 36px;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-gallery-white);
  color: var(--color-ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--color-turbo-red); outline-offset: 3px; border-radius: 6px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Global navigation ---------- */
.global-nav {
  position: sticky; top: 0; z-index: 50;
  height: 44px;
  background: rgba(250, 250, 252, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-control-gray);
}
.global-nav .container { height: 100%; display: flex; align-items: center; gap: 32px; }
.wordmark { font-size: 15px; font-weight: 600; letter-spacing: 0.18em; color: var(--color-ink); }
.wordmark b { color: var(--color-turbo-red); font-weight: 600; }
.global-nav ul { list-style: none; display: flex; gap: 28px; margin: 0 auto 0 0; padding: 0; }
.global-nav ul a, .global-nav .util {
  font-size: 12px; line-height: 1; letter-spacing: -0.12px; color: rgba(0, 0, 0, 0.8);
  transition: color .2s;
}
.global-nav ul a:hover, .global-nav ul a[aria-current] { color: var(--color-ink); }
.global-nav ul a[aria-current] { font-weight: 600; }
.global-nav .utils { display: flex; gap: 22px; align-items: center; }
.global-nav .util { display: inline-flex; align-items: center; gap: 6px; }
.global-nav svg { width: 15px; height: 15px; }

/* ---------- Local navigation ---------- */
.local-nav {
  position: sticky; top: 44px; z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-hairline-silver);
}
.local-nav .container { height: 52px; display: flex; align-items: center; gap: 16px; }
.local-nav .title { font-size: 19px; font-weight: 600; line-height: 1.21; letter-spacing: 0.228px; margin-right: auto; }
.local-nav .phone { font-size: 12px; letter-spacing: -0.12px; color: var(--color-slate); }
.local-nav .phone:hover { color: var(--color-ink); }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--radius-buttons);
  font-family: var(--font); font-size: 12px; line-height: 16px; letter-spacing: -0.12px; font-weight: 400;
  padding: 6px 14px; border: 1px solid transparent; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.pill-red { background: var(--color-turbo-red); color: #fff; }
.pill-red:hover { background: #bf0013; }
.pill-outline { background: transparent; color: var(--color-ink); border-color: var(--color-steel); }
.pill-outline:hover { border-color: var(--color-ink); }
.pill-lg { font-size: 17px; line-height: 1.24; letter-spacing: -0.374px; padding: 12px 24px; }
.on-night .pill-outline { color: var(--color-night-text); border-color: var(--color-night-slate); }
.on-night .pill-outline:hover { border-color: var(--color-night-text); }

.link { color: var(--color-link-red); font-size: 17px; }
.link:hover { text-decoration: underline; }
.link::after { content: " ›"; }

/* ---------- Type ---------- */
.kicker { font-size: 21px; font-weight: 600; line-height: 1; letter-spacing: 0.231px; margin: 0 0 14px; }
.display { font-size: 80px; font-weight: 600; line-height: 1.05; letter-spacing: -1.2px; margin: 0; }
.headline { font-size: 48px; font-weight: 600; line-height: 1.08; letter-spacing: -0.72px; margin: 0; }
.feature-heading { font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: 0; margin: 0; }
.lede { font-size: 21px; line-height: 1.38; letter-spacing: 0.231px; font-weight: 400; }
.muted { color: var(--color-slate); }
.tuning { color: var(--color-launch-orange); font-size: 12px; font-weight: 600; line-height: 16px; letter-spacing: -0.12px; }

/* ---------- Night stage (hero) ---------- */
.night { background: var(--color-night); color: var(--color-night-text); }
.hero { text-align: center; padding-top: 72px; overflow: hidden; }
.hero .kicker { color: var(--color-night-text); }
.hero .display { max-width: 960px; margin: 0 auto; }
.hero .sub { color: var(--color-night-slate); margin: 20px auto 0; max-width: 620px; }
.hero .ctas { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-stage {
  position: relative; margin-top: 40px; height: min(62vw, 720px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
}
.hero-stage img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
  animation: ignition 3.2s cubic-bezier(.2,.7,.2,1) .35s both;
}
/* зажигание: темнота → мерцание фар → свет, с медленным наездом */
@keyframes ignition {
  0%   { filter: brightness(0);    transform: scale(1.08); }
  18%  { filter: brightness(.55);  }
  22%  { filter: brightness(.12);  }
  30%  { filter: brightness(.8);   }
  34%  { filter: brightness(.3);   }
  100% { filter: brightness(1);    transform: scale(1); }
}
.hero .reveal-text { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
.hero .reveal-text:nth-child(2) { animation-delay: .12s; }
.hero .reveal-text:nth-child(3) { animation-delay: .24s; }
.hero .reveal-text:nth-child(4) { animation-delay: .36s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section { padding: var(--section-gap) 0; }
.mist { background: var(--color-studio-mist); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Highlights carousel ---------- */
.highlights { overflow: hidden; }
.track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2 + 24px)) 8px;
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }
.hl-card {
  flex: 0 0 min(372px, 82vw); scroll-snap-align: center;
  background: var(--color-gallery-white); border-radius: var(--radius-cards);
  overflow: hidden; display: flex; flex-direction: column;
  height: 560px;
}
.hl-card .copy { padding: 32px var(--card-padding) 0; }
.hl-card .copy p { margin: 0; font-size: 24px; font-weight: 600; line-height: 1.17; letter-spacing: -0.2px; }
.hl-card .copy p span { color: var(--color-slate); }
.hl-card img { margin-top: auto; height: 330px; width: 100%; object-fit: cover; }
.playback { display: flex; justify-content: center; margin-top: 32px; }
.playback .pod {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 6px 0 20px; height: 44px;
  background: rgba(210, 210, 215, 0.64); border-radius: var(--radius-pills);
  backdrop-filter: blur(20px);
}
.dots { display: flex; gap: 10px; }
.dots button { width: 8px; height: 8px; border-radius: 99px; border: 0; padding: 0; background: rgba(0, 0, 0, 0.42); cursor: pointer; transition: width .3s, background-color .3s; }
.dots button[aria-current="true"] { width: 36px; background: rgba(0, 0, 0, 0.72); }
.pause { width: 32px; height: 32px; border-radius: 99px; border: 0; background: transparent; color: rgba(0, 0, 0, 0.56); cursor: pointer; display: grid; place-items: center; }
.pause svg { width: 14px; height: 14px; }

/* ---------- Search + brands ---------- */
.search-block { text-align: center; }
.search-field { position: relative; max-width: 640px; margin: 32px auto 48px; }
.search-field input {
  width: 100%; height: 56px; border-radius: var(--radius-inputs);
  border: 1px solid var(--color-steel); background: #fff;
  font-family: var(--font); font-size: 17px; letter-spacing: -0.374px; color: var(--color-ink);
  padding: 0 60px 0 28px;
}
.search-field input::placeholder { color: var(--color-steel); }
.search-field input:focus { outline: none; border-color: var(--color-ink); box-shadow: 0 0 0 4px rgba(215, 0, 21, 0.12); }
.search-field button { position: absolute; right: 8px; top: 8px; width: 40px; height: 40px; border-radius: 99px; border: 0; background: var(--color-turbo-red); color: #fff; display: grid; place-items: center; cursor: pointer; }
.search-field svg { width: 16px; height: 16px; }
.brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; text-align: left; }
.brands a {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--color-studio-mist); border-radius: var(--radius-navigation);
  padding: 18px 20px; font-size: 17px; font-weight: 500; letter-spacing: -0.374px;
  transition: background-color .2s;
}
.brands a::after { content: "›"; color: var(--color-steel); font-weight: 400; transition: transform .2s, color .2s; }
.brands a:hover { background: var(--color-control-gray); }
.brands a:hover::after { transform: translateX(3px); color: var(--color-turbo-red); }

/* ---------- Editorial ---------- */
.editorial { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.editorial .kicker { font-size: 17px; color: var(--color-turbo-red); }
.editorial p.body { color: var(--color-slate); margin: 24px 0 0; max-width: 460px; line-height: 1.47; }
.editorial p.body strong { color: var(--color-ink); font-weight: 600; }
.editorial figure { margin: 0 -24px 0 0; border-radius: var(--radius-cards) 0 0 var(--radius-cards); overflow: hidden; }
.editorial figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Product cards ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--element-gap); }
.product {
  background: var(--color-gallery-white); border-radius: var(--radius-cards); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.product:hover { transform: translateY(-4px); }
.product .ph { background: var(--color-studio-mist); margin: 12px 12px 0; border-radius: 18px; overflow: hidden; aspect-ratio: 1; }
.product .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.product:hover .ph img { transform: scale(1.04); }
.product .info { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product .name { font-size: 17px; font-weight: 600; line-height: 1.24; letter-spacing: -0.374px; margin: 0; }
.product .car { font-size: 14px; line-height: 1.29; letter-spacing: -0.224px; color: var(--color-slate); margin: 0; }
.product .meta { display: flex; gap: 10px; align-items: center; font-size: 12px; letter-spacing: -0.12px; color: var(--color-slate); margin-top: auto; padding-top: 10px; }
.product .meta .stock::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 99px; background: #1d9a3f; margin-right: 6px; vertical-align: 1px; }
.product .price { font-size: 17px; font-weight: 600; letter-spacing: -0.374px; }
.product .price.ask { font-weight: 400; color: var(--color-slate); font-size: 14px; letter-spacing: -0.224px; }
.product .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.mist .product { background: var(--color-gallery-white); }
.plain .product { background: var(--color-studio-mist); }
.plain .product .ph { background: var(--color-gallery-white); }

/* ---------- Contacts ---------- */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-list { display: grid; gap: 28px; }
.contact-list dt { font-size: 12px; letter-spacing: -0.12px; color: var(--color-night-slate); margin-bottom: 6px; }
.contact-list dd { margin: 0; font-size: 24px; font-weight: 600; letter-spacing: -0.2px; line-height: 1.25; }
.contact-list dd small { display: block; font-size: 14px; font-weight: 400; color: var(--color-night-slate); letter-spacing: -0.224px; margin-top: 4px; }
.messengers { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--color-studio-mist); padding: 28px 0 40px; font-size: 12px; letter-spacing: -0.12px; color: var(--color-slate); line-height: 1.33; }
.footer nav { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--color-hairline-silver); margin-bottom: 16px; }
.footer nav a { color: var(--color-ink); }
.footer nav a:hover { text-decoration: underline; }
.footer .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer .legal a:hover { color: var(--color-ink); }
.footer .legal span:first-child { margin-right: auto; }

/* ---------- Catalog page ---------- */
.brand-hero { text-align: center; padding-top: 64px; overflow: hidden; }
.brand-hero .display { font-size: 96px; letter-spacing: -1.6px; }
.brand-hero .sub { color: var(--color-night-slate); margin: 16px 0 0; }
.brand-hero .hero-stage { height: min(44vw, 520px); margin-top: 36px; }
.brand-hero .hero-stage img { object-position: center 62%; animation-duration: 2.4s; }

.crumbs { font-size: 12px; letter-spacing: -0.12px; color: var(--color-slate); padding: 20px 0 0; display: flex; gap: 8px; }
.crumbs a:hover { color: var(--color-ink); }
.catalog { display: grid; grid-template-columns: 272px 1fr; gap: 48px; padding: 32px 0 var(--section-gap); align-items: start; }
.sidebar { position: sticky; top: 116px; max-height: calc(100vh - 136px); display: flex; flex-direction: column; }
.sidebar h2 { font-size: 21px; font-weight: 600; letter-spacing: 0.231px; margin: 0 0 16px; }
.sidebar input {
  width: 100%; height: 40px; border-radius: var(--radius-inputs); border: 1px solid var(--color-steel);
  font-family: var(--font); font-size: 14px; letter-spacing: -0.224px; padding: 0 18px; margin-bottom: 12px; color: var(--color-ink);
  flex-shrink: 0; -webkit-appearance: none; appearance: none; background: #fff;
}
.sidebar input:focus { outline: none; border-color: var(--color-ink); }
.cats { list-style: none; margin: 0; padding: 0 8px 0 0; overflow-y: auto; scrollbar-width: thin; }
.cats a {
  display: flex; justify-content: space-between; gap: 12px; padding: 9px 12px; border-radius: var(--radius-links);
  font-size: 14px; line-height: 1.29; letter-spacing: -0.224px; transition: background-color .15s;
}
.cats a:hover { background: var(--color-studio-mist); }
.cats a[aria-current] { background: var(--color-ink); color: #fff; }
.cats a[aria-current] span { color: var(--color-night-slate); }
.cats span { color: var(--color-steel); font-variant-numeric: tabular-nums; }
.cats .empty { font-size: 14px; color: var(--color-slate); padding: 9px 12px; }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.toolbar h1 { font-size: 40px; font-weight: 600; line-height: 1.1; margin: 0; }
.toolbar .count { font-size: 14px; color: var(--color-slate); letter-spacing: -0.224px; margin: 6px 0 0; }
.models { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 28px; scrollbar-width: none; }
.models::-webkit-scrollbar { display: none; }
.models .pill { white-space: nowrap; font-size: 14px; letter-spacing: -0.224px; padding: 8px 16px; }
.models .pill[aria-pressed="true"] { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }
.select {
  appearance: none; -webkit-appearance: none;
  font-family: var(--font); font-size: 14px; letter-spacing: -0.224px; color: var(--color-ink);
  border: 1px solid var(--color-steel); border-radius: var(--radius-buttons); background: #fff;
  padding: 9px 36px 9px 16px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%231d1d1f' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.catalog > * { min-width: 0; }
.catalog .products { grid-template-columns: repeat(3, 1fr); }
.more { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1068px) {
  .display { font-size: 64px; letter-spacing: -0.96px; }
  .brands { grid-template-columns: repeat(4, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .catalog { grid-template-columns: 232px 1fr; gap: 32px; }
  .catalog .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 834px) {
  .global-nav ul { display: none; }
  .global-nav .container { justify-content: space-between; }
  .display, .brand-hero .display { font-size: 48px; letter-spacing: -0.5px; }
  .headline { font-size: 36px; }
  .feature-heading { font-size: 32px; }
  .lede { font-size: 19px; }
  .section { padding: 64px 0; }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .editorial, .contacts { grid-template-columns: 1fr; gap: 40px; }
  .editorial figure { margin: 0; border-radius: var(--radius-cards); }
  .catalog { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; max-height: none; }
  .cats { display: flex; gap: 8px; overflow-x: auto; padding: 0 0 4px; }
  .cats a { white-space: nowrap; background: var(--color-studio-mist); border-radius: var(--radius-buttons); }
  .local-nav .phone { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .display, .brand-hero .display { font-size: 40px; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .products, .catalog .products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product .info { padding: 14px 14px 16px; }
  .product .name { font-size: 14px; letter-spacing: -0.224px; }
  .product .car { font-size: 12px; }
  .product .row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .product .price.ask { font-size: 12px; letter-spacing: -0.12px; }
  .hl-card { height: 500px; }
  .hl-card img { height: 280px; }
  .footer .legal span:first-child { margin-right: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ================= Внутренние страницы ================= */
.page-hero { padding: 72px 0 56px; }
.page-hero .kicker { color: var(--color-turbo-red); font-size: 17px; }
.page-hero .display { font-size: 64px; letter-spacing: -0.96px; max-width: 900px; }
.page-hero .lede { color: var(--color-slate); max-width: 680px; margin: 20px 0 0; }
.banner { height: min(38vw, 440px); overflow: hidden; border-radius: var(--radius-cards); }
.banner img { width: 100%; height: 100%; object-fit: cover; }

.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--element-gap); }
.tiles.three { grid-template-columns: repeat(3, 1fr); }
.tile { background: var(--color-gallery-white); border-radius: var(--radius-cards); padding: 40px var(--card-padding) 36px; }
.plain .tile { background: var(--color-studio-mist); }
.tile .eyebrow { font-size: 12px; font-weight: 600; letter-spacing: -0.12px; color: var(--color-slate); margin: 0 0 12px; }
.tile h3 { font-size: 28px; font-weight: 600; line-height: 1.14; letter-spacing: -0.2px; margin: 0; }
.tile p { color: var(--color-slate); margin: 14px 0 0; }
.tile ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.tile li { display: flex; gap: 10px; align-items: baseline; }
.tile li::before { content: ""; flex: 0 0 6px; height: 6px; border-radius: 99px; background: var(--color-ink); transform: translateY(-2px); }
.tile.no li::before { background: var(--color-steel); }
.tile.dark { background: var(--color-night); color: var(--color-night-text); }
.tile.dark p { color: var(--color-night-slate); }

/* Гарантия: число — главный факт страницы */
.term { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: end; }
.term .num { font-size: 200px; font-weight: 600; line-height: .82; letter-spacing: -6px; margin: 0; }
.term .num small { font-size: 40px; letter-spacing: -0.5px; margin-left: 12px; }
.term p { font-size: 21px; line-height: 1.38; letter-spacing: 0.231px; margin: 0; max-width: 520px; }
.term p span { color: var(--color-slate); }

/* Длинный текст (политика, согласие) */
.prose { max-width: 720px; }
.prose p { margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.2px; margin: 40px 0 14px; }

/* Контакты: карта */
.map { border-radius: var(--radius-cards); overflow: hidden; background: var(--color-studio-mist); height: 460px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contacts.light .contact-list dt { color: var(--color-slate); }
.contacts.light .contact-list dd small { color: var(--color-slate); }

/* Карточка товара */
.pdp { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; padding: 24px 0 var(--section-gap); align-items: start; }
.pdp > * { min-width: 0; }
.gallery .main { background: var(--color-studio-mist); border-radius: var(--radius-cards); overflow: hidden; aspect-ratio: 4 / 3; }
.gallery .main img { width: 100%; height: 100%; object-fit: contain; transition: opacity .25s; }
.thumbs { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; margin-top: 12px; }
.thumbs button { padding: 0; border: 2px solid transparent; border-radius: 12px; overflow: hidden; background: var(--color-studio-mist); cursor: pointer; aspect-ratio: 1; }
.thumbs button[aria-current="true"] { border-color: var(--color-ink); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.buybox { position: sticky; top: 116px; }
.buybox .tuning { display: block; margin-bottom: 10px; }
.buybox h1 { font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: -0.3px; margin: 0; }
.buybox .car { font-size: 17px; color: var(--color-slate); margin: 12px 0 0; }
.buybox .price { font-size: 28px; font-weight: 600; margin: 28px 0 4px; letter-spacing: -0.2px; }
.buybox .price-note { font-size: 14px; color: var(--color-slate); letter-spacing: -0.224px; margin: 0; }
.buybox .actions { display: grid; gap: 12px; margin-top: 28px; }
.buybox .actions .pill { width: 100%; }
.buybox .facts { margin: 28px 0 0; border-top: 1px solid var(--color-hairline-silver); }
.buybox .facts div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--color-hairline-silver); font-size: 14px; letter-spacing: -0.224px; }
.buybox .facts dt { color: var(--color-slate); }
.buybox .facts dd { margin: 0; font-weight: 500; text-align: right; }
.buybox .assure { display: flex; gap: 12px; margin-top: 24px; font-size: 14px; letter-spacing: -0.224px; color: var(--color-slate); }
.buybox .assure a { color: var(--color-link-red); }
.desc { max-width: 720px; }
.desc h2 { margin-bottom: 20px; }
.desc p { margin: 0 0 14px; }
.pill.added { background: var(--color-ink); }

/* Пустая корзина */
.empty-state { text-align: center; padding: 120px 0 140px; }
.empty-state .icon { width: 72px; height: 72px; margin: 0 auto 28px; color: var(--color-steel); }
.empty-state .lede { color: var(--color-slate); margin: 16px auto 36px; max-width: 520px; }
.empty-state .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1068px) {
  .tiles.three { grid-template-columns: repeat(2, 1fr); }
  .thumbs { grid-template-columns: repeat(6, 1fr); }
  .term .num { font-size: 150px; }
}
@media (max-width: 834px) {
  .page-hero { padding: 48px 0 36px; }
  .page-hero .display { font-size: 44px; letter-spacing: -0.5px; }
  .tiles, .tiles.three { grid-template-columns: 1fr; }
  .term { grid-template-columns: 1fr; gap: 20px; }
  .term .num { font-size: 120px; letter-spacing: -3px; }
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .buybox { position: static; }
  .buybox h1 { font-size: 32px; }
  .map { height: 340px; }
}
@media (max-width: 480px) {
  .page-hero .display { font-size: 36px; }
  .tile { padding: 32px 22px 28px; }
  .tile h3 { font-size: 24px; }
  .thumbs { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .empty-state { padding: 80px 0 100px; }
}

/* длинные русские слова в крупных заголовках переносим, а не выпускаем за экран */
.display, .headline, .feature-heading, .buybox h1 { hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; }
