    /* ===== Утилиты, бывшие inline style="..." ===== */
    .bc-nav { font-size: 13px; color: #666; }
    .bc-link { color: #888; text-decoration: none; }
    .bc-sep { color: #444; }
    .bc-current { color: #ccc; }
    .autoru-link {
        display: block;
        margin-top: 12px;
        text-align: center;
        color: #666;
        font-size: 13px;
        text-decoration: none;
    }
    .autoru-brand { color: #e30613; }
    .empty-note { color: #666; font-size: 14px; }
    .leasing-section { background: #111; padding: 0 0 60px; }
    .leasing-policy-link { color: #c9a84c; }
    .options-modal-foot { margin-top: 10px; }

    /* ===== HERO ===== */
    .car-detail-hero {
        background-color: #111;
        padding: 30px 0 50px;
    }

    /* --- Галерея --- */
    .car-gallery {
        position: relative;
    }
    .car-gallery__main {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 12px;
        cursor: zoom-in;
        background: #1a1a1a;
    }
    .car-gallery__main-wrap {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }
    .car-gallery__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,.5);
        border: none;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
    }
    .car-gallery__arrow:hover { background: rgba(0,0,0,.8); }
    .car-gallery__arrow--prev { left: 12px; }
    .car-gallery__arrow--next { right: 12px; }

    .car-gallery__thumbs {
        display: flex;
        gap: 8px;
        margin-top: 10px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .car-gallery__thumbs::-webkit-scrollbar { display: none; }
    .car-gallery__thumb {
        flex: 0 0 calc(25% - 6px);
        max-width: 100px;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        opacity: .55;
        transition: opacity .2s, border-color .2s;
        border: 2px solid transparent;
    }
    .car-gallery__thumb.active {
        opacity: 1;
        border-color: #c9a84c;
    }
    .car-gallery__counter {
        margin-top: 8px;
        color: #aaa;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .car-gallery__counter button {
        background: none;
        border: 1px solid #555;
        color: #fff;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .car-gallery__counter button:hover { border-color: #c9a84c; }

    /* --- Инфо-блок --- */
    .car-info-card {
        background: #1c1c1c;
        border-radius: 16px;
        padding: 28px 24px;
        height: 100%;
    }
    .car-info-card__title {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
    }
    .car-info-card__subtitle {
        color: #aaa;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .car-spec-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #2f2f2f;
        border-radius: 8px;
        padding: 10px 14px;
        margin-bottom: 8px;
    }
    .car-spec-row__label { color: #888; font-size: 14px; }
    .car-spec-row__value { color: #fff; font-size: 14px; font-weight: 500; }

    .car-info-card__price {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin: 20px 0;
    }
    .btn-book {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px;
        background: #c9a84c;
        color: #000;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        cursor: pointer;
        text-decoration: none;
        transition: background .2s;
        margin-bottom: 10px;
    }
    .btn-book:hover { background: #b8973d; color: #000; }
    .btn-leasing {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px;
        background: #252525;
        color: #fff;
        font-weight: 500;
        border: 1px solid #3a3a3a;
        border-radius: 8px;
        font-size: 15px;
        cursor: pointer;
        text-decoration: none;
        transition: background .2s, border-color .2s;
    }
    .btn-leasing:hover { background: #2e2e2e; border-color: #c9a84c; color: #fff; }

    /* ===== TABS: Характеристики / Описание ===== */
    .car-tabs-section {
        background: #111;
        padding: 40px 0;
    }
    .car-tabs__nav {
        display: flex;
        gap: 12px;
        margin-bottom: 28px;
    }
    .car-tab-btn {
        padding: 10px 24px;
        border-radius: 8px;
        border: 1px solid #333;
        background: transparent;
        color: #aaa;
        font-size: 15px;
        cursor: pointer;
        transition: all .2s;
    }
    .car-tab-btn.active, .car-tab-btn:hover {
        background: #2a2a2a;
        border-color: #c9a84c;
        color: #fff;
    }
    .car-tab-content { display: none; }
    .car-tab-content.active { display: block; }

    /* --- Блок "Основные" --- */
    .specs-card {
        background: #1c1c1c;
        border-radius: 14px;
        padding: 24px;
        height: 100%;
    }
    .specs-card__title {
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 16px;
    }
    .spec-item {
        display: flex;
        justify-content: space-between;
        padding: 9px 14px;
        border: 1px solid #2a2a2a;
        border-radius: 8px;
        margin-bottom: 6px;
    }
    .spec-item__label { color: #888; font-size: 14px; white-space: nowrap; }
    .spec-item__value { color: #fff; font-size: 14px; font-weight: 500; flex: 1; text-align: right; padding-left: 8px; word-break: break-word; }

    /* --- Блок "Комплектация" --- */
    .option-tag {
        display: inline-block;
        background: #252525;
        border: 1px solid #333;
        border-radius: 20px;
        padding: 5px 14px;
        color: #ddd;
        font-size: 13px;
        margin: 4px 4px 4px 0;
    }
    .option-tag-hidden { display: none; }

    /* --- Кнопка «развернуть опции» --- */
    .btn-options-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        padding: 6px 16px;
        background: transparent;
        border: 1px solid #3a3a3a;
        border-radius: 20px;
        color: #c9a84c;
        font-size: 13px;
        cursor: pointer;
        transition: border-color .2s, background .2s;
    }
    .btn-options-toggle:hover {
        border-color: #c9a84c;
        background: rgba(201,168,76,.08);
    }

    /* --- Модалка опций --- */
    .options-modal-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.75);
        z-index: 1060;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }
    .options-modal-backdrop.open { display: flex; }
    .options-modal {
        background: #1c1c1c;
        border: 1px solid #2f2f2f;
        border-radius: 16px;
        width: 100%;
        max-width: 680px;
        max-height: 80vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .options-modal__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px 16px;
        border-bottom: 1px solid #2a2a2a;
        flex-shrink: 0;
    }
    .options-modal__title { color: #fff; font-size: 18px; font-weight: 600; }
    .options-modal__close {
        background: none;
        border: none;
        color: #888;
        font-size: 22px;
        cursor: pointer;
        line-height: 1;
        padding: 0 4px;
        transition: color .2s;
    }
    .options-modal__close:hover { color: #fff; }
    .options-modal__body {
        padding: 20px 24px;
        overflow-y: auto;
        flex: 1;
    }
    .options-modal__body::-webkit-scrollbar { width: 6px; }
    .options-modal__body::-webkit-scrollbar-track { background: #111; }
    .options-modal__body::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
    .options-modal__footer {
        padding: 14px 24px;
        border-top: 1px solid #2a2a2a;
        text-align: right;
        flex-shrink: 0;
        color: #666;
        font-size: 13px;
    }

    /* --- Описание --- */
    .car-description {
        color: #ccc;
        font-size: 15px;
        line-height: 1.7;
    }

    /* ===== ЛИЗИНГ ===== */
    .leasing-section {
        background: linear-gradient(135deg, #1a1509 0%, #1c1c1c 60%);
        border-radius: 18px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        margin: 40px 0;
    }
    .leasing-section__badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(201,168,76,.15);
        border: 1px solid rgba(201,168,76,.4);
        color: #c9a84c;
        font-size: 13px;
        border-radius: 20px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }
    .leasing-section__title {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }
    .leasing-section__text {
        color: #aaa;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 520px;
    }
    .leasing-section__form {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 16px;
    }
    .leasing-section__input {
        flex: 1 1 0;
	min-width: 0;
        padding: 13px 16px;
        background: #252525;
        border: 1px solid #3a3a3a;
        border-radius: 8px;
        color: #fff;
        font-size: 15px;
        outline: none;
        transition: border-color .2s;
    }
    .leasing-section__input:focus { border-color: #c9a84c; }
    .leasing-section__submit {
        flex: 0 0 auto;
        padding: 13px 28px;
        background: #c9a84c;
        border: none;
        border-radius: 8px;
        color: #000;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: background .2s;
    }
    .leasing-section__submit:hover { background: #b8973d; }
    .leasing-section__consent {
        font-size: 12px;
        color: #666;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }
    .leasing-section__consent input { margin-top: 2px; flex-shrink: 0; }
    .leasing-section__car-img {
        max-width: 100%;
        width: 380px;
        filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
    }
    .leasing-section__bottom-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(201,168,76,.1);
        border: 1px solid rgba(201,168,76,.3);
        color: #c9a84c;
        font-size: 12px;
        border-radius: 20px;
        padding: 4px 12px;
        margin-top: 16px;
    }
    .leasing-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
    }

    /* MODAL styles moved to components.css (shared with /delivery/) */

    @media (max-width: 767px) {
        .car-info-card { margin-top: 20px; }
        .leasing-section { padding: 28px 20px; }
        .leasing-section__car-img { width: 100%; margin-top: 24px; }
        .leasing-right { align-items: flex-start; }
    }


/* ===== CTA banners (test-drive, trade-in) — Figma 1010:1046 / 1010:1068 ===== */
.car-cta-banner {
    background-color: #111;
    padding: 0 0 24px;
}
.car-cta-banner + .car-cta-banner {
    padding-top: 0;
}
.car-cta-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 44px 38px;
    padding-right: 520px;
    background:
        radial-gradient(ellipse 70% 100% at 78% 50%, rgba(212, 176, 96, 0.18) 0%, rgba(212, 176, 96, 0) 65%),
        linear-gradient(180deg, rgba(47, 50, 69, 0.55) 0%, rgba(47, 50, 69, 0.25) 100%),
        #1C1C1C;
    border: 1px solid #4A4A4A;
    border-radius: 18px;
    overflow: hidden;
}
.car-cta-banner__body {
    position: relative;
    z-index: 1;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.car-cta-banner__title {
    margin: 0;
    font-family: Roboto, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}
.car-cta-banner__title-accent {
    background: linear-gradient(46deg, #D9B662 0%, #CDA95D 36%, #DAAA66 65%, #F3DC8C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.car-cta-banner__text {
    margin: 0;
    max-width: 437px;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
}
.car-cta-banner__btn {
    align-self: flex-start;
    width: 250px;
    height: 48px;
    padding: 12px 44px;
    background: linear-gradient(46deg, #D9B662 0%, #CDA95D 36%, #DAAA66 65%, #F3DC8C 100%);
    color: #06040D;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 13.4px rgba(255, 231, 17, 0.29);
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}
.car-cta-banner__btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.car-cta-banner__decor {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    height: 320px;
    width: auto;
    max-width: 580px;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
    pointer-events: none;
    user-select: none;
}

/* ===== Концьерж — пакет «Защита Park Lane Premium» (аккордеон) ===== */
.car-concierge {
    background-color: #111;
    padding: 0 0 50px;
}
.car-concierge__head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 26px 36px;
    background: #1C1C1C;
    border: none;
    border-radius: 18px;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.car-concierge__head::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(90deg, #4A4A4A 0%, #B5A06A 50%, #4A4A4A 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.car-concierge__head:hover { background: #232323; }
.car-concierge__head-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.car-concierge__head-row {
    display: flex;
    align-items: baseline;
    gap: 24px;
    flex-wrap: wrap;
}
.car-concierge__chevron {
    flex-shrink: 0;
    font-size: 28px;
    color: #F3DC8C;
    transition: transform 0.25s ease;
    line-height: 1;
}
.car-concierge__head[aria-expanded="true"] .car-concierge__chevron {
    transform: rotate(180deg);
}
.car-concierge__body {
    margin-top: 18px;
}
.car-concierge__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}
.car-concierge__card {
    position: relative;
    padding: 40px;
    background: #1C1C1C;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
}
.car-concierge__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(90deg, #4A4A4A 0%, #B5A06A 50%, #4A4A4A 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.car-concierge__badge {
    align-self: flex-start;
    padding: 6px 22px;
    background: linear-gradient(46deg, #D9B662 0%, #CDA95D 36%, #DAAA66 65%, #F3DC8C 100%);
    border-radius: 999px;
    color: #06040D;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    width: max-content;
    max-width: 100%;
}
.car-concierge__title {
    margin: 0;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.05;
    color: #F3DC8C;
    letter-spacing: 0.3px;
}
.car-concierge__included {
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}
.car-concierge__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.car-concierge__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
}
.car-concierge__list-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.car-concierge__list-item--noicon {
    padding-left: 66px;
}
.car-concierge__price {
    display: inline-flex;
    align-items: baseline;
    gap: 16px;
    margin-left: auto;
}
.car-concierge__price-old {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 22px;
}
.car-concierge__price-new {
    color: #F3DC8C;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}
.car-concierge__btn {
    align-self: flex-start;
    min-width: 250px;
    height: 48px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    background: linear-gradient(46deg, #D9B662 0%, #CDA95D 36%, #DAAA66 65%, #F3DC8C 100%);
    color: #06040D;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 13.4px rgba(255, 231, 17, 0.29);
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}
.car-concierge__btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.car-concierge__btn-arrow {
    font-size: 18px;
    line-height: 1;
}
.car-concierge__hero {
    position: relative;
    border-radius: 18px;
    border: 1px solid #4A4A4A;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 35%, rgba(0, 0, 0, 0.62) 100%),
        radial-gradient(ellipse 70% 40% at 80% 12%, rgba(255, 230, 180, 0.32) 0%, rgba(255, 220, 170, 0) 65%),
        url('/static/img/concierge-bg.webp') #111;
    background-size: auto, auto, cover;
    background-position: center, center top, center;
    background-repeat: no-repeat;
    min-height: 480px;
    padding: 40px;
}
.car-concierge__hero-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: 220px;
    height: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
    .car-cta-banner__inner {
        padding: 32px 28px;
        padding-right: 360px;
        min-height: 300px;
    }
    .car-cta-banner__title {
        font-size: 32px;
    }
    .car-cta-banner__text {
        font-size: 18px;
    }
    .car-cta-banner__decor {
        height: 260px;
        max-width: 420px;
        right: 0;
    }
    .car-concierge__inner {
        grid-template-columns: 1fr;
    }
    .car-concierge__card {
        order: 0;
        padding: 32px 26px;
    }
    .car-concierge__hero {
        order: 1;
        min-height: 260px;
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .car-cta-banner__inner {
        display: block;
        padding: 24px 24px 28px;
        padding-right: 24px;
        min-height: 0;
        overflow: hidden;
    }
    .car-cta-banner__body {
        max-width: none;
        gap: 20px;
    }
    .car-cta-banner--test-drive .car-cta-banner__title {
        max-width: 195px;
        padding-right: 0;
    }
    .car-cta-banner__title {
        font-size: 28px;
        line-height: 1.05;
    }
    .car-cta-banner__text {
        font-size: 15px;
        line-height: 1.4;
    }
    .car-cta-banner__btn {
        width: 100%;
        align-self: stretch;
    }
    .car-cta-banner__decor {
        position: absolute;
        top: 8px;
        right: 4px;
        bottom: auto;
        transform: none;
        height: auto;
        width: 140px;
        max-width: none;
        max-height: none;
        opacity: 1;
        z-index: 0;
        pointer-events: none;
    }
    .car-cta-banner--trade-in .car-cta-banner__decor {
        position: static;
        display: block;
        transform: none;
        margin: 12px auto 0;
        width: 260px;
        max-width: 80%;
        opacity: 1;
    }
    .car-concierge__head {
        padding: 20px 22px;
        gap: 14px;
    }
    .car-concierge__head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .car-concierge__price {
        margin-left: 0;
    }
    .car-concierge__card {
        padding: 24px 18px;
    }
    .car-concierge__title {
        font-size: 28px;
    }
    .car-concierge__list-icon {
        width: 44px;
        height: 44px;
    }
    .car-concierge__list-item--noicon {
        padding-left: 58px;
    }
    .car-concierge__price-new {
        font-size: 28px;
    }
    .car-concierge__btn {
        width: 100%;
        align-self: stretch;
    }
    .car-concierge__hero {
        min-height: 220px;
    }
    .car-concierge__hero-logo {
        width: 180px;
        margin: 0 auto;
    }
}
