.car-section {
            width: 100%;
            padding: 80px 20px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* 상단 타이틀 영역 */
        .car-header {
            margin-bottom: 40px;
        }
        .car-category-small {
            font-size: 14px;
            font-weight: 500;
            color: #666;
            margin-bottom: 8px;
            display: block;
        }
        .car-title {
            font-size: 38px;
            font-weight: 700;
            color: #111;
            line-height: 1.3;
        }

        /* 탭 메뉴 스타일 */
        .car-tabs {
            display: flex;
            gap: 24px;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 40px;
            /*overflow-x: auto;*/
            white-space: nowrap;
        }
        .tab-btn {
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 500;
            color: #888;
            padding: 12px 0;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
        }
        .tab-btn:hover { color: #111; }
        .tab-btn.active { color: #111; font-weight: 700; }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #111;
        }

        /* 차량 카드 그리드 레이아웃 */
        .car-grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            min-height: 300px; /* 카드가 없을 때 높이 유지 */
        }

        /* 개별 차량 카드 스타일 */
        .car-card {
            background-color: #f7f9fa;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }
        .car-info h3 { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 6px; }
        .car-info p { font-size: 14px; color: #666; margin-bottom: 16px; }
        .detail-link {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 20px;
        }
        .detail-link:hover { color: #000; text-decoration: underline; }
        .car-img-wrap {
            width: 100%;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .car-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }

        /* 페이지네이션 영역 스타일 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 50px;
        }
        .page-btn {
            min-width: 36px;
            height: 36px;
            padding: 0 8px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #555;
            cursor: pointer;
            transition: all 0.2s;
        }
        .page-btn:hover { border-color: #111; color: #111; }
        .page-btn.active {
            background-color: #111;
            color: #fff;
            border-color: #111;
        }
        .page-btn:disabled {
            background-color: #f5f5f5;
            border-color: #e5e5e5;
            color: #ccc;
            cursor: not-allowed;
        }

        /* 모달 팝업 스타일 */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex; align-items: center; justify-content: center;
            z-index: 1000;
            opacity: 0; visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-overlay.open { opacity: 1; visibility: visible; }
        .modal-content {
            background-color: #fff;
            width: 90%; max-width: 600px;
            border-radius: 16px; padding: 40px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .modal-overlay.open .modal-content { transform: translateY(0); }
        .modal-close {
            position: absolute; top: 20px; right: 20px;
            background: none; border: none; font-size: 24px; cursor: pointer; color: #999;
        }
        .modal-close:hover { color: #111; }
        .modal-body h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
        .modal-body .modal-sub { font-size: 15px; color: #666; margin-bottom: 20px; }
        .modal-img { width: 100%; height: 220px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: #f8f9fa; border-radius: 8px;}
        .modal-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
        .modal-desc { font-size: 15px; color: #444; line-height: 1.6; margin-bottom: 30px; }
        .modal-btn {
            display: block; width: 100%; padding: 14px;
            background-color: #111; color: #fff;
            text-align: center; text-decoration: none; border-radius: 8px; font-weight: 600;
        }
        .modal-btn:hover { background-color: #333; }

        /* 반응형 디자인 */
        @media (max-width: 1024px) {
            .car-grid-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .car-title { font-size: 28px; }
            .car-grid-container { grid-template-columns: 1fr; }
            .modal-content { padding: 24px; }
        }