/**
 * 신차 페이지 스타일
 * CSS 변수는 variables.css에서 정의
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base, 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif);
    background-color: var(--bg-secondary, #f8f9fa);
    color: var(--text-primary, #333);
}

/* 헤더 - 모바일 */
.mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header-logo {
    height: 32px;
}

.header-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: #f5f6fa;
}

.icon-btn i {
    font-size: 20px;
    color: #333;
}

.notification-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

/* 헤더 - PC */
.pc-header {
    display: none;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 32px;
}

.main-nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 8px 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #5e72e4;
}

.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-login {
    background: none;
    border: 2px solid #5e72e4;
    color: #5e72e4;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login:hover {
    background: #5e72e4;
    color: white;
}

.btn-signup {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    border: none;
    color: white;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(94, 114, 228, 0.3);
    white-space: nowrap;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 114, 228, 0.4);
}

/* 메인 컨테이너 */
.main-container {
    display: flex;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    gap: 24px;
}

/* 모바일 필터 버튼 */
.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(94, 114, 228, 0.4);
    transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(94, 114, 228, 0.5);
}

/* 토글 버튼 */
.toggle-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 12px;
}

.toggle-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: white;
    color: #5e72e4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-btn:hover:not(.active) {
    color: #5e72e4;
}

/* 셀렉트 박스 */
.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.filter-select:hover {
    border-color: #5e72e4;
}

.filter-select:focus {
    outline: none;
    border-color: #5e72e4;
    box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.1);
}

/* 가격 범위 - 레이어 순서 완전 수정 */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.price-input {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    padding: 10px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    color: #333;
    font-weight: 600;
    background: white;
    box-sizing: border-box;
}

.price-input:focus {
    outline: none;
    border-color: #5e72e4;
    box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.1);
}

.price-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Chrome, Safari, Edge에서 number input 스피너 제거 */
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox에서 number input 스피너 제거 */
.price-input[type=number] {
    -moz-appearance: textfield;
}

.price-divider {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1;
}

.price-unit {
    text-align: right;
    font-size: 12px;
    color: #999;
    font-weight: 500;
    margin-top: -4px;
}

/* 슬라이더 컨테이너 숨김 */
.price-slider-container {
    display: none;
}

.price-slider {
    display: none;
}



/* 사이드바 필터 */
.sidebar-filter {
    width: 280px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
    display: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.filter-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
}

.filter-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
}

.filter-section {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.filter-options {
    display: none;
}

.filter-checkbox {
    display: none;
}

.filter-checkbox:hover {
    color: #5e72e4;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #5e72e4;
}

.filter-checkbox .count {
    margin-left: auto;
    color: #999;
    font-size: 13px;
}

/* 가격 범위 - 완전히 재작성 */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.price-input {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    color: #333;
    font-weight: 600;
    background: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}


.price-inputs span {
    color: #999;
    font-size: 14px;
}

.unit {
    font-size: 13px;
    color: #666;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    accent-color: #5e72e4;
}

/* 필터 액션 버튼 */
.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.btn-reset {
    flex: 1;
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    border-color: #5e72e4;
    color: #5e72e4;
}

.btn-apply {
    flex: 1;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 114, 228, 0.4);
}

/* 컨텐츠 영역 */
.content-area {
    flex: 1;
}

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

.result-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.page-title {
    font-size: 28px;
    font-weight: 900;
    color: #333;
}

.result-count {
    font-size: 15px;
    color: #666;
}

.result-count strong {
    color: #5e72e4;
    font-weight: 700;
}

.sort-options {
    display: flex;
    align-items: center;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: #5e72e4;
}

/* 차량 그리드 */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.car-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.car-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.car-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.car-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fb 0%, #e4e9f7 100%);
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-image-placeholder .placeholder-label {
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
}

.car-card-new:hover .car-image {
    transform: scale(1.1);
}

.car-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #11cdef 0%, #1171ef 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.car-badge-hot {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #fb6340 0%, #f5365c 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.car-badge-premium {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    transform: scale(1.1);
}

.btn-favorite i {
    font-size: 18px;
    color: #ff6b6b;
}

.car-info {
    padding: 20px;
}

.car-brand {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.car-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.car-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.car-specs span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.car-specs i {
    color: #5e72e4;
    font-size: 12px;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.price-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.price-amount {
    font-size: 22px;
    font-weight: 900;
    color: #5e72e4;
}

.btn-detail {
    width: 100%;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 114, 228, 0.4);
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    border-color: #5e72e4;
    color: #5e72e4;
}

.page-btn.active {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    border-color: transparent;
    color: white;
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 푸터 네비게이션 (모바일) */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 14px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 80px;
}

.nav-btn:hover {
    background: #f8f9fa;
}

.nav-btn.active {
    color: #5e72e4;
}

.nav-btn i {
    font-size: 22px;
    color: #888;
    transition: color 0.3s ease;
}

.nav-btn.active i {
    color: #5e72e4;
}

.nav-btn span {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.nav-btn.active span {
    color: #5e72e4;
    font-weight: 700;
}

/* 푸터 PC */
.footer-pc {
    display: none;
    background: #2c2c2c;
    color: white;
    padding: 80px 0 0;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content-pc {
    max-width: 1800px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #444;
}

.footer-logo-pc {
    height: 36px;
    margin-bottom: 20px;
}

.footer-description-pc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5e72e4;
    transform: translateY(-3px);
}

.footer-links-pc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column-pc h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column-pc ul {
    list-style: none;
}

.footer-column-pc li {
    margin-bottom: 12px;
}

.footer-column-pc a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column-pc a:hover {
    color: #5e72e4;
}

.footer-bottom-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.copyright-pc {
    font-size: 13px;
    color: #777;
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
}

.footer-links-bottom a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #5e72e4;
}

.footer-links-bottom .privacy {
    font-weight: 700;
    color: #aaa;
}

/* 연식 범위 */
.year-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.year-divider {
    text-align: center;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    margin: -4px 0;
}

/* 모바일에서 헤더 높이만큼 상단 여백 추가 */
@media (max-width: 767px) {
    .main-container {
        margin-top: 60px;
        padding-top: 20px;
    }
}

/* 태블릿 (768px 이상) */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
    
    .pc-header {
        display: block;
    }
    
    .main-container {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .mobile-filter-btn {
        display: none;
    }
    
    .sidebar-filter {
        display: block;
    }
    
    .car-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .footer-nav {
        display: none;
    }
    
    .footer-pc {
        display: block;
    }
}

/* 데스크톱 (1024px 이상) */
@media (min-width: 1024px) {
    .main-container {
        margin-top: 20px;
    }
    
    .car-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

/* 중간 크기 (1000px 이상) */
@media (min-width: 1000px) {
    .header-container {
        padding: 0 30px;
        height: 75px;
        gap: 24px;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .main-nav {
        gap: 28px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 8px 6px;
    }
    
    .btn-login,
    .btn-signup {
        padding: 9px 20px;
        font-size: 14px;
    }
    
    .header-actions {
        gap: 10px;
    }
}

/* 데스크톱 (1200px 이상) */
@media (min-width: 1200px) {
    .header-container {
        padding: 0 40px;
        height: 80px;
        gap: 30px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .main-nav {
        gap: 40px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .btn-login,
    .btn-signup {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .car-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 대형 데스크톱 (1400px 이상) */
@media (min-width: 1400px) {
    .main-container {
        margin-top: 20px;
    }
    
    .car-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 모바일 필터 오버레이 */
@media (max-width: 767px) {
    .sidebar-filter.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
        overflow-y: auto;
        animation: slideInLeft 0.3s ease;
    }
    
    .sidebar-filter.active .filter-close-btn {
        display: block;
    }
    
    @keyframes slideInLeft {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
}

/* ========================================
   추가 스타일 - 검색창, 로딩, 트림 배지 등
   ======================================== */

/* 검색 입력창 */
.search-input-wrap {
    position: relative;
}

.filter-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input-wrap .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* 연료 타입 토글 */
.fuel-toggle {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fuel-toggle .toggle-btn {
    flex: 1;
    min-width: 80px;
    padding: 10px 12px;
    font-size: 13px;
}

/* 로딩 오버레이 */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    min-height: 300px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.loading-spinner i {
    font-size: 32px;
    color: #3b82f6;
}

/* 결과 없음 */
.no-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #9ca3af;
    min-height: 300px;
}

.no-result i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.no-result p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-reset-search {
    padding: 10px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-reset-search:hover {
    background: #2563eb;
}

/* 트림 배지 */
.car-badge-trim {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* 콘텐츠 영역 상대 위치 */
.content-area {
    position: relative;
}

/* 차량 카드 커서 */
.car-card-new {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.car-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
