    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --accent: #DC2626; --accent2: #B91C1C;
      --text: #111827; --text2: #6B7280; --text3: #9CA3AF;
      --bg: #F9FAFB; --bg2: #FFFFFF; --bg3: #F3F4F6;
      --radius: 14px; --radius-sm: 8px;
      --sh: 0 2px 12px rgba(0,0,0,.07);
      --font: 'Inter', system-ui, -apple-system, sans-serif;
    }
    html { font-size: 15px; }
    body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; overflow-x: hidden; }
    .wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; min-width: 0; }

    /* Page layout */
    .car-page { padding: 24px 0 60px; }
    .breadcrumb { font-size: .78rem; color: var(--text3); margin-bottom: 18px; }
    .breadcrumb a { color: var(--text3); text-decoration: none; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { margin: 0 6px; }

    /* Mosaic blocks */
    .mosaic { display: flex; flex-direction: column; gap: 16px; }
    .card {
      background: var(--bg2); border-radius: var(--radius);
      box-shadow: var(--sh); overflow: hidden;
    }
    .card-pad { padding: 24px 28px; }
    .card-title {
      font-size: .72rem; font-weight: 700; color: var(--text3);
      text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .card-title .ico { font-size: 1rem; }
    .card-title svg {
      width: 17px; height: 17px; stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      flex: 0 0 auto;
    }
    .card-subtitle {
      margin: -6px 0 16px; color: var(--text3); font-size: .82rem; line-height: 1.5;
    }

    /* Block 1: Photo Gallery */
    .gallery-wrap {
      position: relative; background: #111; touch-action: pan-y; user-select: none; overflow: hidden;
    }
    .gallery-wrap.dragging, .lightbox-bg.dragging { cursor: grabbing; }
    .gallery-main {
      width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; cursor: zoom-in;
      -webkit-user-drag: none; user-select: none;
    }
    .gallery-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(17,24,39,.58); border: 1px solid rgba(255,255,255,.28); color: #fff;
      width: 46px; height: 46px; border-radius: 50%;
      cursor: pointer; transition: background .14s, transform .14s, border-color .14s;
      display: flex; align-items: center; justify-content: center; z-index: 2;
      box-shadow: 0 10px 26px rgba(0,0,0,.25);
    }
    .gallery-arrow svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
    .gallery-arrow:hover { background: rgba(17,24,39,.82); transform: translateY(-50%) scale(1.04); }
    .gallery-arrow.prev { left: 14px; }
    .gallery-arrow.next { right: 14px; }
    .gallery-counter {
      position: absolute; bottom: 12px; right: 16px;
      background: rgba(0,0,0,.55); color: #fff; font-size: .76rem;
      padding: 4px 12px; border-radius: 99px; z-index: 2;
    }
    .gallery-thumbs {
      display: flex; gap: 6px; padding: 10px 12px; background: #111; overflow-x: auto; scroll-snap-type: x proximity;
    }
    .gallery-thumbs::-webkit-scrollbar { height: 3px; }
    .gallery-thumbs::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }
    .gallery-thumb {
      width: 80px; height: 56px; object-fit: cover; border-radius: 5px;
      cursor: pointer; opacity: .5; border: 2px solid transparent; flex-shrink: 0; transition: opacity .14s; scroll-snap-align: start;
    }
    .gallery-thumb.active { opacity: 1; border-color: var(--accent); }
    .gallery-thumb:hover { opacity: .85; }

    .ui-icon {
      width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -0.16em;
      fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .panorama-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 10px 22px rgba(220,38,38,.22);
      vertical-align: middle;
    }
    .panorama-badge .ui-icon {
      width: 19px;
      height: 19px;
      stroke-width: 2;
      vertical-align: 0;
    }
    .panorama-badge[data-tooltip]::after {
      content: attr(data-tooltip);
      position: absolute;
      left: 50%;
      bottom: calc(100% + 8px);
      z-index: 30;
      width: max-content;
      max-width: 280px;
      padding: 7px 10px;
      border-radius: 8px;
      background: #111827;
      color: #fff;
      font-size: .72rem;
      line-height: 1.35;
      font-weight: 700;
      text-align: center;
      white-space: normal;
      box-shadow: 0 12px 26px rgba(17,24,39,.2);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 4px);
      transition: opacity .14s, transform .14s;
    }
    .panorama-badge:hover::after,
    .panorama-badge:focus-visible::after {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    .hero-anchor-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }
    .panorama-hero-action,
    .china-hero-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      min-height: 38px;
      padding: 0 13px;
      border-radius: 999px;
      background: #111827;
      color: #fff;
      text-decoration: none;
      font-size: .82rem;
      font-weight: 850;
      box-shadow: 0 12px 26px rgba(17,24,39,.16);
    }
    .china-hero-action {
      background: var(--accent);
      box-shadow: 0 12px 26px rgba(220,38,38,.18);
    }
    .panorama-hero-action:hover,
    .china-hero-action:hover { transform: translateY(-1px); }
    .panorama-hero-action .ui-icon,
    .china-hero-action .ui-icon {
      width: 18px;
      height: 18px;
      stroke-width: 2.2;
    }

    /* Block 2: Title, price + city */
    .hero-info-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: stretch;
    }
    .hero-card {
      min-width: 0; min-height: 230px; border: 1px solid #EEF2F7; border-radius: 14px;
      background: #fff; padding: 20px; display: flex; flex-direction: column; justify-content: space-between;
    }
    .hero-price-card { gap: 16px; }
    .hero-location-card { padding: 0; overflow: hidden; }
    .hero-location-card .location-card-compact {
      height: 100%; border: 0; border-radius: 14px; background: #F9FAFB; padding: 20px;
      align-content: center;
    }
    .price-specs-row { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }
    .price-location-row { grid-template-columns: minmax(240px, .95fr) minmax(0, 1.55fr); align-items: stretch; }
    .price-block { display: flex; flex-direction: column; justify-content: center; }
    .price-main { font-size: 2.1rem; font-weight: 800; color: var(--accent); letter-spacing: -.03em; line-height: 1.1; }
    .price-orig { font-size: .82rem; color: var(--text3); margin-top: 4px; }
    .price-vlad-summary {
      display: inline-flex; align-items: baseline; gap: 7px; flex-wrap: wrap;
      margin-top: 10px; color: var(--text2); font-size: .82rem; font-weight: 700;
    }
    .price-vlad-summary strong { color: var(--accent); font-size: .98rem; }
    .price-side { display: grid; gap: 12px; min-width: 0; }
    .price-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
    .badge {
      font-size: .68rem; font-weight: 600; padding: 3px 10px; border-radius: 99px;
      background: var(--bg3); color: var(--text2); text-transform: uppercase; letter-spacing: .04em;
    }
    .badge.fuel-ev { background: rgba(22,163,74,.1); color: #15803D; }
    .badge.fuel-hev { background: rgba(16,185,129,.1); color: #059669; }
    .badge.source-badge { background: rgba(220,38,38,.07); color: var(--accent); }
    .badge.sold-badge { background: rgba(234,88,12,.10); color: #C2410C; }
    .specs-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }
    .spec-item label {
      font-size: .62rem; font-weight: 700; color: var(--text3);
      text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 2px;
    }
    .spec-item .val { font-size: .92rem; color: var(--text); font-weight: 500; }

    .passport-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
    }
    .passport-item {
      display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px;
      min-width: 0; padding: 14px; border: 1px solid #EEF2F7;
      border-radius: 12px; background: #fff;
    }
    .passport-icon {
      width: 42px; height: 42px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(220,38,38,.07); color: var(--accent); font-size: 1.15rem;
      flex: 0 0 auto;
    }
    .passport-icon .ui-icon,
    .location-icon .ui-icon { width: 20px; height: 20px; }
    .passport-body { min-width: 0; }
    .passport-body label,
    .location-main label {
      display: block; font-size: .62rem; font-weight: 800; color: var(--text3);
      text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px;
    }
    .passport-value {
      color: var(--text); font-size: 1rem; font-weight: 800; line-height: 1.25;
      overflow-wrap: anywhere;
    }
    .passport-source-badge {
      display: inline-flex; margin-left: 8px; transform: translateY(-1px);
      border-radius: 999px; padding: 3px 8px; background: rgba(220,38,38,.07);
      color: var(--accent); font-size: .58rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: .04em; vertical-align: middle;
    }
    .passport-body p,
    .location-main p {
      margin-top: 6px; color: var(--text2); font-size: .82rem; line-height: 1.55;
    }
    .location-card {
      display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px;
      align-items: center; padding: 16px; border: 1px solid #EEF2F7;
      border-radius: 12px; background: #fff;
    }
    .location-card-compact {
      padding: 14px; grid-template-columns: minmax(0, 1fr);
      gap: 12px; background: #F9FAFB;
    }
    .location-card-compact .location-main {
      grid-template-columns: 40px minmax(0, 1fr); gap: 11px;
    }
    .location-card-compact .location-icon {
      width: 40px; height: 40px; border-radius: 12px; font-size: 1.05rem;
    }
    .location-card-compact .location-city { font-size: 1rem; }
    .location-card-compact .location-main p { margin-top: 4px; font-size: .78rem; }
    .location-card-compact .location-actions { justify-content: flex-start; }
    .location-main {
      display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 13px;
      min-width: 0; align-items: start;
    }
    .location-icon {
      width: 46px; height: 46px; border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(37,99,235,.08); color: #2563EB; font-size: 1.2rem;
    }
    .location-city {
      color: var(--text); font-size: 1.05rem; font-weight: 800; line-height: 1.25;
      overflow-wrap: anywhere;
    }
    .location-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
    .compact-specs { grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); }
    .compact-specs .spec-item {
      background: var(--bg3); border-radius: 8px; padding: 10px 12px; min-width: 0;
    }

    .car-title-block { margin-bottom: 6px; }
    .car-title-line { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; min-width: 0; }
    .car-title { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1.2; }

    .stale-warning {
      background: rgba(239,68,68,.07); color: #DC2626; border-radius: 8px;
      padding: 10px 14px; font-size: .82rem; margin-top: 12px;
    }

    /* Block 3: Wiki Photos */
    .wiki-photos-scroll {
      display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
    }
    .wiki-photos-scroll::-webkit-scrollbar { height: 4px; }
    .wiki-photos-scroll::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 2px; }
    .wiki-photo-card {
      flex-shrink: 0; width: 220px; border-radius: var(--radius-sm);
      overflow: hidden; background: var(--bg3); cursor: pointer; transition: transform .14s;
      position: relative;
    }
    .wiki-photo-card:hover { transform: scale(1.02); }
    .wiki-photo-loading::before {
      content: ''; position: absolute; inset: 0 0 29px 0; z-index: 1;
      background: linear-gradient(90deg, var(--bg3) 25%, #e5e7eb 50%, var(--bg3) 75%);
      background-size: 200% 100%; animation: skel 1.4s infinite;
    }
    .wiki-photo-card img {
      width: 100%; height: 150px; object-fit: cover; display: block; position: relative; z-index: 2;
    }
    .wiki-photo-label {
      font-size: .68rem; color: var(--text2); padding: 6px 10px;
      text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .wiki-photos-empty { color: var(--text3); font-size: .84rem; text-align: center; padding: 20px 0; }

    .china-panorama-card { overflow: visible; scroll-margin-top: 18px; }
    .china-panorama-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px;
    }
    .china-panorama-item {
      min-width: 0; overflow: hidden; border: 1px solid #E5E7EB;
      border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,.04);
    }
    .china-panorama-head {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      padding: 10px 12px; border-bottom: 1px solid #EEF2F7;
    }
    .china-panorama-head span {
      min-width: 0; color: var(--text); font-size: .86rem; font-weight: 800;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .china-panorama-head a {
      color: var(--accent); font-size: .72rem; font-weight: 800; text-decoration: none;
      white-space: nowrap;
    }
    .china-panorama-frame {
      width: 100%; aspect-ratio: 16 / 9; min-height: 260px; display: block;
      border: 0; background: #F3F4F6;
    }

    /* Block 4: Factory Specs */
    .factory-specs-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
      gap: 12px;
    }
    .china-spec-card { overflow: visible; scroll-margin-top: 18px; }
    .china-spec-chips {
      display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px;
    }
    .china-spec-chips span {
      min-height: 34px; display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 10px; border-radius: 999px; background: #F9FAFB;
      border: 1px solid #E5E7EB; color: var(--text); font-size: .78rem; font-weight: 800;
      max-width: 100%;
    }
    .china-spec-chips em {
      color: var(--text3); font-style: normal; font-weight: 800; text-transform: uppercase;
      letter-spacing: .05em; font-size: .58rem;
    }
    .china-spec-grid { margin-top: 10px; }
    .china-param-details {
      margin-top: 16px; border-top: 1px solid #EEF2F7; padding-top: 12px;
    }
    .china-param-details summary {
      cursor: pointer; color: var(--accent); font-size: .84rem; font-weight: 900;
      list-style-position: inside;
    }
    .china-param-groups {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 12px; margin-top: 12px;
    }
    .china-param-group {
      min-width: 0; border: 1px solid #EEF2F7; border-radius: 12px; overflow: hidden; background: #fff;
    }
    .china-param-group h3 {
      margin: 0; padding: 10px 12px; background: #F9FAFB; color: var(--text);
      font-size: .82rem; font-weight: 900;
    }
    .china-param-row {
      display: grid; grid-template-columns: minmax(0, 1fr) minmax(88px, auto);
      gap: 12px; padding: 9px 12px; border-top: 1px solid #F3F4F6;
      color: var(--text2); font-size: .78rem;
    }
    .china-param-row strong {
      min-width: 0; color: var(--text); font-size: .8rem; text-align: right; overflow-wrap: anywhere;
    }
    .china-spec-source { margin-top: 12px; }
    .china-spec-source a {
      color: var(--accent); font-size: .78rem; font-weight: 900; text-decoration: none;
    }

    /* Encar report */
    .encar-report { display: flex; flex-direction: column; gap: 16px; }
    .encar-badges { display: flex; flex-wrap: wrap; gap: 8px; }
    .encar-badge {
      display: inline-flex; align-items: center; min-height: 28px; padding: 4px 10px;
      border-radius: 999px; font-size: .72rem; font-weight: 800;
      border: 1px solid #E5E7EB; background: #fff; color: var(--text2);
    }
    .encar-badge-good { background: rgba(22,163,74,.08); color: #15803D; border-color: rgba(22,163,74,.18); }
    .encar-badge-warn { background: rgba(234,88,12,.08); color: #C2410C; border-color: rgba(234,88,12,.18); }
    .encar-badge-neutral { background: var(--bg3); color: var(--text2); }
    .encar-sections { display: grid; gap: 18px; }
    .encar-section { border-top: 1px solid #EEF2F7; padding-top: 16px; }
    .encar-section:first-child { border-top: 0; padding-top: 0; }
    .encar-section h3 {
      margin: 0 0 10px; font-size: .92rem; font-weight: 800; color: var(--text);
    }
    .encar-section p {
      color: var(--text2); font-size: .86rem; line-height: 1.65; margin-top: 8px;
    }
    .encar-facts {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 10px 14px;
    }
    .encar-facts div,
    .encar-panel-grid > div {
      min-width: 0; background: var(--bg3); border-radius: 8px; padding: 10px 12px;
    }
    .encar-facts label,
    .encar-panel-grid label {
      display: block; margin-bottom: 3px; color: var(--text3);
      font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
    }
    .encar-facts span { display: block; color: var(--text); font-size: .88rem; font-weight: 650; overflow-wrap: anywhere; }
    .encar-panel-grid {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
    }
    .encar-list { margin: 0; padding-left: 18px; color: var(--text2); font-size: .84rem; line-height: 1.55; }
    .encar-list li + li { margin-top: 3px; }
    .encar-empty { color: var(--text3); font-size: .82rem; }
    .encar-events { display: grid; gap: 8px; margin-top: 12px; }
    .encar-events div {
      display: grid; grid-template-columns: minmax(100px, .4fr) 1fr; gap: 10px;
      padding: 9px 0; border-top: 1px dashed #E5E7EB;
    }
    .encar-events strong { color: var(--text); font-size: .82rem; }
    .encar-events span { color: var(--text2); font-size: .82rem; overflow-wrap: anywhere; }
    .encar-note { margin: 16px 0 0; }

    /* Configuration options */
    .option-groups {
      display: block; column-width: 300px; column-gap: 12px;
    }
    .option-group {
      display: inline-block; width: 100%; break-inside: avoid;
      border: 1px solid #E5E7EB; border-radius: 13px; background: #fff;
      overflow: hidden; min-width: 0; margin: 0 0 12px;
      box-shadow: 0 8px 22px rgba(15,23,42,.04);
    }
    .option-group-head {
      display: flex; align-items: center; gap: 9px;
      padding: 10px 12px 8px; background: #fff;
    }
    .option-group-head h3 {
      flex: 1; margin: 0; color: var(--text); font-size: .86rem; font-weight: 800;
      min-width: 0;
    }
    .option-group-head > span:last-child {
      color: var(--accent); background: rgba(220,38,38,.08); border-radius: 999px;
      padding: 2px 8px; font-size: .72rem; font-weight: 800;
    }
    .option-estimate-badge {
      color: var(--text3); background: #F3F4F6; border-radius: 999px;
      padding: 3px 8px; font-size: .62rem; font-weight: 800; font-style: normal;
      text-transform: uppercase; white-space: nowrap;
    }
    .option-group-icon,
    .option-item-icon {
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--accent); background: rgba(220,38,38,.08); flex: 0 0 auto;
    }
    .option-group-icon { width: 30px; height: 30px; border-radius: 10px; }
    .option-item-icon { width: 20px; height: 20px; border-radius: 7px; background: rgba(220,38,38,.07); }
    .option-group-icon svg,
    .option-item-icon svg {
      width: 16px; height: 16px; stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .option-item-icon svg { width: 12px; height: 12px; }
    .option-items {
      display: flex; flex-wrap: wrap; gap: 7px; padding: 0 12px 12px;
    }
    .option-item {
      display: inline-flex; align-items: center; gap: 7px; min-height: 30px;
      color: var(--text2); font-size: .78rem; font-weight: 700;
      border: 1px solid #EEF0F4; background: #F9FAFB; border-radius: 999px;
      padding: 4px 10px 4px 6px; max-width: 100%;
    }
    .option-item span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    /* Block 5: Calculator */
    .calc-vlad {
      background: rgba(220,38,38,.03); border: 1px solid rgba(220,38,38,.1);
      border-radius: 12px; padding: 20px 24px;
    }
    .calc-toggle { display: flex; gap: 4px; margin-bottom: 14px; }
    .calc-toggle-btn { flex: 1; padding: 6px 12px; font-size: .78rem; font-weight: 600; border-radius: 7px; border: 1px solid var(--bg3); background: var(--bg3); color: var(--text2); cursor: pointer; font-family: var(--font); transition: background .12s; }
    .calc-toggle-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    .calc-total { font-size: 1.2rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
    .calc-total-label { font-size: .74rem; color: var(--text2); font-weight: 500; }
    .calc-rows { display: flex; flex-direction: column; gap: 4px; }
    .calc-row { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text2); padding: 3px 0; border-bottom: 1px solid rgba(0,0,0,.04); }
    .calc-row:last-child { border-bottom: none; }
    .calc-note { font-size: .7rem; color: var(--text3); margin-top: 10px; line-height: 1.4; }

    /* Block 6: Meta */
    .meta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
    .meta-item label { font-size: .62rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 2px; }
    .meta-item .val { font-size: .88rem; color: var(--text); font-weight: 500; word-break: break-all; }
    .meta-item a.val { color: var(--accent); text-decoration: none; }
    .meta-item a.val:hover { text-decoration: underline; }

    /* Description */
    .car-description {
      background: var(--bg3); border-radius: var(--radius-sm);
      padding: 16px 18px;
    }
    .car-description h3 { font-size: .72rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
    .car-description p { font-size: .88rem; color: var(--text2); line-height: 1.6; }

    /* Actions */
    .card-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px; }
    .btn-primary {
      background: var(--accent); color: #fff; border: none;
      padding: 10px 22px; border-radius: var(--radius-sm);
      font-size: .9rem; font-weight: 600; cursor: pointer;
      font-family: var(--font); text-decoration: none;
      transition: background .14s; display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-primary:hover { background: var(--accent2); }
    .btn-secondary {
      background: var(--bg3); color: var(--text); border: none;
      padding: 10px 20px; border-radius: var(--radius-sm);
      font-size: .9rem; font-weight: 600; cursor: pointer;
      font-family: var(--font); text-decoration: none;
      transition: background .14s; display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-secondary:hover { background: #E5E7EB; }

    /* Skeleton */
    .skeleton { background: linear-gradient(90deg, var(--bg3) 25%, #e5e7eb 50%, var(--bg3) 75%); background-size: 200% 100%; animation: skel 1.4s infinite; border-radius: 6px; }
    @keyframes skel { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

    /* Lightbox */
    .lightbox-bg {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,.92);
      display: flex; align-items: center; justify-content: center;
      cursor: default; touch-action: none; padding: 74px 88px 98px;
    }
    .lightbox-bg.hidden { display: none; }
    .lightbox-img {
      max-width: 92vw; max-height: calc(100vh - 170px); object-fit: contain; border-radius: 8px;
      box-shadow: 0 26px 90px rgba(0,0,0,.45); user-select: none; -webkit-user-drag: none;
    }
    .lightbox-close,
    .lightbox-arrow {
      position: fixed; z-index: 10000; border: 1px solid rgba(255,255,255,.18);
      background: rgba(17,24,39,.72); color: #fff; border-radius: 999px;
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      box-shadow: 0 12px 32px rgba(0,0,0,.32); transition: background .14s, transform .14s;
    }
    .lightbox-close {
      top: 18px; right: 18px; width: 46px; height: 46px; font-size: 2rem; line-height: 1;
    }
    .lightbox-arrow { top: 50%; width: 52px; height: 52px; transform: translateY(-50%); }
    .lightbox-arrow svg {
      width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round;
    }
    .lightbox-arrow.prev { left: 22px; }
    .lightbox-arrow.next { right: 22px; }
    .lightbox-close:hover { background: rgba(17,24,39,.92); transform: scale(1.04); }
    .lightbox-arrow:hover { background: rgba(17,24,39,.92); transform: translateY(-50%) scale(1.04); }
    .lightbox-counter {
      position: fixed; right: 24px; bottom: 72px; z-index: 10000;
      background: rgba(17,24,39,.72); color: #fff; padding: 7px 13px; border-radius: 999px; font-size: .84rem;
    }
    .lightbox-thumbs {
      position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 10000;
      max-width: min(760px, calc(100vw - 150px)); display: flex; gap: 8px; overflow-x: auto; padding: 4px;
      scrollbar-width: thin; scroll-snap-type: x proximity;
    }
    .lightbox-thumb {
      width: 74px; height: 52px; flex: 0 0 auto; object-fit: cover; border-radius: 7px; opacity: .55;
      border: 2px solid transparent; cursor: pointer; background: #111; scroll-snap-align: center;
    }
    .lightbox-thumb.active { opacity: 1; border-color: var(--accent); }
    body.lightbox-open { overflow: hidden; }

    @media (max-width: 720px) {
      .hero-info-grid { grid-template-columns: 1fr; }
      .hero-card { min-height: auto; padding: 16px; }
      .hero-location-card { padding: 0; }
      .hero-location-card .location-card-compact { padding: 16px; }
      .price-specs-row { grid-template-columns: 1fr; }
      .card-pad { padding: 18px 16px; }
      .car-title { font-size: 1.2rem; }
      .price-main { font-size: 1.6rem; }
      .specs-grid, .factory-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .passport-grid { grid-template-columns: 1fr; }
      .passport-item { grid-template-columns: 38px minmax(0, 1fr); padding: 12px; }
      .passport-icon { width: 38px; height: 38px; border-radius: 11px; }
      .location-card { grid-template-columns: 1fr; align-items: stretch; }
      .location-card-compact { padding: 12px; }
      .location-actions { justify-content: stretch; }
      .location-actions .btn-secondary { flex: 1; justify-content: center; }
      .compact-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .encar-panel-grid { grid-template-columns: 1fr; }
      .encar-events div { grid-template-columns: 1fr; gap: 2px; }
      .meta-grid { grid-template-columns: 1fr 1fr; }
      .gallery-thumb { width: 60px; height: 42px; }
      .gallery-arrow { width: 40px; height: 40px; }
      .gallery-arrow.prev { left: 10px; }
      .gallery-arrow.next { right: 10px; }
      .wiki-photo-card { width: 160px; }
      .wiki-photo-card img { height: 110px; }
      .china-panorama-grid { grid-template-columns: 1fr; }
      .china-panorama-frame { min-height: 220px; }
      .china-spec-chips span { width: 100%; justify-content: space-between; border-radius: 10px; }
      .china-param-groups { grid-template-columns: 1fr; }
      .china-param-row { grid-template-columns: 1fr; gap: 3px; }
      .china-param-row strong { text-align: left; }
      .option-groups { column-width: auto; column-count: 1; }
      .lightbox-bg { padding: 56px 12px 86px; }
      .lightbox-img { max-width: 96vw; max-height: calc(100vh - 150px); }
      .lightbox-close { top: 12px; right: 12px; width: 42px; height: 42px; }
      .lightbox-arrow { width: 42px; height: 42px; }
      .lightbox-arrow.prev { left: 10px; }
      .lightbox-arrow.next { right: 10px; }
      .lightbox-thumbs { max-width: calc(100vw - 24px); bottom: 18px; }
      .lightbox-thumb { width: 62px; height: 44px; }
      .lightbox-counter { right: 14px; bottom: 72px; }
    }
