/* ========================================
   VEHICLE LIST PAGE - Istanbul Shuttle Port Style
   ======================================== */

@keyframes vlFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vl-page {
    padding: 0 0 40px;
}

.vl-empty {
    padding: 48px 16px;
    text-align: center;
    color: #8b8b9f;
    font-size: 15px;
}

/* Filter */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.filter-chip {
    padding: 8px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #4a4a68;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: #d64045;
    color: #d64045;
    background: #fef2f2;
}

/* Grid (design-aligned) */
.vl-vehicle-grid,
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.vehicle-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.vehicle-card-img .vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.vehicle-card-subtitle {
    font-size: 13px;
    color: #8b8b9f;
    margin-bottom: 14px;
}

.vehicle-card .vehicle-specs {
    margin-bottom: 16px;
}

.vehicle-card .vehicle-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4a4a68;
}

.vehicle-card .vehicle-spec i {
    color: #d64045;
    font-size: 14px;
}

.vehicle-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.vehicle-card .vehicle-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vehicle-card .vehicle-price .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #d64045;
}

.vehicle-card .vehicle-price .price-amount--muted {
    font-size: 14px;
    font-weight: 500;
    color: #8b8b9f;
}

.vehicle-card .vehicle-price .price-label {
    font-size: 12px;
    color: #8b8b9f;
    font-weight: 400;
}

.btn-vehicle-detail {
    padding: 10px 20px;
    background: #d64045;
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-vehicle-detail:hover {
    background: #bf2f3a;
}

/* Features bar */
.vl-features-bar,
.features-bar {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.vl-features-grid,
.features-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #d64045;
    font-size: 18px;
}

.feature-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-sublabel {
    font-size: 12px;
    color: #8b8b9f;
}

/* Page Header (replaces hero) */
/* Vehicles Section */
.vehicles-section {
    padding: 0 0 60px;
    background: white;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Vehicle Cards */
.vehicle-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.vehicle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 11px;
    padding: 4px 10px;
    background: #d64045;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.vehicle-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    display: none;
}

/* Vehicle Content */
.vehicle-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.vehicle-description {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 12px;
}

.vehicle-specs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

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

.spec-item i {
    color: #d64045;
    font-size: 12px;
}

.vehicle-features {
    display: none;
}

/* Vehicle Footer */
.vehicle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #d64045;
}

.btn-select-vehicle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    background: #d64045;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-select-vehicle:hover {
    background: #bf2f3a;
}

/* Responsive */
@media (max-width: 1024px) {
    .vl-vehicle-grid,
    .vehicle-grid,
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vl-vehicle-grid,
    .vehicle-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .vehicle-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .vehicle-price {
        align-items: center;
        text-align: center;
    }

    .btn-select-vehicle {
        justify-content: center;
    }
}
