:root {
    --color-black: #333d4b;
    --color-gray: #777777;
    --color-light-gray: #999999;
    --color-gray-200: #e5e8eb;
    --color-blue: #0066FF;
    --color-red: #f04452;
    --color-hana-green: #00a69e;
    --color-hana-green-light: #eeffee;
    --color-carnoon-blue: #00aade;
    --footer-height: 140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

body {
    /* overflow: hidden; */
    color: var(--color-black);
    font-size: 14px;
    touch-action: pan-y pinch-zoom;
    margin: 0;
    padding: 0;
}

.inner {
    position: relative;
    /* width: 100vw;
    height: 100vh;
    overflow: auto; */
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

button {
    all: unset;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

ul {
    all: unset;
}

li {
    all: unset;
}

a {
    text-decoration: none; /* 밑줄 제거 */
    color: inherit;      /* 부모 요소의 텍스트 색상 상속 */
}

em {
    font-style: normal;
}

.background-gray {
    background-color: #f5f5f5;
}
.background-green {
    background-color: var(--color-hana-green);
}

.white-box {
    background-color: white;
    border-radius: 16px;
    /* overflow: hidden; */
}

.width-100 {
    width: 100%;
}

.font-gray {
    color: var(--color-gray);
}
.font-blue {
    color: var(--color-carnoon-blue);
}
.font-green {
    color: var(--color-hana-green);
}
.font-white {
    color: white;
}

.font-20 {
    font-size: 20px;
}
.font-18 {
    font-size: 18px;
}
.font-16 {
    font-size: 16px;
}
.font-12 {
    font-size: 12px;
}
.font-10 {
    font-size: 10px;
}

.font-weight-600 {
    font-weight: 600;
}
.font-weight-400 {
    font-weight: 400;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px 8px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.flex-row-flexStart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.flex-row-flexEnd {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.flex-column{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.flex-column-flexStart{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
}
.flex-column-flexEnd{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: flex-end;
}
.flex-item-1 {
    flex: 1;
}
.flex-item-2 {
    flex: 2;
}
.flex-item-3 {
    flex: 3;
}
.flex-item-4 {
    flex: 4;
}

.padding-30 {
    padding: 30px;
}
.padding-20 {
    padding: 20px;
}
.padding-10 {
    padding: 10px;
}
.padding-12 {
    padding: 12px;
}
.padding-4 {
    padding: 4px;
}
.padding-20-0 {
    padding: 20px 0;
}
.padding-10-0 {
    padding: 10px 0;
}
.padding-12-0 {
    padding: 12px 0;
}
.padding-8-0 {
    padding: 8px 0;
}
.padding-24-12 {
    padding: 24px 12px;
}
.padding-10-20 {
    padding: 10px 20px;
}
.padding-0-30 {
    padding: 0 30px;
}
.padding-0-20 {
    padding: 0 20px;
}
.padding-0-16 {
    padding: 0 16px;
}
.padding-0-10 {
    padding: 0 10px;
}
.padding-0-4 {
    padding: 0 4px;
}

.margin-top-24 {
    margin-top: 24px;
}
.margin-top-12 {
    margin-top: 12px;
}
.margin-top-4 {
    margin-top: 4px;
}
.margin-bottom-16 {
    margin-bottom: 16px;
}
.margin-bottom-8 {
    margin-bottom: 8px;
}
.margin-bottom-100 {
    margin-bottom: 100px;
}
.margin-bottom-200 {
    margin-bottom: 200px;
}
.margin-left-10 {
    margin-left: 10px;
}

.text-align-center {
    text-align: center;
}
.text-align-right {
    text-align: right;
}

.line-height-1 {
    line-height: 1;
}
.line-height-2 {
    line-height: 2;
}

.divider::after {
    content: '｜';
    margin: 0 4px;
}

.plus::before {
  content: '+';
}

.won::after {
  content: '원';
}

.border-top {
    border-top: 1px solid var(--color-gray);
}

.hr-thin {
    border: 0;
    height: 1px;
    background-color: var(--color-gray-200);
}
.hr-green {
    border: 0;
    height: 1px;
    background-color: var(--color-hana-green);
}
.hr-thick {
    border: 0;
    height: 2px;
    background-color: var(--color-gray-200);
}
.hr-thick-black {
    border: 0;
    height: 2px;
    background-color: var(--color-black);
}

.word-break-keep {
    word-break: keep-all;
}


/* 헤더 */
.estm-header-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
    padding: 20px;
    background-color: black;
}


.listItem {
    text-align: center;
    font-size: 12px;
    border-radius: 16px;
}
.listItem.on {
    box-shadow: var(--color-hana-green) 0 0 0 1px;
    color: var(--color-hana-green);
}

.listButton {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: flex-start;
}

.option-item {
    font-size: 12px;
}
.option-item.on {
    color: var(--color-hana-green);
}
.option-item.dis {
    background-color: rgba(0, 0, 0, 0.05);
}

.selected-name-box {
    height: 20px;
    margin-bottom: 24px;
}

.color-list {
    /* display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(36px, 1fr)); */
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.color-item {
    /* aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: var(--color-gray) solid 1px; */
}
.color-item.on {
    /* box-shadow: var(--color-hana-green) 0 0 0 2px; */
    color: var(--color-hana-green);
}
.color-item.dis {
    background-color: rgba(0, 0, 0, 0.2);
}
.color-button {
    width: 100%;
    /* height: 100%; */
}
.color-main-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}
.colorChip-main {
    /* width: 100%;
    height: 100%; */
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: var(--color-gray) solid 1px;
    overflow: hidden;
    flex-shrink: 0;
}
.color-item.on .colorChip-main {
    border: var(--color-hana-green) solid 2px;
}
.colorChip-sub {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
}


.check-mark::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 10px;
    border: solid var(--color-gray);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-right: 12px;
}
.option-item.on .check-mark::before {
    border-color: var(--color-hana-green);
}


.content-inner {
    min-height: calc(100vh - var(--footer-height));
}

.slider-container {
    position: relative;
    width: 100vw;
    flex: 1;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    padding-bottom: 0; /* 120px에서 0으로 변경 */
    transition: height 300ms ease;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide-page {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    padding-bottom: var(--footer-height); /* footer 높이만큼 여유 공간 */
}
/* .slide-page.hide-scrollbar {
    overflow-y: hidden;
} */

.slide-page-content{
    width: 100%;
    padding: 12px;
}

/* 인디케이터 */
.indicators {
    /* position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%); */
    display: flex;
    gap: 4px;
    /* z-index: 100; */
    align-items: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 32%;
    background: rgba(255, 255, 255, 0.3);
    border: var(--color-carnoon-blue) solid 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    /* background: rgba(255, 255, 255, 0.9); */
    background-color: var(--color-carnoon-blue);
    /* transform: scale(1.2); */
}


/* 스크롤 바 start */
.range-slider-wrapper {
    position: relative;
    width: calc(100% - 40px);
    height: 40px;
    user-select: none;
    touch-action: none;
    margin: 0 auto;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transform: translateY(-50%);
}

.slider-range {
    position: absolute;
    top: 50%;
    height: 8px;
    background: var(--color-hana-green);
    border-radius: 2px;
    transform: translateY(-50%);
}

.slider-handle {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 24px;
    background: #fff;
    border: 2px solid var(--color-hana-green);
    border-radius: 12px;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: transform 0.1s;
    z-index: 2;
    text-align: center;
}

.slider-handle.active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.handle-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1; /* 세로 중앙 정렬용 */
    margin: 0;
}
/* 스크롤 바 end */


/* 팝업 기본 start */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup-overlay.active {
    display: block;
    opacity: 1;
}

.popup-area {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    width: 320px;
    z-index: 1001;
    overflow: hidden;
}
.popup-close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-align: center;
}
.popup-content {
    overflow-y: auto;
    max-height: 80vh;
}
.popup-upper-content {
    padding: 30px;
    background-color: var(--color-gray-200);
}
.popup-car-info-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: flex-start;
}
.popup-car-info-box > li {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: flex-start;
    align-items: center;
}
.popup-car-info-box > li > img {
    width: 40px;
}
.popup-model-image-box {
    text-align: end;
}
.popup-model-image-box > img {
    width: 180px;
}
.popup-lower-content {
    padding: 30px;
}
.popup-option-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: flex-start;
}
.popup-option-list .popup-option-list-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    /* align-items: center; */
    word-break: keep-all;
}
.popup-option-list .popup-option-list-item .price-box{
    min-width: 30%;
    text-align: end;
}




/* 바텀시트 오버레이 */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active {
    display: block;
    opacity: 1;
}

/* 바텀시트 */
.bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    /* max-height: 85vh; */
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.bottom-sheet-overlay.active .bottom-sheet {
    transform: translateY(0);
}

.bottom-sheet-list {
    overflow-y: auto;
    max-height: 50vh;
    scrollbar-gutter: stable;
}


/* 드래그 중 상태 */
.bottom-sheet.dragging {
    transition: none;
}

/* 드래그 핸들 */
.bottom-sheet-handle {
    padding: 12px 0;
    cursor: grab;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.bottom-sheet-handle:active {
    cursor: grabbing;
}

.handle-bar {
    width: 40px;
    height: 4px;
    background-color: #d1d5db;
    border-radius: 2px;
}

/* 바텀시트 내용 */
.bottom-sheet-content {
    padding: 0 20px 20px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* PC 환경 */
@media (min-width: 769px) {
    .bottom-sheet {
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        max-width: 480px;
    }

    .bottom-sheet-overlay.active .bottom-sheet {
        transform: translateX(-50%) translateY(0);
    }

    .bottom-sheet.dragging {
        transform: translateX(-50%) translateY(var(--drag-y, 0));
    }
}



.current-page-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-carnoon-blue);
}

.headerBox {
    display: block;
}
.headerBox > h3 {
    font-size: 14px;
    font-weight: 600;
}

.button-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-box {
    width: 100%;
    /* height: 100px; */
    background-color: #f5f5f5;
    padding: 20px 20px 40px 20px;
}

.footer-info {
    /* height: 20px; */
}

.footer-button-box {
    bottom: 20px;
}

.one-button-box button {
    flex: 1;
    text-align: center;
    color: white;
    background-color: var(--color-hana-green);
    padding: 8px 0;
    border-radius: 8px;
}

.two-button-box button {
    text-align: center;
    padding: 8px 0;
    border-radius: 8px;
}
.two-button-box button:nth-of-type(1) {
    color: var(--color-black);
    background-color: white;
    border: var(--color-gray) solid 1px;
}
.two-button-box button:nth-of-type(2) {
    color: white;
    background-color: var(--color-hana-green);
}

.brandButton {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.brandLogo {
    width: 60px;
}

.modelImage-box {
    text-align: center;
}

.modelImage {
    min-width: 120px;
    width: 75%;
    display: block;
    margin: 0 auto;
}

.brandLogo-mini {
    width: 40px;
}

.modelName {
    text-align: start;
}

.modelButton {
    /* margin: 0 auto; */
    width: 100%;
}

/* 필터 목록 */
.filter-title {
    width: 60px;
    flex-shrink: 0;
    font-size: 12px;
}

.filter-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.simple-capsule {
    border: 1px solid var(--color-hana-green);
    border-radius: 12px;
    padding: 2px 12px;
    font-size: 12px;
    color: var(--color-hana-green);
    white-space: nowrap;
}

.simple-capsule-2 {
    background-color: var(--color-hana-green-light);
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 10px;
    color: var(--color-hana-green);
    white-space: nowrap;
}

.car-info-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: flex-start;
}
.car-info-line > * {
    vertical-align: middle;
}
.car-info-box .price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-top: 16px;
    font-size: 20px;
}
.car-info-box .price-box > span:nth-child(1) {
    font-size: 18px;
}


.select-button {
    font-size: 14px;
    color: var(--color-black);
    border-radius: 4px;
    text-align: center;
    padding: 4px 0;
}
.select-button.on {
    box-shadow: var(--color-hana-green) 0 0 0 1px;
    color: var(--color-hana-green);
}


/* 커스텀 select */
.main-select-wrapper {
  position: relative;
  /* width: 100px; */
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  color: var(--color-hana-green);
}

.main-select-trigger {
  width: 100%;
  padding: 4px 8px;
  background-color: #fff;
  border: 1px solid var(--color-hana-green);
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
  user-select: none;
}

.main-select-trigger:hover {
  border-color: var(--color-hana-green);
}

.arrow {
  font-size: 14px;
  color: var(--color-gray);
  /* margin-left: 10px; */
  transition: transform 0.3s ease;
}

.main-select-wrapper.open .arrow {
  transform: rotate(180deg);
}

.main-select-options {
  position: absolute;
  top: calc(100%);
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-height: 220px;
  overflow-y: auto;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 1000;
}

.main-select-wrapper.open .main-select-options {
  display: flex;
  flex-direction: column;
}

.main-select-option {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 8px;
  color: #333;
}

.main-select-option:hover {
  background-color: var(--color-gray-200);
}

.main-select-option.selected,
.main-select-option[aria-selected="true"] {
  background-color: var(--color-hana-green-light);
  color: var(--color-hana-green);
  font-weight: 600;
}

.popup-button {
    padding: 2px 4px;
    background-color: var(--color-hana-green);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    width: 60px;
    text-align: center;
}


/* 조건 리스트 */
.contract-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.contract-list .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.contract-list .item:not(:last-child) {
    border-bottom: 1px solid var(--color-gray-200);
}
.contract-list .item.small {
    padding: 4px 0;
    font-size: 12px;
}
.contract-list .item > button {
    padding: 2px 0 2px 10px;
}

/* 조건 리스트 - 팝업 */
.contract-list-popup {
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.contract-list-popup > li {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.contract-list-popup > li:not(:last-child) {
    border-bottom: 1px solid var(--color-gray-200);
}


.input-box {
    border: var(--color-hana-green) 1px solid;
    border-radius: 8px;
    padding: 8px 16px;
}

.textarea-box {
    border: var(--color-hana-green) 1px solid;
    border-radius: 8px;
    padding: 8px 16px;
    height: 100px;
}

.agree-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}



/* 경고창 오버레이 (배경) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 검은색 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001; /* 다른 요소들 위에 표시 */
    opacity: 0; /* 초기에는 숨김 */
    visibility: hidden; /* 초기에는 숨김 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 경고창 내용 박스 */
.modal-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 380px; /* 적절한 최대 너비 설정 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* 깊이감 있는 그림자 */
    text-align: center;
    transform: scale(0.9); /* 초기에는 작게 시작 */
    opacity: 0; /* 초기에는 투명 */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-overlay.active .modal-content {
    transform: scale(1); /* 활성화되면 원래 크기로 */
    opacity: 1;
}

.modal-title {
    font-size: 20px;
    font-weight: 700; /* 볼드 */
    margin-bottom: 15px;
    color: #222;
}

.modal-message {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
    white-space: pre-line; /* 메시지에 줄바꿈 적용 */
}

.modal-buttons {
    display: flex;
    gap: 10px; /* 버튼 사이 간격 */
    justify-content: center; /* 버튼 가운데 정렬 */
    width: 100%;
}

.modal-buttons button {
    flex: 1; /* 버튼들이 공간을 균등하게 차지 */
    padding: 8px 0; /* 너비는 flex가 조정하고 세로 패딩만 */
    border-radius: 10px;
    font-size: 14px;
    /* font-weight: 600; */
    cursor: pointer;
    transition: background-color 0.2s;
    border: none;
}

.modal-buttons button.confirm-button {
    background-color: var(--color-hana-green);
    color: #fff;
}

.modal-buttons button.cancel-button {
    background-color: #eee;
    color: #666;
}

.modal-buttons button.cancel-button:hover {
    background-color: #e0e0e0;
}




/* 로딩 오버레이 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.loading-overlay.active {
    display: flex;
    opacity: 1;
}
.loading-content {
    text-align: center;
    color: white;
}

/* 로딩 화면 */
.loading-spinner {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}
.loading-spinner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}





.brandList {}
.brandList li.dis { opacity: 0.3; filter: grayscale(100%); }

.cartypeList {}
.cartypeList li.dis { opacity: 0.3; }

.engineList {}
.engineList li.dis { opacity: 0.3; }


.model-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}



@media (min-width: 500px) {
    .model-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /* .car-info-box .price-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    } */
    /* .car-info-box .price-box > span:nth-child(1) {
        font-size: 20px;
    } */

    .filter-title {
        font-size: 14px;
    }

    .listItem {
        font-size: 14px;
    }
    
    .contract-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .contract-list .item {
        padding: 20px 40px;
    }
    .contract-list .item:nth-child(odd) {
        border-right: 1px solid var(--color-gray-200);
    }
    .contract-list .item:not(:last-child) {
        border-bottom: 1px solid var(--color-gray-200);
    }
    .contract-list .item.small {
        padding: 20px 40px;
        font-size: 14px;
    }
}

@media (min-width: 800px) {
    .inner {
        max-width: 800px;
        margin: 0 auto;
    }

    .slider-container {
        max-width: 800px;
    }

    .slide-page {
        min-width: 800px !important;
        max-width: 800px;
    }

    .model-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .popup-area {
        transform: translate(-50%, -50%) scale(1.25);
    }
}
