@charset "UTF-8";

/* ══════════════════════════════
   VEHICLES — 공통 유틸
══════════════════════════════ */
.veh-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════
   WRAPPER
══════════════════════════════ */
.veh-wrapper {
    padding-top: 78px;
    padding-bottom: 200px;
}

/* ══════════════════════════════
   INTRO SECTION (제목 + CBM + 검색폼)
══════════════════════════════ */
.veh-intro-section {
    max-width: 1540px;
    margin: 0 auto;
    padding: 80px 20px 0;
    box-sizing: border-box;
}

/* 제목 + CBM 박스 행 */
.veh-intro-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 65px;
    gap: 40px;
}

/* 데스크톱 제목 */
.veh-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.35;
    flex-shrink: 0;
}

/* 모바일 제목 (데스크톱 숨김) */
.veh-title-mobile {
    display: none;
}
.veh-title-mobile h2 {
    font-size: 20px;
    font-weight: 700;
}
.veh-title-mobile p {
    font-weight: 500;
    margin-top: 16px;
    line-height: 1.65;
}

/* CBM 안내 박스 */
.veh-cbm-box {
    position: relative;
    background: #F8F8F8;
    padding: 20px 30px;
    border-radius: 32px;
    max-width: 520px;
}
.veh-cbm-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}
.veh-cbm-list {
    list-style: none;
    padding: 0; margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: #444;
}

/* 전구 아이콘 */
.veh-bulb-icon {
    position: absolute;
    left: 0; top: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

/* ══════════════════════════════
   검색 폼 (fieldset)
══════════════════════════════ */
.veh-search-fieldset {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 48px;
    border: 1px solid #000;
    border-radius: 20px;
    margin-top: 0;
}

.veh-search-row {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    list-style: none;
    padding: 0; margin: 0;
}

.veh-search-item {
    display: flex;
    flex-direction: column;
}

.veh-search-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.45;
    color: #111;
}
.veh-search-label strong {
    display: block;
    font-weight: 500;
    color: #555;
}
.veh-label-blank {
    display: block;
    visibility: hidden;
}

.veh-input-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.veh-input {
    font-weight: 600;
    font-size: 14px;
    background: #F8F8F8;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 44px;
    padding: 0 14px;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.veh-input:focus { border-color: #2D8EFF; }
.veh-input::placeholder { font-weight: 400; color: #bbb; }

.veh-input-sm { width: 68px; }

.veh-input-cbm {
    width: 160px;
    background: #F8F8F8;
    border-color: #F8F8F8;
    color: #bbb;
    cursor: default;
    text-align: center;
}

.veh-input-cbm.emphasize {
    border: 1px solid #2D8EFF;
    color: #2D8EFF;
}

.veh-input-sep {
    color: #333;
    font-size: 14px;
}

/* 라디오 버튼 */
.veh-radio-group {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0; margin: 0;
}
.veh-radio-input { display: none; }
.veh-radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 44px;
    border-radius: 8px;
    background: #F8F8F8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    user-select: none;
}
.veh-radio-label p { color: #bbb; transition: color 0.2s; }
.veh-radio-label:active { transform: scale(0.95); }
.veh-radio-input:checked + .veh-radio-label { background: #2D8EFF; }
.veh-radio-input:checked + .veh-radio-label p { color: #fff; }

/* 차량 찾기 버튼 */
.veh-search-btn {
    flex-shrink: 0;
    width: 120px;
    height: 94px;
    background: #2D8EFF;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    line-height: 1.4;
    word-break: keep-all;
}
.veh-search-btn:hover { background: #1a7aef; }
.veh-search-btn:active { transform: scale(0.95); }

/* ══════════════════════════════
   차량 목록 섹션
══════════════════════════════ */
.veh-list-section {
    max-width: 1540px;
    margin: 0 auto;
    padding: 90px 20px 0;
    box-sizing: border-box;
}

/* 필터 탭 */
.veh-filter-wrap { margin-bottom: 20px; }
.veh-tab-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.veh-tab-btn {
    width: 100px;
    height: 40px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: #F8F8F8;
    color: #bbb;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.veh-tab-btn.active { background: #222; color: #fff; }
.veh-tab-btn:active { transform: scale(0.95); }

.veh-pallet-note {
    display: flex;
    justify-content: flex-end;
    margin-top: 44px;
}
.veh-pallet-note p { font-size: 12px; font-weight: 500; color: #888; }

/* 차량 카드 목록 */
.veh-car-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    list-style: none;
    padding: 0; margin: 0;
}

/* 차량 카드 */
.veh-car-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 28px 40px;
    background: #F8F8F8;
    border-radius: 32px;
}

/* AI 추천 배지 */
.veh-ai-badge {
    position: absolute;
    top: 0; left: 20px;
    z-index: 10;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    background: #FF0062;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    padding: 10px 22px;
}
.veh-ai-badge.hidden { display: none; }

/* 차량 정보 (이미지 + 설명) */
.veh-car-info {
    display: flex;
    align-items: center;
    gap: 54px;
    flex: 1;
    min-width: 0;
}
.veh-car-img {
    flex-shrink: 0;
    width: 160px;
    height: auto;
}
.veh-car-detail { flex: 1; min-width: 0; }
.veh-car-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

/* 차량 스펙 그리드 */
.veh-car-specs {
    flex: 0 1 575px;
    min-width: 0;
    width: min(575px, 48%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    list-style: none;
    padding: 0; margin: 0;
}
.veh-spec-item {
    background: #fff;
    padding: 26px 10px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.veh-spec-label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}
.veh-spec-val {
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    color: #111;
}
.veh-spec-dark {
    grid-column: span 2;
    background: #222;
    color: #fff;
    padding: 26px;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.veh-spec-dark .veh-spec-label { color: rgba(255,255,255,0.6); }
.veh-spec-blue {
    grid-column: span 2;
    background: #2D8EFF;
    color: #fff;
    padding: 26px;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.veh-spec-blue .veh-spec-label { color: rgba(255,255,255,0.7); }
.veh-spec-val-lg {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* ══════════════════════════════
   반응형
══════════════════════════════ */
@media (max-width: 1280px) {
    .veh-car-specs { gap: 10px; }
    .veh-spec-item { padding: 20px 10px; }
    .veh-car-item { gap: 24px; padding: 28px 28px; }
    .veh-spec-item { padding: 20px 15px; }
    .veh-car-img { width: 100px; }
}

@media (max-width: 1024px) {
    /* 제목 전환 */
    .veh-title { display: none; }
    .veh-title-mobile { display: block; }

    .veh-intro-section { padding: 26px 20px 0; }
    .veh-intro-row {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 32px;
        gap: 24px;
    }

    /* CBM 박스 */
    .veh-cbm-box { padding: 16px; border-radius: 12px; max-width: 100%; }
    .veh-cbm-title { display: none; }
    .veh-bulb-icon { display: none; }

    /* 검색 폼 */
    .veh-search-fieldset {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 12px;
    }
    .veh-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .veh-search-btn {
        width: 100%;
        height: 48px;
        margin-top: 4px;
    }

    /* 목록 */
    .veh-list-section { padding: 40px 20px 0; }
    .veh-filter-wrap { display: none; }

    /* 카드 */
    .veh-car-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }
    .veh-car-info { gap: 16px; width: 100%; }
    .veh-car-name { font-size: 18px; }
    .veh-car-specs {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .veh-spec-dark, .veh-spec-blue { grid-column: span 2; }
    .veh-spec-val-lg { font-size: 18px; }
}

@media (max-width: 768px) {
    .veh-car-specs { flex: 0 1 350px; }
}