@charset "utf-8";

.estimate-step1 {

    box-sizing: border-box;
}

.cm-step-wrap {}

.cm-step-wrap .sec-title {
    margin-bottom: 60px;
    text-align: center;
}

.cm-step-wrap .sec-title h2 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 12px;
}

.step-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

.step-fixed-bar .inner {
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7); /* 🔥 투명도 */
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* flex */
.step-fixed-bar .inner .dflx-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* 좌측 */
.step-fixed-bar .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-fixed-bar .left .df {
    display: flex;
    gap:8px;
    align-items: center;
}

.step-fixed-bar .car-name {
    font-size: 1.1rem;
    color: #333;
}

/* 가격 */
.step-fixed-bar .price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-fixed-bar .price-wrap .label {
    padding: 4px 8px;
    background: #f1f1f1;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #666;
}

.step-fixed-bar .price-wrap .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
}

/* 버튼 */
.step-fixed-bar .btns-wrap .btns {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 8px;
    background: #1e63e9;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* car_option.php — 모바일에서만 하단 고정바 숨김 */
@media (max-width: 768px) {
    .car-option-page + .step-fixed-bar {
        display: none !important;
    }
}

/* section */
.estimate-step1 .brand-sec {
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
    background: #fff;
}

/* step1: #step1-unified-ajax 는 래퍼만 — 박스 스타일 없음 */
.estimate-step1 #step1-unified-ajax {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    background: transparent;
}

/* step1: 섹션별 독립 카드 */
.estimate-step1 .sec-car,
.estimate-step1 .sec-fast,
.estimate-step1 .sec-budget,
.estimate-step1 .sec-review {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 50px;
    background: #fff;
}

.estimate-step1 .sec-review .review-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 헤더 고정 영역 가림 방지 */
.estimate-step1 #step1-brand-sec {
    scroll-margin-top: 120px;
}

.estimate-step1 .sec-ttl {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.estimate-step1 .section-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.estimate-step1 .list-count .count-label {
    font-weight: 400;
}

.estimate-step1 .list-count .count-num {
    font-weight: 700;
}

.estimate-step1 .brand-type-tabs {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
}

.estimate-step1 .brand-type-tabs .tab {
    border: 0;
    background: transparent;
    padding: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #8a8a8a;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.estimate-step1 .brand-type-tabs .tab.on {
    color: #111;
    font-weight: 700;
    border-bottom-color: #111;
}

/* brand list */
.estimate-step1 .brand-list {
    overflow: hidden;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.estimate-step1 .brand-list::-webkit-scrollbar {
    display: none;
}

.estimate-step1 .brand-list .swiper-wrapper {
    align-items: center;
}

.estimate-step1 .brand-list .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

/* 브랜드 선택 리스트 항목 (step1) — 카드 내 .brand-wrapper 와 충돌 방지 */
.estimate-step1 .brand-list .brand-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color .2s;
    box-sizing: border-box;
    white-space: nowrap;
    user-select: none;
}

.estimate-step1 .brand-list .brand-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, border-color .2s ease;
}

.estimate-step1 .brand-list .brand-wrapper.on::after {
    border-color: #111;
    opacity: 1;
}

.estimate-step1 .brand-list .brand-wrapper .logo {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.estimate-step1 .brand-list .brand-wrapper img {
    max-width: 100%;
    max-height: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.estimate-step1 .brand-list .brand-wrapper .name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    color: #111;
    white-space: nowrap;
}

/* 기존 카드형 요소가 남아 있어도 브랜드 탭에서는 숨김 */
.estimate-step1 .brand-list .brand-wrapper .thumb,
.estimate-step1 .brand-list .brand-wrapper .price {
    display: none !important;
}

.estimate-search-page .sub-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.estimate-search-page .sub-title .sub-title-txt {
    min-width: 0;
}

.estimate-search-page .car-search-box {
    width: 100%;
    max-width: 420px;
    height: 52px;
    border: 2px solid #222;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 18px 0 24px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.estimate-search-page .car-search-box input {
    flex: 1;
    border: 0;
    background: transparent;
    font-size: 1rem;
    color: #111;
    outline: none;
}

.estimate-search-page .car-search-box input::placeholder {
    color: #999;
}

.estimate-search-page .car-search-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    color: #111;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* car list — 차량선택(.sec-car): 즉시출고(.fast-list-wrap .car)와 동일 시각 스타일 (마크업 불변, CSS만) */
.estimate-step1 .sec-car .car-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.estimate-step1 .sec-car .car.is-hidden-by-brand {
    display: none !important;
}

.estimate-step1 .sec-car .car {
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
}

.estimate-step1 .sec-car .car .car-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.estimate-step1 .sec-car .car:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.estimate-step1 .sec-car .car .thumb {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #f9f9f9;
}

.estimate-step1 .sec-car .car .thumb img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

.estimate-step1 .sec-car .car .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
}

.estimate-step1 .sec-car .car .info .name-df {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    width: 100%;
}

.estimate-step1 .sec-car .car .info .brand-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.estimate-step1 .sec-car .car .brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2a2a2a;
}

.estimate-step1 .sec-car .car .brand-wrapper img {
    width: 24px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.estimate-step1 .sec-car .car .name {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
}

.estimate-step1 .sec-car .car .price {
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #666;
}

.estimate-step1 .fast-list-wrap {
    padding: 0;
}

/* fast_list.php */
.fast-list-page .fast-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fast-list-page .estimate-step1 .brand-sec {
    margin-bottom: 0;
}

.fast-list-page .estimate-step1 .brand-type-tabs.fast-origin-tabs {
    gap: 24px;
}

.fast-list-page .fast-car-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.fast-list-page .fast-car-list .car.is-hidden-by-origin {
    display: none !important;
}

.fast-list-page .fast-car-card {
    border: 1px solid #e7ebf1;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.fast-list-page .fast-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(13, 23, 39, 0.08);
}

.fast-list-page .fast-car-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.fast-list-page .fast-car-card .thumb {
    width: 100%;
    height: 210px;
    padding: 16px;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fast-list-page .fast-car-card .thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fast-list-page .fast-car-card .info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.fast-list-page .fast-car-card .brand-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #d9e1ec;
    border-radius: 999px;
    background: #f7fbff;
}

.fast-list-page .fast-car-card .brand-wrapper img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.fast-list-page .fast-car-card .brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #30415f;
}

.fast-list-page .fast-car-card .name {
    font-size: 1.08rem;
    line-height: 1.4;
    color: #111827;
    font-weight: 700;
}

.fast-list-page .fast-car-card .stock-wrap {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0b2f6b;
}

.fast-list-page .fast-car-card .stock-wrap.stock-none {
    color: #64748b;
    font-weight: 600;
}

.fast-list-page .fast-car-card .btn-cta {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    background: #dff1ff;
    color: #1c3557;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* responsive — .sec-car 그리드는 .fast-list-wrap .car-list 와 동일 단계 */
@media (max-width: 1024px) {
    .estimate-step1 .brand-list .brand-wrapper {
        height: 54px;
        padding: 0 18px;
    }

    .estimate-step1 .sec-car .car-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .fast-list-page .fast-car-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .estimate-search-page .sub-title {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .estimate-search-page .car-search-box {
        max-width: none;
        width: 100%;
        height: 52px;
        padding: 0 14px 0 16px;
    }

    .estimate-search-page .car-search-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .estimate-step1 .brand-sec {
        padding: 18px 16px;
    }

    .estimate-step1 .brand-type-tabs {
        gap: 24px;
    }

    .estimate-step1 .brand-list {
        overflow: hidden;
    }

    .estimate-step1 .brand-list .brand-wrapper {
        height: 52px;
        padding: 0 16px;
        gap: 8px;
    }

    .estimate-step1 .brand-list .brand-wrapper img {
        max-height: 20px;
    }

    .estimate-step1 .sec-car .car-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .fast-list-page .fast-car-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .fast-list-page .fast-car-card .thumb {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .estimate-step1 .sec-car .car-list {
        grid-template-columns: 1fr;
    }

    .fast-list-page .fast-car-list {
        grid-template-columns: 1fr;
    }
}

.estimate-step2 .car-summary {
    padding: 80px 20px;
    margin-top: 120px;
}

.estimate-step2 .car-summary .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.estimate-step2 .car-image {
    flex: 1;
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

.estimate-step2 .car-image .img-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #fafafb;
}

.badge-special {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4d4f;
    color: #fff;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
    z-index: 2;
}

.estimate-step2 .car-image img {
    width: 100%;
    max-width: 520px;
    display: block;
}

.estimate-step2 .car-info {
    flex: 1;
    min-width: 0;
}

.estimate-step2 .title-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.estimate-step2 .car-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    min-width: 0;
}

.estimate-step2 .car-name .brand-logo {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.estimate-step2 .btn-catalog {
    padding: 8px 18px;
    background: #0b2c63;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}

.estimate-step2 .car-new-price {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.estimate-step2 .car-new-price-ttl {
    font-weight: 600;
    color: #333;
    margin-right: 6px;
}

.estimate-step2 .color-select {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #eee;
}

.estimate-step2 .color-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
}

.estimate-step2 .current-color {
    color: #888;
}


.estimate-step2 .color {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.estimate-step2 .color.on {
    border-color: #0b2c63;
}

.estimate-step2 .sec-head {
    background: linear-gradient(to right, #dde8ff 0%, rgba(226, 232, 242, 0) 100%);
    color: #062a63;
    padding: 16px 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.estimate-step2 .sec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
}

/* 02~04 공통: 스크롤 영역 (max-height + overflow) */
.estimate-step2 .estimate-select-scroll {
    max-height: 380px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.estimate-step2 .model-item-list .model-item:not(:last-child),
.estimate-step2 .step-trim-list .step-trim-item:not(:last-child),
.estimate-step2 .sec-option .option-list > li:not(:last-child) {
    margin-bottom: 16px;
}

/* 02~04 공통: 선택 박스 카드(테두리·radius·clip) */
.estimate-step2 .model-item,
.estimate-step2 .step-trim-item,
.estimate-step2 .sec-option .option-item label {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
}

.estimate-step2 .model-item.on,
.estimate-step2 .step-trim-item.on,
.estimate-step2 .sec-option .option-item label:has(input:checked) {
    border-color: #002b6c;
    background: #f5f5f6;
}

/* 02~04 공통: 행 내부 높이·패딩·텍스트·세로 중앙 정렬 */
.estimate-step2 .model-btn,
.estimate-step2 .step-trim-item,
.estimate-step2 .sec-option .option-item label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    cursor: pointer;
}

.estimate-step2 .model-btn {
    width: 100%;
    user-select: none;
}

.estimate-step2 .model-btn:hover {
    background: #ebeef0;
}

.estimate-step2 .model-btn:focus {
    outline: 2px solid #0b2c63;
    outline-offset: 2px;
}

.estimate-step2 .trim-list.trim-list-hidden {
    display: none !important;
}

.estimate-step2 .trim-step-body {
    margin-top: 16px;
}

.estimate-step2 .trim-step-empty {
    color: #888;
    text-align: center;
    padding: 48px 16px;
    border: 1px dashed #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.estimate-step2 .step-trim-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}

.estimate-step2 .step-trim-item:hover:not(.on) {
    background: #ebeef0;
}

.estimate-step2 .trim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    padding: 0 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.estimate-step2 .trim.on {
    border-color: #002b6c;
    background: #eef1f5;
}

.estimate-step2 .sec-option .option-body {
    margin-top: 16px;
}

.estimate-step2 .sec-option .option-empty {
    color: #888;
    text-align: center;
    padding: 80px 0;
}

.estimate-step2 .sec-option .option-list {
    display: none;
    flex-direction: column;
}

.estimate-step2 .sec-option .option-item input {
    display: none;
}

.estimate-step2 .sec-option .option-item .label {
    font-size: 16px;
    font-weight: 500;
}

.estimate-step2 .sec-option .option-item .price {
    font-size: 16px;
    font-weight: 500;
}

.estimate-step2 .sec-option .option-item input:checked + .label {
    color: #002b6c;
}

.estimate-step2 .sec-option .option-item input:checked ~ .price {
    color: #002b6c;
}

.estimate-step2 .sec-option .option-item input:checked ~ * {
    pointer-events: none;
}

.estimate-step2 .sec-option .option-item input:checked {
    display: none;
}

.estimate-step2 .cond-block-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.estimate-step2 .sec-condition .cond-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estimate-step2 .sec-condition .cond-title {
    font-size: 15px;
    font-weight: 600;
}

.estimate-step2 .sec-condition .cond-title.add-inp {
    margin-bottom: 16px;
}

.estimate-step2 .sec-condition .inp-block {
    min-width: 100%;
    padding: 14px 16px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
}

.estimate-step2 .sec-condition [data-deposit-block],
.estimate-step2 .sec-condition [data-prepay-block] {
    display: none;
}

.estimate-step2 .sec-condition .btn-group {
    display: grid;
    gap: 12px;
}

/* 컬럼 수 제어 */
.estimate-step2 .sec-condition .btn-group.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.estimate-step2 .sec-condition .btn-group.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.estimate-step2 .sec-condition .btn-group.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.estimate-step2 .sec-condition .btn-group.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.estimate-step2 .sec-condition input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* 기본 버튼 */
.estimate-step2 .sec-condition .btns {
    padding: 14px 16px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
}

/* 체크된 라디오 = 선택 상태 */
.estimate-step2 .sec-condition .btns input[type="radio"]:checked + span {
    color: #0b2f6b;
    font-weight: 600;
}

.estimate-step2 .sec-condition .btns:has(input[type="radio"]:checked) {
    border-color: #0b2f6b;
}


/* =========================
   04. 최종 견적
========================= */

/*
.estimate-step2 .sec-summary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
*/

.estimate-step2 .sec-summary .summary-box {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.estimate-step2 .sec-summary dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    column-gap: 24px;
    font-size: 14px;
}

.estimate-step2 .sec-summary dt {
    color: #666;
}

.estimate-step2 .sec-summary dd {
    text-align: right;
    font-weight: 600;
}

.estimate-step2 .sec-summary .price-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estimate-step2 .sec-summary .price-block .row,
.estimate-step2 .sec-summary .price-block .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.estimate-step2 .sec-summary .price-block .row span {
    color: #666;
}

.estimate-step2 .sec-summary .price-block .total {
    padding-top: 16px;
    border-top: 1px solid #ddd;
    font-size: 18px;
    font-weight: 700;
}

.estimate-step2 .sec-summary .price-head {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 14px;
}

.estimate-step2 .sec-summary .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.estimate-step2 .sec-summary .price-name {
    color: #666;
    font-size: 15px;
}

.estimate-step2 .sec-summary .price-value {
    font-size: 18px;
    font-weight: 700;
}


.estimate-step2 .sec-summary .btn-submit {
    margin-top: 16px;
    width: 100%;
    padding: 18px 0;
    background: #0b2f6b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.estimate-step2 .sec-summary .detail {
    padding-left: 16px;
    border-left: 2px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.estimate-step2 .sec-summary .detail div {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.estimate-step2 .color-swiper-wrap {
    width: 100%;
}

.estimate-step2 .colorSwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 12px;
}

.estimate-step2 .colorSwiper .swiper-wrapper {
    width: auto;
}

.estimate-step2 .colorSwiper .swiper-slide {
    width: calc((100% - 80px) / 7);
    margin-right: 16px;
    flex-shrink: 0;
    box-sizing: border-box;
    border: 2px solid #eee;
}

.estimate-step2 .colorSwiper .swiper-slide:last-child {
    margin-right: 0;
}

.estimate-step2 .colorSwiper .color-list .color {
    position: relative;
}

.estimate-step2 .colorSwiper .color-list .color.on::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #111;
}

.estimate-step2 .sec-grid > * {
    min-width: 0;
}


@media (max-width:550px) {
    .estimate-step1 .brand-sec,
    .estimate-step1 .sec-car,
    .estimate-step1 .sec-fast,
    .estimate-step1 .sec-budget,
    .estimate-step1 .sec-review {
        padding: 20px;
    }

    .cm-step-wrap .sec-title h2 {
        font-size: 24px;
    }

    .estimate-step2 .car-summary {
        padding: 20px;
    }

    .estimate-step2 .car-summary .inner {
        flex-direction: column;
        padding: 40px 0;
        align-items: flex-start;
    }

    .estimate-step2 .car-image {
        position: static;
        top: auto;
        align-self: stretch;
    }

    .estimate-step2 .sec-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}
