/* ================================
   1. Box model
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ================================
   2. Reset
================================ */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

:root {
    --main-font: 'Inter';
}

body {
    font-family: var(--main-font);
    line-height: 1;
    font-weight: 400;
    color: #131927;
}

body.no-scroll {
    overflow: hidden;
}

/* ================================
   3. Media
================================ */
img,
picture,
video,
canvas,
svg {
    display: block;
    /*max-width: 100%;*/
    width: 100%;
    height: auto;
}

/* ================================
   4. Typography
================================ */
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* ================================
   5. Forms
================================ */
input,
textarea,
select,
button {
    font: inherit;
    outline: none;
}

/* ================================
   6. Tables
================================ */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ================================
   7. Accessibility helpers
================================ */
:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* ================================
   8. Utility
================================ */
.container {
    width: 100%;
    max-width: 1182px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}


.mlabel {
    bottom: 0;
    width: 105px;
}

#gallery .mlabel {
    width: 126px;
}

.carGalleryThumbs .swiper-wrapper .mlabel {
    width: 16px;
    height: 4px;
}

header {
    padding: 14px 0;
}

header .header-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

header .header-content .header-logo {
    width: 94px;
}

header .header-content .header-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

header .header-content .header-menu li {
    position: relative;
}

header .header-content .header-menu li a {
    color: #212936;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

header .header-content .header-menu li.active a,
header .header-content .header-menu li a:hover {
    color: #F07206;
}

header .header-content .header-menu li.active a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #F07206;
}

header .header-content .header-menu li a:hover:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #F07206;
}

header .header-content .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

header .header-content .header-actions li {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-content .header-actions li:hover svg path {
    stroke: #F07206;
}

.main-section {
    background-color: #F9FAFB;
}

.main-section .container {
    max-width: 1240px;
}

.main-section .main-content {
    display: flex;
    justify-content: space-between;
}

.main-section .main-content .content {
    padding: 48px 0 28px;
}

.main-section .main-content .content h1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    color: #131927;
}

.main-section .main-content .image {
    max-width: 426px;
}

.vehicle-search-form {
    max-width: 780px;
    padding: 32px 14px 23px;
}

.vehicle-search-form p {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #131927;
    margin-bottom: 17px;
}

.form-row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row:first-of-type {
    grid-template-columns: 1fr 1fr;
}

.form-row:nth-of-type(2) {
    grid-template-columns: 100px 100px 1fr;
}

.vehicle-search-form select,
.vehicle-search-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #E5E7EA;
    border-radius: 12px;
    background: transparent;
    padding: 0 12px;
    font-size: 14px;
    color: #131927;
    outline: none;
}

.vehicle-search-form select {
    appearance: none;
    cursor: pointer;
    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 d='M1 1L6 6L11 1' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.search-field {
    position: relative;
}

.search-field input {
    padding-right: 50px;
}

.search-field input::placeholder {
    color: #131927;
}

.search-field button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);

    border: 0;
    background: none;
    cursor: pointer;

    font-size: 18px;
    color: #f97316;
}

.main-btn {
    display: block;
    margin: 0 auto;
    padding: 0 25px;
    min-width: 168px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #FC7C0E;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
    line-height: 20px;
}


.main-btn:hover {
    opacity: .9;
}

.sidebar-popup {
    position: fixed;
    inset: 0;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.sidebar-popup.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .1);
}

.sidebar-popup__content {
    position: absolute;
    top: 0;
    right: 0;

    width: 950px;
    max-width: 100%;
    height: 100%;

    background: #fff;

    transform: translateX(100%);
    transition: transform .3s ease;

    overflow-y: auto;

    padding: 30px 25px;
}

.sidebar-popup.active .sidebar-popup__content {
    transform: translateX(0);
}

.sidebar-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.popup-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #131927;
    margin-bottom: 23px;
}

.car-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.car-list .car-item {
    box-shadow: 0px 6px 14px -6px #1319271F;
    border-radius: 24px;
    padding: 14px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.car-list .car-item .photo-slider {
    width: 310px;
    border-radius: 16px;
    overflow: hidden;
}

.car-list .car-item .car-info {
    width: 349px;
}

.car-list .car-item .car-info .title {
    color: #0095FF;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
}

.car-list .car-item .car-info .win-number {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.car-list .car-item .car-info .tech-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #F3F4F6;
    background: #F9FAFB;
    border-radius: 16px;
    padding: 9px 12px;
    margin-bottom: 24px;
}

.car-list .car-item .car-info .tech-badges li {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}

.car-list .car-item .car-info .description {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 16px;
}

.car-list .car-item .car-info .description li span {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #9CA3AF;
    margin-bottom: 2px;
}

.car-list .car-item .car-info .description li p {
    font-size: 12px;
    line-height: 16px;
    color: #1F2937;
}

.car-list .car-item .car-price {
    width: 185px;
    padding-left: 8px;
    border-left: 1px solid #E0E1E3;
}

.delete.active {
    background: orange;
}

.car-list .car-item .car-price .delete {
    margin-left: auto;
    margin-bottom: 29px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.car-list .car-item .car-price .timer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 6px;
    border-radius: 6px;
    background: #ECF8EF;
    border: 1.5px solid #43B75D;
    color: #43B75D;
    font-weight: 600;
    font-size: 14px;
    line-height: 12px;
    margin-bottom: 20px;
}

.car-list .car-item .car-price .timer svg {
    width: 16px;
    height: 16px;
}

.car-list .car-item .car-price .price {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.car-list .car-item .car-price .price span {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #6D717F;
    margin-bottom: 2px;
}

.car-list .car-item .car-price .price p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #131927;
}

.car-list .car-item .car-price .details-btn {
    margin-top: 20px;
}

.car-list .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.car-list .pagination li {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FC7C0E;
    cursor: pointer;
}

.car-list .pagination li.page-active,
.car-list .pagination li.page:hover {
    border-radius: 50%;
    background-color: #FC7C0E;
    color: #FFFFFF;
}

.search-section {
    padding-top: 20px;
    padding-bottom: 33px;
}

.search-section .title {
    color: #131927;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 24px;
}

.search-block {
    padding: 16px 0;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 #0000000D;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.search-block .search-field {
    width: 518px;
}

.search-block .search-field input {
    width: 100%;
    height: 48px;
    border: 1px solid #E5E7EA;
    border-radius: 12px;
    background: transparent;
    padding: 0 12px 0 48px;
    font-size: 14px;
    color: #131927;
    outline: none;
}

.search-block .search-field svg {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    cursor: pointer;
}

.price-sort {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

.price-sort__icon {
    color: #5d6470;
    display: flex;
    align-items: center;
}

.price-sort__label {
    font-size: 18px;
    font-weight: 700;
    color: #252b37;
    white-space: nowrap;
}

.price-sort__select {
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #f97316;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.filter-selectors {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 24px 0 34px;
}

.filter-selectors li {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FC7C0E;
    background: #FDE4CF;
    border: 1px solid #FC7C0E;
    padding: 7px 0;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
}

.filter-selectors li:hover,
.filter-selectors li.active {
    background-color: #FC7C0E;
    color: #FFFFFF;
}

.search-result {
    display: flex;
    gap: 24px;
}

.search-result .search-filter {
    width: 100%;
    max-width: 320px;
    padding: 24px 16px;
}

.search-result .search-list {
    flex: 1;
}

.search-result .search-filter .filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.search-result .search-filter .filters__header h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #191C1D;
}

.search-result .search-filter .filters__header button {
    border: 0;
    background: transparent;
    color: #FC7C0E;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    line-height: 16px;
}

.search-result .search-filter .filter-group:not(:last-child) {
    margin-bottom: 24px;
}

.search-result .search-filter .filter-group__title {
    margin-bottom: 12px;
    font-size: 14px;
    color: #6D717F;
}

.search-result .search-filter .filter-group__heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 16px;
    color: #4D5461;
    font-weight: 500;
}

.search-result .search-filter .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-result .search-filter .tag {
    padding: 6px 8px;
    border: 1px solid #0095FF;
    background: #E6F4FF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: #0095FF;
}

.search-result .search-filter .tag.active {
    background: #0D8BFF;
    color: #fff;
}

.search-result .search-filter .tag span {
    margin-left: 6px;
}

.search-result .search-filter .filter-more {
    display: block;
    margin-top: 12px;
    color: #FC7C0E;
    text-decoration: none;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
}

.search-result .search-filter .range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.search-result .search-filter .range-inputs input {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    background: #F9FAFB;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 20px;
    color: #9EA2AE;
    border: 1px solid #E5E7EA;
}

.search-result .search-filter .range-inputs span {
    color: #8c92a0;
}

.search-result .search-filter input[type="range"] {
    width: 100%;
    height: 4px;
    appearance: none;
    background: #d7dbe2;
    border-radius: 999px;
}

.search-result .search-filter input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2F9BFF;
    cursor: pointer;
}

.js-range-slider {
    margin: 16px 0 !important;
}

.noUi-target {
    height: 8px !important;
    border: none !important;
    box-shadow: none !important;
    background: #D2D5DB !important;
}

.noUi-connect {
    background: #33AAFF !important;
}

.noUi-horizontal .noUi-handle {
    right: -7px !important;
    top: -5px !important;
    border-radius: 50%;
    border: 2px solid #E6F4FF !important;
    background: #33AAFF;
    box-shadow: none;
    width: 16px !important;
    height: 16px !important;
}

.noUi-horizontal .noUi-handle:after, .noUi-horizontal .noUi-handle:before {
    display: none !important;
}

.noUi-handle::before,
.noUi-handle::after {
    display: none;
}

.car-section {
    padding-top: 26px;
    padding-bottom: 60px;
}

.car-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.car-filter-select {
    min-width: 105px;
    height: 26px;
    padding: 0 36px 0 13px;

    border: 1px solid #E5E7EA;
    border-radius: 10px;

    background-color: #fff;

    color: #9EA2AE;
    font-size: 12px;
    line-height: 16px;


    cursor: pointer;
    outline: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238F95A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.auction-card {
    width: 100%;
    margin-bottom: 40px;
}

.auction-card__top {
    margin-bottom: 15px;
}

.auction-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 16px;
    border: 1px solid #EE443F;
    border-radius: 8px;
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #EE443F;
    background: #FDECEC;
    text-transform: uppercase;
}

.auction-card__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.auction-card__title {
    margin: 0 0 8px;
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: #131927;
}

.auction-card__meta {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #6D717F;
}

.auction-card__timer {
    text-align: right;
    flex-shrink: 0;
}

.auction-card__timer-label {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #6D717F;
    text-transform: uppercase;
}

.auction-card__timer-value {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #131927;
}

.car-information {
    display: flex;
    gap: 16px;
}

.car-gallery {
    width: 396px;
}

.car-gallery .swiper-pagination-bullet {
    background: #FC7C0E;
}


.carGallery {
    margin-bottom: 12px;
    width: 396px;
    position: relative;
}

.gallery-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.gallery-btn {
    border: none;
    cursor: pointer;
    justify-content: center;
    position: relative;
    z-index: 9;
    font-size: 13px;
    color: #fff;
    background: rgb(17 24 33 / 70%);
    border-radius: 4px;
    height: 26px;
    line-height: 0px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .3s;
}

.gallery-btn:hover {
    background: rgb(17 24 33);
    text-decoration: none;
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.carGallery .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.carGalleryThumbs .swiper-slide {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    opacity: .6;
    transition: .3s;
    border: 2px solid transparent;
}

.carGalleryThumbs .swiper-slide img {
    width: 100%;
    height: 50px;
    object-fit: cover;
    display: block;
}

.carGalleryThumbs .swiper-slide.active {
    opacity: 1;
    border: 2px solid #FC7C0E;
}

.gallery-thumb--more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}

.gallery-thumb__count {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.car-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 387px;
}

.info-card {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    padding: 17px 12px;
    box-shadow: 0 1px 3px 0 #0000001A;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #F2F4F7;
}

.info-row:last-of-type {
    border-bottom: none;
}

.label {
    color: #4D5461;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.value {
    color: #212936;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.value.text-green {
    color: #16A34A;
}

/* BADGES */
.badge {
    font-size: 10px;
    line-height: 12px;
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.badge-orange {
    color: #FC7C0E;
    background: #FDE4CF;
    border: 1px solid #FC7C0E;
}

.badge-green {
    color: #43B75D;
    background: #ECF8EF;
    border: 1px solid #43B75D;
}

/* SMALL BADGE */
.small-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #F2F4F7;
    color: #667085;
}

/* BUTTON */
.btn-outline {
    margin-top: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #FC7C0E;
    border-radius: 999px;
    background: #fff;
    color: #FC7C0E;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 16px;
}

.btn-outline:hover {
    background: #FC7C0E33;
}

/* ICON PLACEHOLDERS */
.copy-btn {
    width: 14px;
    height: 14px;
    border: none;
    background: url("/assets/img/copy.svg") no-repeat center;
    cursor: pointer;
}

.key-icon {
    width: 14px;
    height: 14px;
    background: url("/assets/img/key.svg") no-repeat center;
}

.info-card-other .label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.info-card-other .value {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.fuel-type {
    width: 14px;
    height: 14px;
    border: none;
    background: url("/assets/img/fuel.svg") no-repeat center;
}

.type-drive {
    font-weight: 500;
    font-size: 10px;
    line-height: 20px;
    color: #9CA3AF;
}

.car-price .auction-card {
    width: 333px;
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    padding: 17px 12px;
    box-shadow: 0 1px 3px 0 #0000001A;
}

.car-price .top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.car-price .label {
    font-weight: 400;
    color: #4D5461;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 4px;
}

.car-price .current-bid {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #111827;
}

.car-price .max-bid-block {
    text-align: right;
}

.car-price .max-bid {
    font-size: 28px;
    font-weight: 700;
    color: #9CA3AF;
}

.car-price .info {
    display: inline-flex;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.car-price .timer-section {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-price .timer {
    color: #16A34A;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.car-price .bid-control {
    margin-top: 16px;
    border: 2px solid #FC7C0E;
    border-radius: 12px;
    height: 56px;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-price .bid-value {
    color: #FC7C0E;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.car-price .actions {
    display: flex;
    gap: 8px;
}

.car-price .actions button {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #FC7C0E;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-price .calculator-header {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1F2937;
    padding: 18px 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.car-price .badge {
    background: #f58220;
    color: white;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    margin-left: auto;
}

.car-price .divider {
    height: 1px;
    background: #e9e9e9;
    margin: 0 0 16px;
}

.car-price .price-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.car-price .price-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
}

.car-price .step {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 14px;
}

.car-price .name {
    color: #4D5461;
    font-size: 14px;
    line-height: 20px;
}

.car-price .select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
    max-width: fit-content;
    color: #9EA2AE;
    font-size: 12px;
    line-height: 16px;
}

.car-price .value {
    color: #212936;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.car-price .subtotal {
    border-top: 1px solid #e9e9e9;
    padding: 20px 24px 0;
}

.car-price .subtotal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #212936;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

.car-price .range {
    color: #BFDBFE;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.car-price .range span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FDE4CF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FC7C0E;
}

.car-price .subtotal-price {
    margin-top: 10px;
    color: #212936;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

.car-price .note {
    margin-top: 16px;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
}

.car-price .btn-primary,
.car-price .btn-outline {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    cursor: pointer;
    margin-top: 18px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
}

.car-price .btn-primary {
    background: #FC7C0E;
    color: #F9FAFB;
    border: 1px solid #FC7C0E;
}

.car-price .btn-outline {
    background: transparent;
    border: 2px solid #FC7C0E;
    color: #FC7C0E;
}

footer {
    border-top: 1px solid #F6CFAD;
}

footer .footer-content .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    padding: 48px 64px;
}

footer .footer-content .footer-top .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-content .footer-top .footer-logo img {
    width: 136px;
}

footer .footer-content .footer-top .footer-logo p {
    font-size: 12px;
    line-height: 16px;
    color: #4D5461;
    text-transform: uppercase;
}

footer .footer-content .footer-top .footer-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

footer .footer-content .footer-top .footer-menu li a {
    font-size: 14px;
    line-height: 20px;
    color: #6D717F;
}

footer .footer-content .footer-bottom {
    padding: 24px 0;
    border-top: 1px solid #E5E7EA;
}

footer .footer-content .footer-bottom .copyright {
    font-size: 12px;
    line-height: 16px;
    color: #6D717F;
    text-align: center;
}