@charset "UTF-8";
.p-30-60 {
    padding: 16px 0 20px;
}

@media (min-width: 992px) {
    .p-30-60 {
        padding: 30px 0 60px;
    }
}

.p-30-30 {
    padding: 30px 0 30px;
}

@media (min-width: 992px) {
    .p-30-30 {
        padding: 30px 0 30px;
    }
}

.p-60 {
    padding: 16px 0 20px;
}

@media (min-width: 992px) {
    .p-60 {
        padding: 60px 0 60px;
    }
}

.pt-60 {
    padding-top: 16px;
}

@media (min-width: 992px) {
    .pt-60 {
        padding-top: 60px;
    }
}

.pt-30 {
    padding-top: 16px;
}

@media (min-width: 992px) {
    .pt-30 {
        padding-top: 30px;
    }
}

/* @use "bootstrap/scss/bootstrap" with (
    $font-family-sans-serif: $font-family-sans-serif
);
@use "bootstrap-icons/font/bootstrap-icons.css"; */
:root {
    --container-max-width: 1920px;
    --container-content-width: 1790px;
    --container-padding-min: 16px;
    --container-padding-max: 65px;
    --site-breadcrumb-padding-y: 16px;
    --site-page-padding-bottom: 32px;
    --site-footer-padding-y: 40px;
}

@media (min-width: 992px) {
    :root {
        --site-breadcrumb-padding-y: 24px;
        --site-page-padding-bottom: 60px;
    }
}

.container-custom {
    width: 100%;
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: clamp(var(--container-padding-min), (100% - var(--container-content-width)) / 2, var(--container-padding-max));
}

.site-breadcrumb {
    padding-block: var(--site-breadcrumb-padding-y);
}

.site-breadcrumb:first-child {
    margin-top: 0;
}

/* Нижний отступ до футера — только у последней секции на странице */
body > section:last-of-type:is(
    .used-catalog,
    .catalog-index,
    .credit-page,
    .trade-in-page,
    .contacts-page,
    .car-detail-page,
    .used-detail-page,
    .news-section,
    .steps-section,
    .partner-banks,
    .faq-section,
    .cta-section
) {
    padding-bottom: var(--site-page-padding-bottom);
}

body > section:not(:last-of-type):is(
    .used-catalog,
    .catalog-index,
    .credit-page,
    .trade-in-page,
    .contacts-page,
    .car-detail-page,
    .used-detail-page,
    .news-section
) {
    padding-bottom: 0;
}

.site-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #adb5bd;
    font-size: 12px;
    line-height: 1.3;
}

@media (min-width: 992px) {
    .site-breadcrumb__list {
        font-size: 16px;
    }
}

.site-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-breadcrumb__item:not(:last-child)::after {
    content: "›";
    color: #adb5bd;
}

.site-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.site-breadcrumb a:hover {
    color: #4e7ee0;
}

.site-breadcrumb__current {
    color: #4e7ee0;
}

.site-header__top {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    color: #0c0d15;
}

.site-header__top-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    padding: 8px 0;
}

.site-header__top-sep {
    color: #0c0d15;
}

.site-header__main-wrap {
    position: relative;
}

.site-header__main {
    z-index: 1030;
    background: #fff;
}

.site-header__main.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid #e9ecef;
}

.site-header__main-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.site-header__logo {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0c0d15;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
}

.site-header__logo:hover {
    color: #212529;
}

.site-header__nav {
    flex: 1;
    min-width: 0;
}

.site-header__nav--mobile {
    padding-bottom: 16px;
}

.site-header__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__nav--mobile .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.site-header__nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__nav-link:hover {
    color: #748ffc;
}

.site-header__nav-link.is-active {
    color: #748ffc;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 20px;
    background: #cad9f6;
    color: #212529;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__phone .bi {
    color: #4e7ee0;
    font-size: 16px;
}

.site-header__phone:hover {
    color: #212529;
    background: #dbe4ff;
}

.site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #fff;
    color: #212529;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 991px) {
    .site-header__top {
        display: none;
    }

    .site-header__main {
        position: sticky;
        top: 0;
        z-index: 1030;
    }

    .site-header__main-inner {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px 0;
    }

    .site-header__logo {
        margin-right: auto;
        font-size: 18px;
    }

    .site-header__phone {
        margin-left: 0;
        flex-shrink: 0;
        gap: 6px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .site-header__phone .bi {
        font-size: 14px;
    }
}

@media (max-width: 991px) and (max-width: 420px) {
    .site-header__phone span {
        display: none;
    }
}

.site-header__actions {
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header-favorites {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 20px;
    background: #f4f6fb;
    color: #212529;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
}

.site-header-favorites:hover {
    background: #e8eefb;
    color: #212529;
}

.site-header-favorites__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4e7ee0;
    font-size: 28px;
}

.site-header-favorites.has-items .site-header-favorites__icon {
    color: #ec2a2d;
}

.site-header-favorites__count {
    top: 5px;
    right: 0;
    position: absolute;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #cad9f6 !important;
    color: #000;
    font-size: 12px;
    font-weight: 700;
}

.site-header-favorites.has-items .site-header-favorites__count {
    background: #ec2a2d;
}
.site-header-favorites__icon > i{
    line-height: 0;
}
.site-header-drawer {
    position: fixed;
    inset: 0;
    z-index: 1045;
    pointer-events: none;
    visibility: hidden;
}

.site-header-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.site-header-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 13, 21, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-header-drawer.is-open .site-header-drawer__overlay {
    opacity: 1;
}

.site-header-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(90vw, 420px);
    height: 100%;
    padding: 20px 20px 24px;
    background: #fff;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header-drawer.is-open .site-header-drawer__panel {
    transform: translateX(0);
}

.site-header-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.site-header-drawer__title {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
}

.site-header-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
    color: #212529;
    font-size: 18px;
    line-height: 1;
}

.site-header-drawer__nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.site-header-drawer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header-drawer__nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
    color: #212529;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header-drawer__nav-link:hover,
.site-header-drawer__nav-link.is-active {
    color: #4e7ee0;
}

.site-header-drawer__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.site-header-drawer__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #212529;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.site-header-drawer__phone .bi {
    color: #4e7ee0;
}

.site-header-drawer__meta {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.45;
}

.site-header-drawer__favorites .site-header-favorites {
    width: fit-content;
    justify-content: center;
    margin-top: 4px;
}

.site-header-drawer__callback {
    width: 100%;
    margin-top: 6px;
    padding: 12px 16px;
    border: none;
    border-radius: 14px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.site-header-drawer__callback:hover {
    background: #3d6fd4;
    color: #fff;
}

html.site-header-drawer-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .site-header__toggle {
        margin-left: 0;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.site-hero {
    padding: 16px 0 20px;
}

@media (min-width: 992px) {
    .site-hero {
        padding: 24px 0 40px;
    }
}

.site-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 992px) {
    .site-hero__grid {
        grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
        gap: 8px;
        align-items: stretch;
    }
}

.site-hero__main {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 40px;
}

@media (min-width: 992px) {
    .site-hero__main {
        min-height: 600px;
    }
}

.site-hero__main-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.site-hero__main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.site-hero__main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: inherit;
    padding: 20px;
}

@media (min-width: 992px) {
    .site-hero__main-content {
        padding: 40px;
    }
}

.site-hero__main-title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
}

@media (max-width: 991px) {
    .site-hero__main-title {
        font-size: 36px;
    }
}

.site-hero__main-subtitle {
    margin: 0 0 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .site-hero__main-subtitle {
        font-size: 16px;
    }
}

.site-hero__side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 992px) {
    .site-hero__side {
        gap: 8px;
    }
}

.site-hero__card {
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    overflow: hidden;
    min-height: 192px;
}

@media (min-width: 992px) {
    .site-hero__card {
        min-height: 0;
        flex: 1;
    }
}

.site-hero__card--credit {
    background: #4e7ee0;
}

.site-hero__card--trade-in {
    background: #cad9f6;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
}

.site-hero__card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    padding: 20px;
}

@media (min-width: 992px) {
    .site-hero__card-content {
        padding: 40px;
    }
}

.site-hero__card-title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.site-hero__card-text {
    margin: 0 0 20px;
    font-size: 18px;
    flex: 1;
}

.site-hero__card--credit .site-hero__card-title,
.site-hero__card--credit .site-hero__card-text {
    color: #fff;
}

.site-hero__card--trade-in .site-hero__card-title {
    color: #212529;
}

.site-hero__card--trade-in .site-hero__card-text {
    color: #6c757d;
}

.site-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-hero__btn--primary {
    background: #4e7ee0;
    color: #fff;
    line-height: 1;
}

.site-hero__btn--primary:hover {
    background: rgb(37.4086538462, 95.3317307692, 213.5913461538);
    color: #fff;
}

.site-hero__btn--light {
    background: #fff;
    color: #4e7ee0;
    line-height: 1;
}

.site-hero__btn--light:hover {
    background: #cad9f6;
    color: #5c7cfa;
}

.home-car-filter {
    display: contents;
}

.car-filter {
    padding: 24px 0 32px;
    background: #f1f3f5;
}

@media (min-width: 992px) {
    .car-filter {
        padding: 60px 0 60px;
    }
}

.car-filter__card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

.car-filter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.car-filter__title {
    margin: 0;
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.car-filter__catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4e7ee0;
    text-decoration: none;
    white-space: nowrap;
}

.car-filter__catalog-link:hover {
    color: rgb(37.4086538462, 95.3317307692, 213.5913461538);
}

.car-filter__catalog-link .bi {
    font-size: 18px;
}

.car-filter__mobile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border: 1px solid rgba(78, 126, 224, 0.25);
    border-radius: 20px;
    background: #fff;
    color: #4e7ee0;
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.car-filter__mobile-trigger:hover {
    background: rgba(78, 126, 224, 0.08);
    color: #4e7ee0;
}

.car-filter__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .car-filter__fields {
        grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
        align-items: center;
        gap: 12px;
    }
}

.car-filter__field {
    min-width: 0;
}

.car-filter__control {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #f1f3f5;
    color: #212529;
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.car-filter__control:focus {
    outline: 2px solid rgba(78, 126, 224, 0.35);
    outline-offset: 0;
}

.car-filter__control:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.car-filter__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.car-filter__submit:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.car-filter__submit--full {
    width: 100%;
}

.car-filter__brands {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

@media (min-width: 576px) {
    .car-filter__brands {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .car-filter__brands {
        grid-template-columns: repeat(10, minmax(0, 1fr));
        gap: 8px 10px;
    }
}

.car-filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.car-filter__body .car-filter__tags {
    box-sizing: border-box;
    width: calc(100% + 80px);
    margin: 0 -40px -40px;
    padding: 40px;
}

@media (min-width: 992px) {
    .car-filter__body .car-filter__tags {
        flex-wrap: nowrap;
    }
}

.car-filter__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 14px 10px;
    border: 0;
    border-radius: 15px;
    background: #f2f2f4;
    color: #212529;
    text-decoration: none;
    cursor: pointer;
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.car-filter__chip:hover {
    background: rgba(78, 126, 224, 0.22);
    color: #212529;
}

.car-filter__chip.is-active {
    background: rgba(78, 126, 224, 0.22);
    color: #4e7ee0;
}

.car-filter__chip--tag {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 16px;
}

.car-filter__body .car-filter__chip--tag {
    flex: 1 1 0;
    min-width: 0;
}

.car-filter__brands .car-filter__chip {
    width: 100%;
    border: none;
    cursor: pointer;
}

.car-filter__tabs-wrap {
    margin-bottom: 20px;
}

.car-filter__tabs {
    width: 100%;
    max-width: 280px;
}

.car-filter__tabs .used-catalog__tab {
    border: none;
    background: transparent;
    cursor: pointer;
}

@media (min-width: 992px) {
    .car-filter__tabs.used-catalog__tabs--controls,
    .car-filter__tabs {
        height: 48px;
        gap: 4px;
        padding: 4px;
        border-radius: 20px;
        background: #f1f3f5;
    }

    .car-filter__tabs .used-catalog__tab {
        height: 40px;
        padding: 0 10px;
        border-radius: 16px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
    }
}

.car-filter__tabs .used-catalog__tab.is-active {
    background: #4e7ee0;
    color: #fff;
}

.car-filter__tabs .used-catalog__tab.is-active:hover {
    background: #4e7ee0;
    color: #fff;
}

.car-filter__tabs-wrap--sidebar {
    margin-bottom: 0;
}

.car-filter__tabs-wrap--sidebar .car-filter__tabs {
    width: 100%;
    max-width: none;
}

.car-filter__tags--sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.catalog-filter-offcanvas .car-filter__tags--sidebar .car-filter__chip--tag {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 16px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
}

.catalog-filter-offcanvas .car-filter__tabs-wrap--sidebar .used-catalog__tabs {
    width: 100%;
    max-width: none;
}

@media (max-width: 991px) {
    .car-filter__card {
        padding: 24px 20px;
    }

    .car-filter__head {
        margin-bottom: 16px;
    }

    .car-filter__head .car-filter__title {
        margin-bottom: 0;
    }

    .car-filter__body .car-filter__tags {
        width: calc(100% + 40px);
        margin: 0 -20px -24px;
        padding: 40px;
    }

    .car-filter__title {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .car-filter__body .car-filter__tags {
        flex-wrap: nowrap;
    }
}

.model-list {
    padding: 0 0 10px 0;
}

@media (min-width: 992px) {
    .model-list {
        padding: 0 0 60px 0;
    }
}

.model-list {
    background: #f1f3f5;
}

.model-list__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.model-list__grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

@media (min-width: 992px) {
    .model-list__grid {
        display: grid;
        overflow: visible;
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .model-list__grid {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
}

.model-list__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px 20px;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 15px;
    background: #fff;
    color: #212529;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.model-list__item:hover {
    background: #4e7ee0;
    color: #fff;
}

.model-list__item.is-active {
    background: #4e7ee0;
    border-color: #4e7ee0;
    color: #fff;
}

.model-list__item.is-active:hover {
    background: rgb(51.9605769231, 107.0221153846, 219.4394230769);
    color: #fff;
}

@media (min-width: 992px) {
    .model-list__item {
        flex-shrink: 1;
        padding: 10px 12px;
        white-space: normal;
    }
}

.special-car-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.special-car-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.special-car-card__link:hover {
    color: inherit;
}

.special-car-card__slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 340px;
    overflow: hidden;
}

.special-car-card__slider .swiper-wrapper {
    height: 100%;
    max-width: 100%;
}

.special-car-card__slider .swiper-slide {
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.special-car-card__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 5px;
    border-radius: 20px;
}

.special-car-card__pagination {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
    width: auto !important;
    transform: none !important;
    inset: auto 20px 14px !important;
}

.special-car-card__pagination .swiper-pagination-bullet {
    flex: 1;
    width: auto;
    height: 4px;
    margin: 0 !important;
    border-radius: 4px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.55);
    transition: background-color 0.2s ease;
}

.special-car-card__pagination .swiper-pagination-bullet.is-active, .special-car-card__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #4e7ee0;
}

.special-car-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.special-car-card__title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    color: #212529;
}

.special-car-card__status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    font-size: 16px;
}

.special-car-card__status-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4e7ee0;
}

.special-car-card__specs {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.45;
}

.special-car-card__specs:not(:has(~ .special-car-card__specs)) {
    margin-bottom: 40px;
}

.special-car-card__price {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #212529;
}

.special-car-card__monthly {
    margin: 0;
    font-size: 16px;
    color: #0c0d15;
}

.special-cars {
    padding: 16px 0 40px;
}

.special-cars__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.special-cars__title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #212529;
}

.special-cars__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #4e7ee0;
    text-decoration: none;
}

.special-cars__link:hover {
    color: rgb(37.4086538462, 95.3317307692, 213.5913461538);
}

.special-cars__link .bi {
    font-size: 18px;
}

.special-cars__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

@media (min-width: 576px) {
    .special-cars__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .special-cars__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .special-cars__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.latest-arrivals {
    padding: 0 0 20px;
    background: #f1f3f5;
}

.latest-arrivals__title {
    margin: 0 0 40px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.latest-arrivals__slider {
    overflow: hidden;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
}

.latest-arrivals__slide {
    height: auto;
    min-width: 0;
    box-sizing: border-box;
}

.latest-arrivals__slide .special-car-card {
    width: 100%;
    max-width: 100%;
}

.latest-arrivals__controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 44px;
}

.latest-arrivals__controls-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.latest-arrivals__controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.latest-arrivals__pagination {
    position: static !important;
    inset: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: auto !important;
    transform: none !important;
}

.latest-arrivals__pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
    margin: 0 !important;
}

.latest-arrivals__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 1;
    background: #ced4da;
    transition: background-color 0.2s ease;
}

.latest-arrivals__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4e7ee0;
}

.latest-arrivals__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 40px;
    padding: 0 20px;
    border: 0;
    border-radius: 15px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.latest-arrivals__nav-btn:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.latest-arrivals__nav-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .latest-arrivals {
        padding: 32px 0 40px;
    }

    .latest-arrivals__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

.news-section {
    padding: 0 0 var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.news-section:not(:has(.site-breadcrumb)) {
    padding-top: 16px;
}

@media (min-width: 992px) {
    .news-section:not(:has(.site-breadcrumb)) {
        padding-top: 24px;
    }
}

.news-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 40px;
}

.news-section__title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.news-section__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4e7ee0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.news-section__link:hover {
    color: rgb(43.2807692308, 100.6961538462, 217.9192307692);
}

.news-section__filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .news-section__filters {
        grid-template-columns: minmax(0, 477px) minmax(0, 477px) 360px;
        align-items: center;
    }
}

.news-section__control {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 20px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: #212529;
    font-size: 16px;
    appearance: none;
    transition: color 0.2s ease, outline-color 0.2s ease;
}

.news-section__control:hover {
    color: #4e7ee0;
}

.news-section__control:focus {
    outline: 2px solid #4e7ee0;
    outline-offset: 0;
    color: #4e7ee0;
}

@media (min-width: 992px) {
    .news-section__control {
        width: 477px;
    }
}

.news-section__apply {
    padding: 18px 40px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.news-section__apply:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
}

.news-section__slider {
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    max-width: 100%;
}

.news-section__slider .swiper-wrapper {
    align-items: stretch;
    max-width: 100%;
}

.news-section__slide {
    display: flex;
    height: auto;
    min-width: 0;
    box-sizing: border-box;
}

.news-section__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 20px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}
.news-bg-grey{
    background: #f1f3f5 !important;
    padding: 1rem;
}
.news-section__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 318px;
    object-fit: cover;
    object-position: center;
}

.news-section__card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 160px;
    padding: 14px 12px 10px;
}

.news-section__card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
    color: #212529;
}

.news-section__date {
    margin: auto 0 0;
    font-size: 18px;
    color: #adb5bd;
}

.news-section__controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 44px;
}

.news-section__controls-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.news-section__controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.news-section__pagination {
    position: static !important;
    inset: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: auto !important;
    transform: none !important;
}

.news-section__pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
    margin: 0 !important;
}

.news-section__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 1;
    background: #ced4da;
    transition: background-color 0.2s ease;
}

.news-section__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4e7ee0;
}

.news-section__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 40px;
    padding: 0 20px;
    border: 0;
    border-radius: 15px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.news-section__nav-btn:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.news-section__nav-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .news-section {
        padding: 32px 0 40px;
    }

    .news-section__title {
        font-size: 36px;
    }

    .news-section__card {
        min-height: 340px;
    }

    .news-section__card-title {
        font-size: 22px;
    }
}

.our-services {
    padding: 16px 0 20px;
}

@media (min-width: 992px) {
    .our-services {
        padding: 30px 0 30px;
    }
}

.our-services {
    background: #f1f3f5;
}

.our-services__title {
    margin: 0 0 40px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.our-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .our-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .our-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}

.our-services__card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    border-radius: 40px;
    background: #fff;
    overflow: hidden;
}

.our-services__card--primary {
    background: #4e7ee0;
}

.our-services__card:hover {
    background: #4e7ee0;
    color: #fff;
}

.our-services__card:hover .our-services__card-title,
.our-services__card:hover .our-services__card-text {
    color: #fff;
}

.our-services__card:hover .our-services__btn {
    background: #fff;
    color: #4e7ee0;
}

.our-services__card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    padding: 20px;
}

@media (min-width: 992px) {
    .our-services__card-content {
        padding: 40px;
    }
}

.our-services__card-title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 500;
    color: #212529;
}

.our-services__card-text {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.45;
    color: #6c757d;
    flex: 1;
}

.our-services__card--primary .our-services__card-title,
.our-services__card--primary .our-services__card-text {
    color: #fff;
}

.our-services__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.our-services__btn--primary {
    background: #4e7ee0;
    color: #fff;
}

.our-services__btn--primary:hover {
    background: rgb(37.4086538462, 95.3317307692, 213.5913461538);
    color: #fff;
}

.our-services__btn--light {
    background: #fff;
    color: #4e7ee0;
}

.our-services__btn--light:hover {
    background: #cad9f6;
    color: rgb(37.4086538462, 95.3317307692, 213.5913461538);
}

@media (max-width: 991px) {
    .our-services {
        padding: 32px 0 40px;
    }

    .our-services__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

.about-section {
    padding: 16px 0 20px;
}

@media (min-width: 992px) {
    .about-section {
        padding: 20px 0 30px;
    }
}

.about-section {
    background: #f1f3f5;
}

.about-section__card {
    padding: 30px;
    border-radius: 20px;
    background: #fff;
}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-section__grid {
        grid-template-columns: minmax(0, 50%) minmax(0, 50%);
        gap: 40px;
    }
}

.about-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-section__title {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.about-section__text {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.6;
    color: #6c757d;
}

.about-section__text:last-of-type {
    margin-bottom: 24px;
}

.about-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.about-section__btn:hover {
    background: rgb(37.4086538462, 95.3317307692, 213.5913461538);
    color: #fff;
}

.about-section__media {
    overflow: hidden;
    width: 100%;
    height: 200px;
    border-radius: 16px;
}

@media (min-width: 576px) {
    .about-section__media {
        height: 280px;
        border-radius: 20px;
    }
}

@media (min-width: 992px) {
    .about-section__media {
        height: 442px;
    }
}

.about-section__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .about-section {
        padding: 8px 0 40px;
    }

    .about-section__card {
        padding: 24px 20px;
    }

    .about-section__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-section__grid {
        gap: 24px;
    }

    .about-section__media {
        order: -1;
    }
}

.catalog-car-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.catalog-car-card__media {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    text-decoration: none;
}

.catalog-car-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.catalog-car-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #ec2a2d;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.catalog-car-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.catalog-car-card__title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
    text-decoration: none;
}

.catalog-car-card__title:hover {
    color: #4e7ee0;
}

.catalog-car-card__meta, .catalog-car-card__specs {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.45;
    color: #6c757d;
}

.catalog-car-card__specs {
    margin-bottom: 16px;
}

.catalog-car-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.catalog-car-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.catalog-car-card__price {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #ec2a2d;
    letter-spacing: -0.5px;
}

.catalog-car-card__price.is-default {
    color: #212529;
}

.catalog-car-card__monthly {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #6c757d;
}

.catalog-car-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px 20px;
    border: 0;
    border-radius: 10px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.catalog-car-card__btn:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

@media (max-width: 575px) {
    .catalog-car-card__footer {
        gap: 12px;
    }

    .catalog-car-card__price {
        font-size: 22px;
    }

    .catalog-car-card__btn {
        height: 40px;
        padding: 0 14px;
        font-size: 16px;
    }
}

.compact-car-card__media-wrap,
.catalog-car-card__media-wrap {
    position: relative;
}

.car-card-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.car-card-favorite__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f1f3f5;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.car-card-favorite__btn > i{
    line-height: 0;
}
.car-card-favorite__btn:hover {
    color: #ec2a2d;
    transform: scale(1.05);
}

.car-card-favorite__btn.is-active {
    color: #ec2a2d;
}

.car-card-favorite--detail {
    position: static;
    margin-top: 12px;
}

.car-card-favorite--detail .car-card-favorite__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
}

.car-card-favorite--detail .car-card-favorite__btn::after {
    content: "В избранное";
}

.car-card-favorite--detail .car-card-favorite__btn.is-active::after {
    content: "В избранном";
}

.compact-car-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.compact-car-card__media {
    position: relative;
    display: block;
    padding: 14px 14px 0;
    text-decoration: none;
}

@media (min-width: 992px) {
    .compact-car-card__media {
        height: 240px;
    }
}

.compact-car-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.compact-car-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 10px;
    background: #4e7ee0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 992px) {
    .compact-car-card__badge {
        font-size: 18px;
    }
}

.compact-car-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 12px 12px;
}

.compact-car-card__title {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

@media (min-width: 992px) {
    .compact-car-card__title {
        font-size: 26px;
    }
}

.compact-car-card__title:hover {
    color: #4e7ee0;
}

.compact-car-card__price {
    margin: 0 0 30px 0;
    color: #212529;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

@media (min-width: 992px) {
    .compact-car-card__price {
        font-size: 24px;
    }
}

.compact-car-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    border: 1px solid #c7cdd8;
    border-radius: 20px;
    color: #212529;
    font-weight: 500;
    padding: 8px 16px;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

@media (min-width: 992px) {
    .compact-car-card__btn {
        font-size: 18px;
        padding: 18px 40px;
    }
}

.compact-car-card__btn:hover {
    border-color: #4e7ee0;
    background: #4e7ee0;
    color: #fff;
}

.catalog-index {
    padding-bottom: var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.catalog-index__title {
    margin: 0 0 24px;
    color: #212529;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.catalog-index__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .catalog-index__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (min-width: 992px) {
    .catalog-index__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .catalog-index__title {
        margin-bottom: 18px;
        font-size: 26px;
    }
}

.car-detail-page {
    padding: 0 0 var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.car-detail-page__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.car-detail-page__media, .car-detail-page__info {
    border-radius: 40px;
    background: #fff;
}

.car-detail-page__media {
    padding: 12px;
}

.car-detail-page__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.car-detail-page__colors-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    margin-top: 12px;
}

.car-detail-page__color-label {
    width: 100%;
    margin: 20px 0 0;
    color: #212529;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.car-detail-page__colors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.car-detail-page__color-btn {
    position: relative;
    width: 40px;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.car-detail-page__color-btn::after {
    content: "\f26e";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "bootstrap-icons";
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.car-detail-page__color-btn.is-active {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.car-detail-page__color-btn.is-active::after {
    opacity: 1;
}

.car-detail-page__info {
    padding: 14px;
}

.car-detail-page__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
}

.car-detail-page__title {
    margin: 0;
    color: #212529;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
}

.car-detail-page__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 10px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.car-detail-page__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.car-detail-page__benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 72px;
    padding: 12px;
    border-radius: 14px;
    background: #eceef2;
    color: #212529;
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
}

.car-detail-page__benefit-icon {
    flex-shrink: 0;
    color: #4e7ee0;
    font-size: 35px;
    line-height: 1;
}

.car-detail-page__price-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.car-detail-page__price {
    margin: 0;
    color: #111827;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.car-detail-page__credit {
    margin: 0;
    color: #1b1c1e;
    font-size: 20px;
    line-height: 1.3;
}

.car-detail-page__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-detail-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.car-detail-page__btn--primary {
    border: 0;
    background: #4e7ee0;
    color: #fff;
}

.car-detail-page__btn--primary:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.car-detail-page__btn--outline {
    border: 1px solid #c7d2fe;
    background: #fff;
    color: #4e7ee0;
}

.car-detail-page__btn--outline:hover {
    border-color: #4e7ee0;
    background: #cad9f6;
}

@media (min-width: 768px) {
    .car-detail-page__benefits {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .car-detail-page__card {
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
        gap: 10px;
    }

    .car-detail-page__media {
        padding: 40px;
    }

    .car-detail-page__image {
        max-height: 320px;
    }

    .car-detail-page__info {
        padding: 40px;
    }

    .car-detail-page__title {
        font-size: 36px;
    }

    .car-detail-page__price-row {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }
}

.car-detail-page__promo {
    margin-top: 16px;
}

@media (min-width: 992px) {
    .car-detail-page__promo {
        margin-top: 30px !important;
    }
}

.car-complectations {
    margin-top: 16px;
}

.car-complectations__card {
    padding: 16px;
    border-radius: 40px;
    background: #fff;
}

.car-complectations__title {
    margin: 0 0 16px;
    color: #212529;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.car-complectations__engine-block + .car-complectations__engine-block {
    margin-top: 16px;
}

.car-complectations__engine {
    margin: 0 0 10px;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.car-complectations__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-complectations__item {
    border-radius: 20px;
    background: #f7f8fa;
    overflow: hidden;
}

.car-complectations__summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    list-style: none;
    cursor: pointer;
}

.car-complectations__summary::-webkit-details-marker {
    display: none;
}

.car-complectations__summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.car-complectations__summary-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.car-complectations__label {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.2;
}

.car-complectations__value {
    color: #111827;
    font-size: 20px;
    line-height: 1.3;
}

.car-complectations__value--name {
    color: #4e7ee0;
    font-weight: 600;
}

.car-complectations__value--old {
    color: #6b7280;
    text-decoration: line-through;
}

.car-complectations__summary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}

.car-complectations__content {
    padding: 12px;
    background: white;
}

.car-complectations__features {
    margin: 0;
    padding: 0 0 0 16px;
    color: #374151;
    font-size: 18px;
    line-height: 1.4;
    columns: 1;
}

@media (min-width: 768px) {
    .car-complectations__summary {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .car-complectations__summary-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        flex: 1;
    }

    .car-complectations__summary-btn {
        min-width: 180px;
        margin-left: 12px;
    }

    .car-complectations__features {
        columns: 2;
        column-gap: 24px;
    }
}

@media (min-width: 992px) {
    .car-complectations {
        margin-top: 30px;
    }

    .car-complectations__card {
        padding: 40px;
    }

    .car-complectations__title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .car-complectations__engine {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.car-detail-gallery {
    margin-top: 16px;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .car-detail-gallery {
        margin-top: 30px !important;
        margin-bottom: 60px !important;
    }
}

.car-detail-gallery__card {
    padding: 14px;
    border-radius: 40px;
    background: #fff;
    overflow: hidden;
}

.car-detail-gallery__title {
    margin: 0 0 12px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.car-detail-gallery__slider {
    overflow: hidden;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
}

.car-detail-gallery__slide {
    height: auto;
    min-width: 0;
    box-sizing: border-box;
}

.car-detail-gallery__media {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.car-detail-gallery__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.car-detail-gallery__controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 44px;
}

.car-detail-gallery__controls-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.car-detail-gallery__controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.car-detail-gallery__pagination {
    position: static !important;
    inset: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: auto !important;
    transform: none !important;
}

.car-detail-gallery__pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
    margin: 0 !important;
}

.car-detail-gallery__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 1;
    background: #ced4da;
    transition: background-color 0.2s ease;
}

.car-detail-gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4e7ee0;
}

.car-detail-gallery__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 15px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.car-detail-gallery__nav-btn:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.car-detail-gallery__nav-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (min-width: 992px) {
    .car-detail-gallery__card {
        padding: 40px;
    }

    .car-detail-gallery__title {
        margin-bottom: 30px;
        font-size: 26px;
    }

    .car-detail-gallery__image {
        height: 280px;
    }
}

.promo-offer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 40px;
    background: #cad9f6;
}

.promo-offer__deadline {
    margin: 0 0 4px;
    color: #4e7ee0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.promo-offer__title {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.promo-offer__subtitle {
    margin: 2px 0 0;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.promo-offer__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}

.promo-offer__benefit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.promo-offer__timer-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.promo-offer__timer {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.promo-offer__timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 56px;
    padding: 4px 0;
    border-left: 1px solid #c9cfdf;
}

.promo-offer__timer-item:first-child {
    border-left: 0;
    padding-left: 0;
}

.promo-offer__timer-item:last-child {
    padding-right: 0;
}

.promo-offer__timer-value {
    color: #111827;
    font-size: 28px;
    line-height: 1;
}

.promo-offer__timer-label {
    margin-top: 4px;
    color: #111827;
    font-size: 11px;
    line-height: 1.2;
}

.promo-offer__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.promo-offer__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    line-height: 1.2;
}

.promo-offer__input::placeholder {
    color: #9ca3af;
}

.promo-offer__input:focus {
    outline: 0;
    border-color: rgba(78, 126, 224, 0.4);
}

.promo-offer__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.promo-offer__submit:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
}

.promo-offer__agree {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.2;
}

.promo-offer__agree input {
    margin: 0;
    accent-color: #4e7ee0;
}

@media (min-width: 992px) {
    .promo-offer {
        grid-template-columns: minmax(0, 45%) minmax(0, 55%);
        gap: 80px;
        padding: 40px;
    }

    .promo-offer__deadline {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .promo-offer__title, .promo-offer__subtitle {
        font-size: 32px;
        line-height: 1.2;
    }

    .promo-offer__subtitle {
        margin-top: 4px;
    }

    .promo-offer__benefits {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 40px;
    }

    .promo-offer__benefit {
        padding: 30px 40px;
        border-radius: 22px;
        font-size: 18px;
    }

    .promo-offer__timer-title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .promo-offer__timer {
        padding: 10px 0;
    }

    .promo-offer__timer-item {
        min-height: 84px;
        padding: 6px 0;
    }

    .promo-offer__timer-value {
        font-size: 130px;
    }

    .promo-offer__timer-label {
        margin-top: 6px;
        font-size: 20px;
    }

    .promo-offer__form {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 300px);
        gap: 10px;
    }

    .promo-offer__input, .promo-offer__submit {
        padding: 18px 20px;
        border-radius: 20px;
        font-size: 18px;
    }

    .promo-offer__agree {
        margin-top: 8px;
        font-size: 14px;
    }
}

.used-detail-page {
    padding: 0 0 var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.used-detail-page__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-width: 0;
    border-radius: 20px;
}

.used-detail-page__info {
    min-width: 0;
    border-radius: 40px;
    background: #fff;
}

.used-detail-page__gallery {
    overflow: hidden;
}

.used-detail-page__slider {
    position: relative;
    margin-bottom: 8px;
    border-radius: 14px;
    overflow: hidden;
}

.used-detail-page__main-slide {
    background: #fff;
}

.used-detail-page__main-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.used-detail-page__thumbs-wrap {
    position: relative;
}

.used-detail-page__thumbs {
    overflow: hidden;
}

.used-detail-page__thumb-slide {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
}

.used-detail-page__thumb-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.used-detail-page__thumb-image {
    display: block;
    width: 100%;
    height: 75px;
    object-fit: cover;
    object-position: center;
}

.used-detail-page__main-nav {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.used-detail-page__main-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 0;
    border-radius: 15px;
    background: #4e7ee0;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

@media (min-width: 992px) {
    .used-detail-page__main-nav-btn {
        padding: 20px 40px;
    }
}

.used-detail-page__main-nav-btn:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
}

.used-detail-page__thumb-nav {
    position: absolute;
    top: -42px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
    border: 0;
    border-radius: 10px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.used-detail-page__thumb-nav[data-used-detail-prev] {
    right: 38px;
}

.used-detail-page__thumb-nav[data-used-detail-next] {
    right: 0;
}

.used-detail-page__thumb-nav:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
}

.used-detail-page__info {
    padding: 20px;
}

@media (min-width: 992px) {
    .used-detail-page__info {
        padding: 40px;
    }
}

.used-detail-page__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
}

.used-detail-page__title {
    margin: 0;
    min-width: 0;
    color: #212529;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.used-detail-page__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 10px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.used-detail-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.used-detail-page__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 10px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.used-detail-page__specs {
    margin: 0 0 12px;
}

.used-detail-page__specs div {
    display: grid;
    grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px dotted #d7dbe4;
}

.used-detail-page__specs dt,
.used-detail-page__specs dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.used-detail-page__specs dt {
    color: #9ca3af;
}

.used-detail-page__specs dd {
    color: #212529;
    text-align: right;
    word-break: break-word;
}

.used-detail-page__price-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.used-detail-page__price {
    margin: 0;
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.used-detail-page__credit {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
}

.used-detail-page__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

@media (min-width: 992px) {
    .used-detail-page__actions {
        flex-direction: row;
    }

    .used-detail-page__actions .used-detail-page__btn {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
    }
}

.used-detail-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.used-detail-page__btn--primary {
    border: 0;
    background: #4e7ee0;
    color: #fff;
}

.used-detail-page__btn--primary:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.used-detail-page__btn--outline {
    border: 1px solid #c7d2fe;
    background: #fff;
    color: #4e7ee0;
}

.used-detail-page__btn--outline:hover {
    border-color: #4e7ee0;
    background: #cad9f6;
}

.used-detail-page__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.used-detail-page__benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 72px;
    padding: 12px;
    border-radius: 14px;
    background: #eceef2;
    color: #212529;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
}

.used-detail-page__benefit-icon {
    flex-shrink: 0;
    color: #4e7ee0;
    font-size: 24px;
}

.used-detail-page__benefit-icon-image {
    display: block;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

@media (min-width: 576px) {
    .used-detail-page__main-image {
        height: 240px;
    }

    .used-detail-page__thumb-image {
        height: 64px;
    }

    .used-detail-page__title {
        font-size: 30px;
    }

    .used-detail-page__specs dt,
    .used-detail-page__specs dd {
        font-size: 15px;
    }

    .used-detail-page__price {
        font-size: 34px;
    }

    .used-detail-page__credit {
        font-size: 15px;
    }

    .used-detail-page__btn {
        font-size: 15px;
    }

    .used-detail-page__benefit {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .used-detail-page__benefits {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .used-detail-page__card {
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
        gap: 10px;
    }

    .used-detail-page__gallery {
        border-radius: 40px;
    }

    .used-detail-page__main-image {
        height: 540px;
    }

    .used-detail-page__main-nav {
        left: 16px;
        bottom: 16px;
    }

    .used-detail-page__thumb-image {
        height: 130px;
    }

    .used-detail-page__info {
        padding: 40px;
    }

    .used-detail-page__head {
        gap: 10px;
        margin-bottom: 10px;
    }

    .used-detail-page__title {
        font-size: 40px;
    }

    .used-detail-page__specs {
        margin-bottom: 14px;
    }

    .used-detail-page__specs div {
        grid-template-columns: minmax(0, 120px) 1fr;
        gap: 10px;
        padding: 4px 0;
    }

    .used-detail-page__specs dt,
    .used-detail-page__specs dd {
        font-size: 18px;
    }

    .used-detail-page__price {
        font-size: 42px;
    }

    .used-detail-page__credit {
        font-size: 16px;
    }

    .used-detail-page__btn {
        padding: 18px 40px;
        font-size: 20px;
    }

    .used-detail-page__benefit {
        min-height: 82px;
        padding: 20px 10px;
        font-size: 20px;
    }

    .used-detail-page__price-row {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }
}

.used-complectation {
    margin-top: 16px;
    padding-bottom: 24px;
}

.used-complectation__card {
    padding: 20px;
    border-radius: 40px;
    background: #fff;
}

@media (min-width: 992px) {
    .used-complectation__card {
        padding: 40px;
    }
}

.used-complectation__title {
    margin: 0 0 14px;
    color: #111827;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.used-complectation__body {
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.used-complectation__body.is-collapsed {
    max-height: 200px;
}

.used-complectation__body:not(.is-collapsed) {
    max-height: none;
}

.used-complectation__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.used-complectation__col-title {
    margin: 0 0 8px;
    color: #9ca3af;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.used-complectation__list {
    margin: 0;
    padding: 0 0 0 16px;
    color: #111827;
    font-size: 20px;
    line-height: 1.4;
}

.used-complectation__list li {
    margin-bottom: 4px;
}

.used-complectation__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 25px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.used-complectation__toggle .bi {
    transition: transform 0.2s ease;
}

.used-complectation__toggle[aria-expanded=true] .bi {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .used-complectation {
        margin-top: 30px;
        padding-bottom: 32px;
    }

    .used-complectation__card {
        padding: 40px;
    }

    .used-complectation__title {
        margin-bottom: 16px;
        font-size: 32px;
    }

    .used-complectation__body.is-collapsed {
        max-height: 220px;
    }

    .used-complectation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

.credit-page,
.trade-in-page {
    padding: 0 0 var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.credit-page__grid,
.trade-in-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.credit-page__form-card,
.trade-in-page__form-card {
    padding: 20px;
    border-radius: 40px;
    background: #fff;
}

.credit-page__title,
.trade-in-page__title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.credit-page__subtitle,
.trade-in-page__subtitle {
    margin: 0 0 20px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.4;
}

.credit-page__form,
.trade-in-page__form {
    display: grid;
    gap: 10px;
    margin-top: 40px;
}

.credit-page__row,
.trade-in-page__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.credit-page__field,
.trade-in-page__field {
    min-width: 0;
}

.credit-page__field--full,
.trade-in-page__field--full {
    width: 100%;
}

.credit-page__control,
.trade-in-page__control {
    width: 100%;
    padding: 18px 44px 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #f1f3f5;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.credit-page__control:focus,
.trade-in-page__control:focus {
    outline: 2px solid rgba(78, 126, 224, 0.35);
    outline-offset: 0;
}

.credit-page__control:invalid,
.trade-in-page__control:invalid {
    color: #9ca3af;
}

.credit-page__control--input,
.trade-in-page__control--input {
    padding: 18px 20px;
    appearance: none;
    background-image: none;
}

.credit-page__control--input::placeholder,
.trade-in-page__control--input::placeholder {
    color: #9ca3af;
}

.credit-page select.credit-page__control,
.credit-page select.trade-in-page__control,
.trade-in-page select.credit-page__control,
.trade-in-page select.trade-in-page__control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.credit-page__submit,
.trade-in-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 40px;
    padding: 0 28px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 0.2s ease;
}

.credit-page__submit:hover,
.trade-in-page__submit:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.credit-page__agree,
.trade-in-page__agree {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.35;
}

.credit-page__agree input,
.trade-in-page__agree input {
    margin-top: 2px;
    accent-color: #4e7ee0;
}

.credit-page__media,
.trade-in-page__media {
    border-radius: 40px;
    overflow: hidden;
    background: #e9ecef;
}

.credit-page__image,
.trade-in-page__image {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .credit-page__row,
    .trade-in-page__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .credit-page__image,
    .trade-in-page__image {
        height: 100%;
        min-height: 420px;
    }
}

@media (min-width: 992px) {
    .credit-page__grid,
    .trade-in-page__grid {
        grid-template-columns: minmax(0, 50%) minmax(0, 50%);
        gap: 10px;
        align-items: stretch;
    }

    .credit-page__form-card,
    .trade-in-page__form-card {
        padding: 40px;
    }

    .credit-page__title,
    .trade-in-page__title {
        margin-bottom: 10px;
        font-size: 50px;
    }

    .credit-page__subtitle,
    .trade-in-page__subtitle {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .credit-page__form,
    .trade-in-page__form {
        gap: 10px;
    }

    .credit-page__row,
    .trade-in-page__row {
        gap: 10px;
    }

    .credit-page__control,
    .trade-in-page__control {
        padding: 18px 20px;
        font-size: 18px;
    }

    .credit-page__submit,
    .trade-in-page__submit {
        padding: 18px 20px;
        font-size: 18px;
    }

    .credit-page__image,
    .trade-in-page__image {
        min-height: 100%;
    }
}

.buyback-page {
    padding: 16px 0 32px;
    background: #f1f3f5;
}

.buyback-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.buyback-page__form-card {
    padding: 16px;
    border-radius: 16px;
    background: #fff;
}

.buyback-page__title {
    margin: 0 0 6px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.buyback-page__subtitle {
    margin: 0 0 14px;
    color: #1f2430;
    font-size: 13px;
    line-height: 1.35;
}

.buyback-page__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buyback-page__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.buyback-page__row--plate {
    align-items: center;
}

.buyback-page__control {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #f2f2f4;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.buyback-page__control:focus {
    outline: 2px solid rgba(78, 126, 224, 0.35);
    outline-offset: 0;
}

.buyback-page__control::placeholder {
    color: #a0a7b1;
}

.buyback-page__switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #111827;
    font-size: 12px;
    line-height: 1.2;
    cursor: pointer;
}

.buyback-page__switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.buyback-page__switch-toggle {
    position: relative;
    flex-shrink: 0;
    width: 32px;
    height: 18px;
    border-radius: 999px;
    background: #0a1023;
    transition: background-color 0.2s ease;
}

.buyback-page__switch-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f8f8fb;
    transition: transform 0.2s ease;
}

.buyback-page__switch input:checked + .buyback-page__switch-toggle {
    background: #5a7fdb;
}

.buyback-page__switch input:checked + .buyback-page__switch-toggle::after {
    transform: translateX(14px);
}

.buyback-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
    padding: 10px 16px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 0.2s ease;
}

.buyback-page__submit:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.buyback-page__agree {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    margin: 2px 0 0;
    color: #a7adb8;
    font-size: 11px;
    line-height: 1.3;
}

.buyback-page__agree input {
    margin-top: 1px;
    accent-color: #4e7ee0;
}

.buyback-page__media {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: #e9ecef;
}

.buyback-page__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.buyback-page__brands {
    padding: 0;
}

.buyback-page__brands-title {
    margin: 0 0 16px;
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.buyback-page__brands-body {
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.buyback-page__brands-body.is-collapsed {
    max-height: 112px;
}

.buyback-page__brands-body:not(.is-collapsed) {
    max-height: none;
}

.buyback-page__brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 6px 8px;
}

.buyback-page__brands-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.buyback-page__brands-toggle .bi {
    transition: transform 0.2s ease;
}

.buyback-page__brands-toggle[aria-expanded=true] .bi {
    transform: rotate(180deg);
}

.buyback-page__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff;
    color: #6f7b88;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

@media (min-width: 576px) {
    .buyback-page__form-card {
        padding: 20px;
        border-radius: 20px;
    }

    .buyback-page__title {
        font-size: 28px;
    }

    .buyback-page__subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .buyback-page__media {
        height: 260px;
    }

    .buyback-page__brands-title {
        font-size: 26px;
    }

    .buyback-page__brand {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .buyback-page__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .buyback-page__row--plate {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .buyback-page__switch {
        font-size: 13px;
        white-space: nowrap;
    }
}

@media (min-width: 992px) {
    .buyback-page {
        padding: 20px 0 40px;
    }

    .buyback-page__grid {
        grid-template-columns: minmax(0, 42%) minmax(0, 58%);
        gap: 12px;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .buyback-page__form-card {
        min-height: 450px;
        padding: 24px;
        border-radius: 40px;
    }

    .buyback-page__title {
        margin-bottom: 8px;
        font-size: 50px;
    }

    .buyback-page__subtitle {
        margin-bottom: 40px;
        font-size: 24px;
    }

    .buyback-page__form {
        gap: 10px;
    }

    .buyback-page__control {
        padding: 18px 20px;
        border-radius: 20px;
        font-size: 18px;
    }

    .buyback-page__switch {
        font-size: 18px;
        gap: 10px;
    }

    .buyback-page__switch-toggle {
        width: 42px;
        height: 24px;
    }

    .buyback-page__switch-toggle::after {
        width: 20px;
        height: 20px;
    }

    .buyback-page__switch input:checked + .buyback-page__switch-toggle::after {
        transform: translateX(18px);
    }

    .buyback-page__submit {
        margin-top: 40px;
        padding: 18px 40px;
        border-radius: 20px;
        font-size: 18px;
    }

    .buyback-page__agree {
        font-size: 12px;
    }

    .buyback-page__media {
        height: 550px;
        border-radius: 20px;
    }

    .buyback-page__brands-title {
        margin-bottom: 25px;
        font-size: 34px;
    }

    .buyback-page__brands-body {
        max-height: none;
        overflow: visible;
    }

    .buyback-page__brands-body.is-collapsed {
        max-height: none;
    }

    .buyback-page__brands-toggle {
        display: none;
    }

    .buyback-page__brands-list {
        grid-template-columns: repeat(auto-fill, 140px);
        gap: 10px;
    }

    .buyback-page__brand {
        width: 140px;
        padding: 10px 14px;
        font-size: 20px;
    }
    .used-catalog-sidebar__control{
        padding: 12px 20px;
    }
}

.contacts-page {
    padding: 0 0 var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.contacts-page__title {
    margin: 0 0 12px;
    color: #111827;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.contacts-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contacts-page__card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-radius: 40px;
    background: #fff;
    justify-content: center;
}

.contacts-page__label {
    margin: 10px 0 4px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.contacts-page__text {
    margin: 0 0 14px;
    color: #2b3442;
    font-size: 24px;
    line-height: 1.4;
}

.contacts-page__phone {
    margin: 0 0 16px;
    color: #111827;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.contacts-page__route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.contacts-page__route:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.contacts-page__map-wrap {
    border-radius: 40px;
    overflow: hidden;
    background: #dfe5f0;
}

.contacts-page__map {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

@media (min-width: 992px) {
    .contacts-page__title {
        margin-bottom: 40px;
        font-size: 40px;
    }

    .contacts-page__grid {
        grid-template-columns: minmax(0, 35%) minmax(0, 65%);
        gap: 12px;
        align-items: stretch;
    }

    .contacts-page__card {
        padding: 40px;
    }

    .contacts-page__map {
        height: 500px;
    }
}

.steps-section {
    padding: 24px 0 32px;
    background: #f1f3f5;
}

.steps-section__title {
    margin: 0 0 20px;
    color: #111827;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.steps-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.steps-section__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 140px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
}

.steps-section__card--highlighted {
    background: #4e7ee0;
}

.steps-section__card--highlighted .steps-section__card-title,
.steps-section__card--highlighted .steps-section__card-text {
    color: #fff;
}

.steps-section__card:hover {
    background: #4e7ee0;
    cursor: pointer;
}

.steps-section__card:hover .steps-section__card-title,
.steps-section__card:hover .steps-section__card-text {
    color: #fff;
}

.steps-section__card-title {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.steps-section__card-text {
    margin: 0;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.45;
}

@media (min-width: 992px) {
    .steps-section {
        padding: 32px 0 40px;
    }

    .steps-section__title {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .steps-section__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .steps-section__card {
        padding: 40px;
        border-radius: 40px;
    }

    .steps-section__card--wide {
        grid-column: span 2;
    }

    .steps-section__card-title {
        font-size: 24px;
    }

    .steps-section__card-text {
        font-size: 18px;
    }
}

.steps-section-compact {
    padding: 16px 0 24px;
    background: #f1f3f5;
}

.steps-section-compact__title {
    margin: 0 0 12px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.steps-section-compact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.steps-section-compact__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 64px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
}

.steps-section-compact__card--highlighted {
    background: #cad9f6;
}

.steps-section-compact__card-title {
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.steps-section-compact__card-text {
    margin: 0;
    color: #000000;
    font-size: 20px;
    line-height: 1.35;
}

@media (min-width: 992px) {
    .steps-section-compact {
        padding: 20px 0 28px;
    }

    .steps-section-compact__title {
        margin-bottom: 25px;
        font-size: 32px;
    }

    .steps-section-compact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .steps-section-compact__card {
        min-height: 50px;
        padding: 18px 20px;
        border-radius: 16px;
    }

    .steps-section-compact__card-title {
        font-size: 26px;
    }

    .steps-section-compact__card-text {
        font-size: 20px;
    }
}

.partner-banks {
    padding: 0 0 32px;
    background: #f1f3f5;
}

.partner-banks__title {
    margin: 0 0 20px;
    color: #111827;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.partner-banks__card {
    padding: 24px 16px;
    border-radius: 20px;
    background: #fff;
}

.partner-banks__grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    row-gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.partner-banks__item {
    display: flex;
    align-items: center;
    min-height: 56px;
}

.partner-banks__logo {
    display: block;
    width: auto;
    max-width: 140px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 992px) {
    .partner-banks {
        padding-bottom: 40px;
    }

    .partner-banks__title {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .partner-banks__card {
        padding: 80px;
        border-radius: 40px;
    }

    .partner-banks__grid {
        grid-template-columns: repeat(4, auto);
        row-gap: 32px;
    }

    .partner-banks__item {
        min-height: 64px;
    }

    .partner-banks__logo {
        max-width: 160px;
        height: 48px;
    }
}

.faq-section {
    background: #f1f3f5;
}

.faq-section__title {
    margin: 0 0 20px;
    color: #111827;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section__item {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.faq-section__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-section__trigger:hover {
    color: #4e7ee0;
}

.faq-section__trigger:focus-visible {
    outline: 2px solid #4e7ee0;
    outline-offset: -2px;
}

.faq-section__question {
    flex: 1;
    min-width: 0;
}

.faq-section__icon {
    flex-shrink: 0;
    color: #4e7ee0;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-section__item--open .faq-section__icon {
    transform: rotate(180deg);
}

.faq-section__panel {
    padding: 0 24px 20px;
}

.faq-section__answer {
    margin: 0;
    color: #6c757d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .faq-section__title {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .faq-section__list {
        gap: 10px;
    }

    .faq-section__trigger {
        padding: 20px 40px;
        font-size: 24px;
    }

    .faq-section__panel {
        padding: 0 40px 20px;
    }

    .faq-section__answer {
        font-size: 20px;
    }
}

.used-catalog {
    padding-bottom: var(--site-page-padding-bottom);
    background: #f1f3f5;
}

.used-catalog__head {
    margin-bottom: 20px;
}

.used-catalog__controls {
    margin-bottom: 24px;
}

.used-catalog__title {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.used-catalog__toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

.used-catalog__filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(78, 126, 224, 0.25);
    border-radius: 20px;
    background: #fff;
    color: #4e7ee0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.used-catalog__filter-btn:hover {
    background: rgba(78, 126, 224, 0.08);
    color: #4e7ee0;
    border-color: rgba(78, 126, 224, 0.35);
}

.used-catalog__filter-btn .bi {
    font-size: 18px;
    line-height: 1;
}

.used-catalog__tabs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 300px;
    max-width: 100%;
    padding: 4px;
    border-radius: 20px;
    background: #fff;
}

.used-catalog__tabs--controls {
    width: 100%;
}

@media (min-width: 992px) {
    .used-catalog__tabs--controls {
        width: 280px;
        height: 48px;
        gap: 4px;
        padding: 4px;
        border-radius: 20px;
    }

    .used-catalog__tabs--controls .used-catalog__tab {
        height: 40px;
        padding: 0 10px;
        border-radius: 16px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
    }

    .used-catalog__tabs--specials {
        width: 320px;
    }

    .used-catalog__tabs--specials .used-catalog__tab {
        font-size: 13px;
    }
}

.used-catalog__tabs--controls .used-catalog__tab {
    padding: 12px 0;
    font-size: 15px;
}

.used-catalog__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 18px 0;
    border-radius: 12px;
    color: #212529;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.used-catalog__tab:hover {
    color: #4e7ee0;
}

.used-catalog__tab.is-active {
    background: #4e7ee0;
    color: #fff;
}

.used-catalog__tab.is-active:hover {
    color: #fff;
}

.favorite-page__tabs-wrap {
    margin-bottom: 24px;
}

.favorite-page__tabs {
    width: 100%;
    max-width: 720px;
}

.favorite-page__tabs .used-catalog__tab {
    border: none;
    background: transparent;
    cursor: pointer;
}

.favorite-page__tabs .used-catalog__tab.is-active {
    background: #4e7ee0;
    color: #fff;
}

.favorite-page__tabs .used-catalog__tab.is-active:hover {
    background: #4e7ee0;
    color: #fff;
}

.favorite-page__panel {
    margin-top: 0;
}

.favorite-page__panel--single {
    margin-top: 0;
}

.favorite-page__panel[hidden] {
    display: none !important;
}

.site-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
}

.site-pagination__mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px;
    border-radius: 20px;
    background: #fff;
}

.site-pagination__desktop {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 6px;
    border-radius: 20px;
    background: #fff;
    list-style: none;
}

.site-pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-pagination__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.site-pagination__arrow:hover {
    background: #3d6fd4;
    color: #fff;
    transform: translateY(-1px);
}

.site-pagination__arrow.is-disabled {
    background: #e9ecef;
    color: #adb5bd;
    pointer-events: none;
    transform: none;
}

.site-pagination__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 72px;
    justify-content: center;
    color: #212529;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.site-pagination__status-current {
    color: #4e7ee0;
}

.site-pagination__status-sep,
.site-pagination__status-total {
    color: #6c757d;
    font-weight: 600;
}

.site-pagination__page,
.site-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    color: #212529;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-pagination__page:hover {
    background: #f4f6fb;
    color: #4e7ee0;
}

.site-pagination__page.is-active {
    background: #4e7ee0;
    color: #fff;
}

.site-pagination__dots {
    min-width: 32px;
    padding: 0 4px;
    color: #6c757d;
    font-weight: 600;
}

@media (min-width: 576px) {
    .site-pagination__mobile {
        display: none;
    }

    .site-pagination__desktop {
        display: inline-flex;
    }

    .site-pagination__arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .site-pagination {
        margin-top: 40px;
    }

    .site-pagination__desktop {
        gap: 10px;
        padding: 8px;
    }

    .site-pagination__page,
    .site-pagination__dots {
        min-width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

.used-catalog__sort-wrap {
    width: 100%;
    min-width: 0;
    margin-left: auto;
}

@media (min-width: 992px) {
    .used-catalog__sort-wrap {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .used-catalog__toolbar-col {
        padding-left: 0;
        padding-right: 0;
    }

    .used-catalog__toolbar {
        justify-content: space-between;
    }

    .used-catalog__sort-wrap {
        flex: 1 1 auto;
        max-width: calc(100% - 132px);
    }

    .used-catalog__sort {
        height: 48px;
        padding: 0 36px 0 16px;
        font-size: 15px;
        background-position: right 14px center;
    }
}

.used-catalog__sort {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 20px;
    border: 0;
    border-radius: 20px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 18px center;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
}

.used-catalog__sort:focus {
    outline: 2px solid rgba(78, 126, 224, 0.35);
    outline-offset: 0;
}

.used-catalog__layout {
    align-items: start;
}

.used-catalog__main {
    min-width: 0;
}

.used-catalog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .used-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .used-catalog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .used-catalog__title {
        font-size: 24px;
    }
}

.used-catalog-sidebar {
    width: 100%;
    overflow: visible;
}

.catalog-filter-offcanvas {
    width: min(100%, 360px);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100vh;
    max-height: 100dvh;
}

.catalog-filter-offcanvas .offcanvas-header {
    flex-shrink: 0;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(78, 126, 224, 0.12);
    background: #fff;
}

.catalog-filter-offcanvas .offcanvas-title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.catalog-filter-offcanvas .offcanvas-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: aliceblue;
    overflow: hidden;
}

.catalog-filter-offcanvas .used-catalog-sidebar {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.catalog-filter-offcanvas .used-catalog-sidebar__form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    gap: 0;
    overflow: hidden;
}

.catalog-filter-offcanvas .used-catalog-sidebar__fields {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 12px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.catalog-filter-offcanvas .used-catalog-sidebar__actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding-top: 12px;
    background: aliceblue;
    box-shadow: 0 -8px 16px rgba(240, 248, 255, 0.85);
}

.catalog-filter-offcanvas .used-catalog-sidebar__submit {
    flex: 1 1 auto;
    min-height: 44px;
    margin-top: 0;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    white-space: nowrap;
}

.catalog-filter-offcanvas .used-catalog-sidebar__reset {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    white-space: nowrap;
}

.catalog-filter-offcanvas .used-catalog-sidebar__reset-icon {
    width: 20px;
    height: 20px;
}

.used-catalog-sidebar__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible;
    min-height: 100%;
}

.used-catalog-sidebar__fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.used-catalog-sidebar__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.used-catalog-sidebar__actions .used-catalog-sidebar__submit {
    margin-top: 0;
}

.used-catalog-sidebar__field {
    position: relative;
    width: 100%;
}

.used-catalog-sidebar__field--dropdown {
    z-index: 1;
}

.used-catalog-sidebar__field--dropdown.is-open {
    z-index: 30;
}

.used-catalog-sidebar__control {
    width: 100%;
    min-height: 48px;
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
}

.used-catalog-sidebar__control--muted, .used-catalog-sidebar__control:disabled {
    color: #adb5bd;
    cursor: not-allowed;
}

.used-catalog-sidebar__control:focus {
    outline: 2px solid rgba(78, 126, 224, 0.35);
    outline-offset: 0;
}

.used-catalog-sidebar__range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.used-catalog-sidebar__dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #fff;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.used-catalog-sidebar__dropdown-trigger .bi {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.used-catalog-sidebar__field--dropdown.is-open .used-catalog-sidebar__dropdown-trigger .bi {
    transform: rotate(180deg);
}

.used-catalog-sidebar__dropdown {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-height: 220px;
    margin-top: 10px;
    padding: 12px 0;
    border-radius: 20px;
    background: #fff;
    overflow-y: auto;
}

.used-catalog-sidebar__field--dropdown.is-open .used-catalog-sidebar__dropdown {
    display: flex;
}

.used-catalog-sidebar__dropdown-clear {
    align-self: flex-start;
    margin: 0 12px 8px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: transparent;
    color: #4e7ee0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

.used-catalog-sidebar__checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 20px;
    color: #212529;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.used-catalog-sidebar__checkbox:hover, .used-catalog-sidebar__checkbox.is-checked, .used-catalog-sidebar__checkbox:has(input:checked) {
    background: rgba(78, 126, 224, 0.12);
}

.used-catalog-sidebar__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.used-catalog-sidebar__checkbox input:checked + .used-catalog-sidebar__checkbox-box {
    background: #4e7ee0;
    border-color: #4e7ee0;
}

.used-catalog-sidebar__checkbox input:checked + .used-catalog-sidebar__checkbox-box::after {
    opacity: 1;
}

.used-catalog-sidebar__checkbox-box {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.used-catalog-sidebar__checkbox-box::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    opacity: 0;
}

.used-catalog-sidebar__submit {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.used-catalog-sidebar__submit:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
}

.used-catalog-sidebar__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.used-catalog-sidebar__reset:hover {
    color: #212529;
    background: rgba(78, 126, 224, 0.08);
}

.used-catalog-sidebar__reset-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #212529;
}

.used-catalog-sidebar__reset-icon .bi {
    font-size: 12px;
}

.catalog-more {
    display: flex;
    justify-content: center;
    padding: 32px 0 8px;
}

.catalog-more__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #cad9f6;
    color: #212529;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.catalog-more__btn:hover {
    background: rgba(78, 126, 224, 0.15);
    color: #4e7ee0;
}

.catalog-more__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (min-width: 992px) {
    .catalog-more__btn {
        width: 480px;
        min-width: 480px;
    }
}

@media (max-width: 991px) {
    .catalog-more {
        padding: 24px 0 4px;
    }

    .catalog-more__btn {
        width: 100%;
        max-width: 320px;
    }
}

.site-footer {
    padding-block: var(--site-footer-padding-y);
    background: #fff;
    color: #171717;
    font-size: 16px;
}

.site-footer .footer-top {
    margin-bottom: 28px;
}

.site-footer .footer-brand {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-footer .footer-text {
    margin-bottom: 14px;
    color: #222;
    line-height: 1.4;
}

.site-footer .footer-phone {
    display: inline-block;
    margin-bottom: 18px;
    color: #171717;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.site-footer .footer-phone:hover {
    color: #000;
}

.site-footer .footer-btn {
    display: block;
    padding: 10px 18px;
    border-radius: 15px;
    background: #4e7ee0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.site-footer .footer-btn:hover {
    background: color-mix(in srgb, #4e7ee0 80%, transparent);
    color: #fff;
}

.site-footer .footer-title {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.site-footer .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(80px, 1fr));
    gap: 14px 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer .footer-menu a {
    color: #222;
    font-size: 16px;
    text-decoration: none;
}

.site-footer .footer-menu a:hover {
    color: #000;
    text-decoration: underline;
}

.site-footer .footer-disclaimer {
    margin-top: 26px;
    color: #222;
    font-size: 16px;
    line-height: 1.35;
}

.site-footer .footer-disclaimer p {
    margin-bottom: 10px;
}

.site-footer .footer-bottom {
    margin-top: 12px;
    color: #222;
    font-size: 16px;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .site-footer .footer-brand {
        font-size: 26px;
    }

    .site-footer .footer-menu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .site-footer .footer-brand {
        font-size: 24px;
    }

    .site-footer .footer-phone {
        font-size: 14px;
    }

    .site-footer .footer-disclaimer,
    .site-footer .footer-bottom {
        font-size: 8px;
    }
}

.cta-section {
    padding: 16px 0 20px;
    background: #f1f3f5;
}

@media (min-width: 992px) {
    .cta-section {
        padding: 40px 0;
    }
}

.cta-section .cta-box {
    padding: 40px;
    border-radius: 40px;
    background: #ffffff;
}

.cta-section .cta-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-section .cta-icon img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cta-section .cta-title {
    margin-bottom: 10px;
    color: #171717;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.cta-section .cta-subtitle {
    margin-bottom: 28px;
    color: #5b5b5b;
    font-size: 22px;
    line-height: 1.4;
}

.cta-section .form-control {
    padding: 18px 20px;
    border: 0;
    border-radius: 20px;
    background: #f5f5f5;
    box-shadow: none;
    font-size: 18px;
}

.cta-section .form-control:focus {
    background: #f5f5f5;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(96, 109, 234, 0.12);
}

.cta-section .form-control::placeholder {
    color: #9b9b9b;
}

.cta-section .cta-btn {
    padding: 0 20px;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: 0.2s ease;
}

.cta-section .cta-btn:hover {
    background: rgb(37.4086538462, 95.3317307692, 213.5913461538);
    color: #fff;
}

.cta-section .cta-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #9a9a9a;
    font-size: 14px;
    border-radius: 9px;
}

.cta-section .cta-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #4e7ee0;
}

@media (max-width: 991.98px) {
    .cta-section .cta-box {
        padding: 28px;
    }

    .cta-section .cta-title {
        font-size: 30px;
    }

    .cta-section .cta-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 16px 0 32px;
    }

    .cta-section .cta-box {
        padding: 22px;
        border-radius: 20px;
    }

    .cta-section .cta-title {
        font-size: 24px;
    }

    .cta-section .form-control,
    .cta-section .cta-btn {
        height: 52px;
    }
    .used-catalog-sidebar__control{
        font-size: 14px;
    }
    .used-catalog__tabs--controls .used-catalog__tab {
        padding: 10px 0;
        font-size: 14px;
    }
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #4e7ee0;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(78, 126, 224, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgb(43.2807692308, 100.6961538462, 217.9192307692);
    color: #fff;
}

.scroll-to-top[hidden] {
    display: inline-flex;
}

@media (min-width: 992px) {
    .scroll-to-top {
        right: 32px;
        bottom: 32px;
    }
}

.ui-modal {
    z-index: 2500;
}

.ui-modal .modal-dialog {
    max-width: 1180px;
}

.ui-modal__content {
    border: 0;
    border-radius: 40px;
    overflow: visible;
    position: relative;
    background: transparent;
    box-shadow: none;
}

.ui-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 8;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px;
    color: #111;
    opacity: 1;
}

.ui-modal__close:focus {
    border: none;
}

.ui-modal__grid {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 470px;
    background: #fff;
}

.ui-modal__left {
    background: #f3f3f3;
    padding: 58px 48px 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ui-modal__right {
    position: relative;
    overflow: visible;
    min-height: 470px;
}

.ui-modal__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ui-modal__car {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(560px, 100%);
    max-width: none;
    z-index: 6;
    pointer-events: none;
}

.ui-modal__title {
    max-width: 420px;
    font-size: 40px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.15;
    color: #131313;
}

.ui-modal__complectation {
    max-width: 420px;
    margin: -16px 0 20px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.ui-modal__form {
    max-width: 420px;
}

.ui-modal__fields {
    margin-bottom: 10px;
}

.ui-modal__input {
    border-radius: 8px;
    border: 0;
    background: #e7e7e7;
    min-height: 54px;
    padding: 12px 16px;
    font-size: 16px;
    color: #2b2b2b;
}

.ui-modal__input::placeholder {
    color: #9b9b9b;
}

.ui-modal__input:focus {
    box-shadow: none;
    background: #e1e1e1;
}

.ui-modal__btn {
    margin-top: 20px;
    width: 100%;
    background-color: #4e7ee0;
    border-radius: 8px;
    font-weight: 700;
    padding: 13px 18px;
    color: #ffffff;
    font-size: 16px;
}

.ui-modal__btn:focus {
    box-shadow: none;
    color: #ffffff;
    border-color: #4e7ee0;
}

.ui-modal__btn:hover {
    box-shadow: none;
    background-color: rgb(92.16, 136.32, 226.48);
    color: #ffffff;
    border-color: rgb(92.16, 136.32, 226.48);
}

.ui-modal__policy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    font-size: 11px;
    line-height: 1.3;
    color: #8b8b8b;
    cursor: pointer;
}

.ui-modal__checkbox {
    margin-top: 1px;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    accent-color: #111;
}

@media (max-width: 991.98px) {
    .ui-modal .modal-dialog {
        max-width: 92vw;
    }

    .ui-modal__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ui-modal__right {
        display: none;
    }

    .ui-modal__left {
        padding: 42px 26px 30px;
    }

    .ui-modal__title {
        font-size: 30px;
        max-width: none;
    }

    .ui-modal__form {
        max-width: none;
    }
    .car-detail-page__title {
        font-size: 22px;
    }
    .car-detail-page__badge {
        font-size: 12px;
    }
    .car-detail-page__color-label{
        font-size: 14px;
    }
    .car-detail-page__price{
        margin-bottom: 0;
        font-size: 30px;
    }
    .model-list__item{
        padding: 10px 15px;
        font-size: 18px;
    }
    .car-detail-page__btn{
        font-size: 14px;
        line-height: 1;
    }
    .car-complectations__summary-btn{
        font-size: 14px;
    }
    .special-car-card__slider, .special-car-card__image{
        height: auto;
    }
    .used-detail-page__main-nav-btn{
        font-size: 16px;
    }
    .news-section__head{
        display: block;
    }
}

.another-news{
    background: #fff;
    border-radius: 40px;
    padding: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
dt{
    font-weight: 300 !important;
}
