/**
 * ============================================================
 * FLEET PAGE - BOOKING.COM STYLE
 * ============================================================
 * Page d'affichage des résultats de recherche de véhicules
 * Design inspiré de Booking.com avec couleurs EightCar/Sixt
 *
 * COULEURS:
 * - Bleu foncé: #003580 (Booking.com)
 * - Bleu boutons: #0071C2
 * - Jaune accent: #FEBB02
 * - Gris texte: #6B6B6B
 * - Noir: #262626
 */

/* ============================================================
   RESET & BASE
============================================================ */
.fleet-page * {
    box-sizing: border-box;
}

.fleet-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #F5F5F5;
    color: #262626;
    margin: 0;
    padding: 0;
}

/* ============================================================
   SEARCH SUMMARY BAR (en haut, résumé recherche)
============================================================ */
.search-summary-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.search-summary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.search-summary-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-item i {
    color: #6B6B6B;
    font-size: 14px;
}

.search-label {
    font-size: 12px;
    color: #6B6B6B;
    margin-right: 4px;
}

.search-value {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.btn-modify-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #0071C2;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-modify-search:hover {
    background: #005999;
}

/* ============================================================
   BOOKING STEPS - STYLE EUROPCAR AVEC CARTES
============================================================ */

.booking-steps-europcar {
    background: white;
    padding: 40px 0;
    margin-bottom: 40px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-steps-title {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.steps-container-europcar {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

/* Cartes d'étapes */
.step-card {
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 120px;
}

.step-card.completed {
    border-color: #d0d0d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.step-card.active {
    border: 3px solid #28a745;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
    transform: translateY(-2px);
}

.step-card.inactive {
    opacity: 0.6;
}

/* En-tête d'étape */
.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8f9fa;
    position: relative;
}

.step-card.active .step-header {
    background: #e8f5e9;
}

/* Badge numéro */
.step-number-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-number-badge.active {
    background: #28a745;
}

.step-card.completed .step-number-badge {
    background: #6c757d;
}

/* Titre d'étape */
.step-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card.inactive .step-title {
    color: #999;
}

/* Bouton modifier */
.edit-step-btn {
    margin-left: auto;
    color: #28a745;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.edit-step-btn:hover {
    transform: scale(1.1);
    color: #1e7e34;
}

/* Contenu d'étape */
.step-content {
    padding: 20px;
    background: white;
}

.step-card.inactive .step-content {
    display: none;
}

/* Détails de localisation */
.location-details {
    font-size: 14px;
}

.location-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-col strong {
    display: block;
    color: #666;
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
}

.location-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 15px;
}

.location-datetime {
    font-size: 13px;
    color: #666;
}

/* Message d'étape */
.step-message {
    font-size: 15px;
    color: #555;
    font-style: italic;
    font-weight: 500;
}

.step-message.inactive {
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-container-europcar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-container-europcar {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FORMULAIRE DE MODIFICATION INLINE (Style Europcar)
============================================================ */

/* Conteneur du formulaire de recherche (caché par défaut) */
.search-form-container {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    animation: slideDown 0.3s ease;
    margin-top: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
}

/* Header du formulaire */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.close-search-link {
    color: #5cb85c;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.close-search-link:hover {
    color: #449d44;
    text-decoration: underline;
}

/* Corps du formulaire */
.form-content {
    /* Le contenu utilise les styles existants de booking-widget-sixt-horizontal */
}

/* Ajustements spécifiques pour le formulaire inline */
.search-form-container .booking-options-bar {
    margin-bottom: 20px;
    display: flex;
    gap: 1.5rem;
}

/* Styles des checkboxes adaptés au fond gris clair */
.search-form-container .booking-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333 !important; /* Texte foncé au lieu de blanc */
    user-select: none;
}

.search-form-container .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #999 !important; /* Bordure grise au lieu de blanche */
    border-radius: 3px;
    background: white !important; /* Fond blanc */
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.search-form-container .booking-checkbox:hover .checkbox-custom {
    border-color: #28a745 !important; /* Vert au hover */
}

.search-form-container .booking-checkbox input:checked + .checkbox-custom {
    background: #28a745 !important; /* Vert quand coché */
    border-color: #28a745 !important;
}

.search-form-container .booking-checkbox input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.search-form-container .checkbox-label {
    color: #333 !important; /* Force texte foncé */
}

.search-form-container .booking-widget-sixt-horizontal {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.search-form-container .booking-form-horizontal {
    gap: 12px;
}

.search-form-container .btn-search-booking {
    background: #f4c430;
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
}

.search-form-container .btn-search-booking:hover {
    background: #e5b520;
}

/* Transition pour masquer les étapes */
.steps-container-europcar.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .search-form-container {
        padding: 20px;
    }

    .form-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .search-form-container {
        padding: 16px;
    }

    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .form-title {
        font-size: 18px;
    }

    .search-form-container .booking-widget-sixt-horizontal {
        padding: 16px;
    }
}

/* ============================================================
   MAIN CONTENT (sidebar + results)
============================================================ */
.fleet-main-content {
    padding: 24px 0 40px;
}

.fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

/* ============================================================
   SIDEBAR FILTRES (style Booking.com)
============================================================ */
.fleet-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 80px;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Header filtres avec bouton reset (style Europcar) */
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters-header .sidebar-title {
    margin: 0;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 20px 0;
}

.btn-reset-link {
    color: #00AA6C;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-reset-link:hover {
    color: #008C59;
    text-decoration: underline;
}

.filter-group {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-title {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 12px 0;
}

/* Checkbox style Booking.com */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #0071C2;
    border-radius: 3px;
    background: #FFFFFF;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.filter-checkbox input[type="radio"] + .checkbox-custom {
    border-radius: 50%;
}

.filter-checkbox input:checked + .checkbox-custom {
    background: #0071C2;
}

.filter-checkbox input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input[type="radio"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transform: translate(-50%, -50%);
    border: none;
}

.checkbox-label {
    font-size: 14px;
    color: #262626;
    flex-grow: 1;
}

.checkbox-label .count {
    color: #6B6B6B;
    font-size: 12px;
}

/* ============================================================
   FIX : Rendre les radio buttons des filtres visibles
   (Surcharger booking-exact-style.css qui met bordure blanche)
============================================================ */
.filter-checkbox .checkbox-custom {
    border: 2px solid #0071C2 !important;
    background: transparent !important;
}

.filter-checkbox input[type="radio"] + .checkbox-custom {
    border-radius: 50% !important;
}

.filter-checkbox:hover .checkbox-custom {
    border-color: #005999 !important;
}

.filter-checkbox input:checked + .checkbox-custom {
    background: #0071C2 !important;
    border-color: #0071C2 !important;
}

.filter-checkbox input[type="radio"]:checked + .checkbox-custom::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 8px !important;
    height: 8px !important;
    background: white !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    border: none !important;
}

/* Fix : Rendre les labels de texte visibles (blanc → noir) */
.filter-checkbox .checkbox-label {
    color: #262626 !important;
    font-size: 14px !important;
}

.filter-checkbox .checkbox-label .count {
    color: #6B6B6B !important;
    font-size: 12px !important;
}

/* ============================================================
   RESULTS
============================================================ */
.fleet-results {
    min-height: 400px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-title {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    margin: 0;
}

.results-count {
    font-size: 14px;
    color: #6B6B6B;
    margin: 0;
}

.results-count strong {
    color: #262626;
    font-weight: 700;
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-sort label {
    font-size: 14px;
    color: #6B6B6B;
}

.results-sort select {
    padding: 8px 12px;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    font-size: 14px;
    background: #FFFFFF;
    cursor: pointer;
}

/* ============================================================
   VEHICLES GRID (1 colonne, layout horizontal style Europcar)
============================================================ */
.vehicles-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ============================================================
   VEHICLE CARD (Layout horizontal style Europcar)
============================================================ */
.vehicle-card {
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Image (à gauche, largeur fixe) */
.vehicle-image {
    position: relative;
    width: 280px;
    min-width: 280px;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    color: #9E9E9E;
    font-size: 48px;
}

/* Badges */
.vehicle-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-featured {
    background: #FEBB02;
    color: #262626;
}

/* Content (à droite de l'image) */
.vehicle-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.vehicle-title {
    font-size: 18px;
    font-weight: 700;
    color: #262626;
    margin: 0;
    line-height: 1.3;
}

.badge-similar {
    display: inline-block;
    padding: 4px 10px;
    background: #F0F0F0;
    color: #6B6B6B;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    white-space: nowrap;
}

.vehicle-category {
    font-size: 13px;
    color: #6B6B6B;
    margin-bottom: 16px;
}

/* Features - Style ancien (si besoin) */
.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 16px;
}

.feature {
    font-size: 13px;
    color: #262626;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature i {
    color: #6B6B6B;
    font-size: 12px;
}

/* Features - Style Europcar compact */
.vehicle-features-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #262626;
    font-weight: 500;
}

.feature-icon i {
    color: #6B6B6B;
    font-size: 14px;
}

/* Footer (prix + bouton) */
.vehicle-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.vehicle-price {
    flex-grow: 1;
    text-align: right;
}

.price-per-day {
    margin-bottom: 4px;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #262626;
}

.price-unit {
    font-size: 13px;
    color: #6B6B6B;
    margin-left: 4px;
}

.price-total {
    font-size: 12px;
    color: #6B6B6B;
}

/* Bouton réserver (style Europcar - Jaune) */
.btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #FEBB02;
    color: #262626;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(254, 187, 2, 0.3);
}

.btn-reserve:hover {
    background: #F5B000;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(254, 187, 2, 0.4);
}

.btn-reserve i {
    font-size: 13px;
}

/* ============================================================
   AMÉLIORATIONS STYLE EUROPCAR
============================================================ */

/* Badge similaire avec catégorie */
.badge-similar {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.badge-similar .fa-info-circle {
    opacity: 0.8;
}

/* Grille de caractéristiques plus compacte (2 colonnes) */
.vehicle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin-bottom: 16px;
}

.vehicle-features .feature {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Section inclusions */
.vehicle-included {
    margin: 16px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
}

.included-item:last-child {
    margin-bottom: 0;
}

.included-item .fa-check {
    color: #28a745;
    font-size: 14px;
}

/* Méthode de paiement */
.payment-method {
    font-size: 10px;
    color: #6c757d;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Prix total prominent */
.price-total-prominent {
    font-size: 16px;
    color: #495057;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

/* Conteneur actions (boutons groupés) */
.vehicle-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

/* Lien Plus de détails */
.more-details-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.more-details-link:hover {
    color: #1e7e34;
    text-decoration: underline;
    gap: 8px;
}

.more-details-link .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.more-details-link:hover .fa-chevron-down {
    transform: translateY(2px);
}

/* ============================================================
   NO RESULTS (style Europcar)
============================================================ */
.no-results {
    text-align: center;
    padding: 80px 40px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 40px auto;
}

.no-results i.fa-car-side {
    font-size: 80px;
    color: #D1D1D1;
    margin-bottom: 24px;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 16px 0;
}

.no-results .search-context {
    font-size: 16px;
    color: #6B6B6B;
    margin: 0 0 32px 0;
    padding: 16px;
    background: #F5F5F5;
    border-radius: 6px;
    display: inline-block;
}

.no-results .search-context strong {
    color: #262626;
    font-weight: 600;
}

/* Section suggestions */
.no-results-suggestions {
    background: #FFF9E6;
    border-left: 4px solid #FEBB02;
    padding: 20px;
    margin: 24px 0;
    border-radius: 6px;
    text-align: left;
}

.no-results-suggestions h4 {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.no-results-suggestions h4 i {
    color: #FEBB02;
    font-size: 18px;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #262626;
    font-size: 14px;
}

.no-results-suggestions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FEBB02;
    font-weight: bold;
}

/* Actions (boutons) */
.no-results-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FFFFFF;
    color: #0071C2;
    border: 2px solid #0071C2;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #F0F0F0;
}

.btn-primary-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FEBB02;
    color: #262626;
    border: 2px solid #FEBB02;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(254, 187, 2, 0.3);
}

.btn-primary-yellow:hover {
    background: #F5B000;
    border-color: #F5B000;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(254, 187, 2, 0.4);
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #0071C2;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #005999;
}

/* ============================================================
   SEARCH EXPIRED (Recherche expirée - 15 min)
============================================================ */
.search-expired {
    text-align: center;
    padding: 80px 40px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 40px auto;
}

.search-expired i.fa-clock {
    font-size: 80px;
    color: #FF9800;
    margin-bottom: 24px;
}

.search-expired h3 {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 16px 0;
}

.search-expired .expired-message {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-expired .expired-info {
    background: #FFF9E6;
    border-left: 4px solid #FF9800;
    padding: 20px;
    margin: 24px 0;
    border-radius: 6px;
}

.search-expired .expired-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #262626;
}

.search-expired .expired-info .search-context {
    font-size: 16px;
    color: #6B6B6B;
    margin-top: 12px;
    padding: 12px;
    background: #F5F5F5;
    border-radius: 6px;
    display: inline-block;
}

.search-expired .expired-info .search-context strong {
    color: #262626;
    font-weight: 600;
}

.search-expired .expired-actions {
    margin-top: 32px;
}

.btn-refresh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #FEBB02;
    color: #262626;
    border: 2px solid #FEBB02;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(254, 187, 2, 0.4);
}

.btn-refresh:hover {
    background: #F5B000;
    border-color: #F5B000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(254, 187, 2, 0.5);
}

.btn-refresh i {
    font-size: 18px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .fleet-container {
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        padding: 16px;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile (<768px) */
@media (max-width: 768px) {
    .search-summary-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-summary-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-modify-search {
        width: 100%;
        justify-content: center;
    }

    .fleet-container {
        grid-template-columns: 1fr;
    }

    .fleet-sidebar {
        order: 2;
    }

    .fleet-results {
        order: 1;
    }

    .sidebar-sticky {
        position: static;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-reserve {
        width: 100%;
        justify-content: center;
    }

    .results-header {
        gap: 12px;
    }

    .results-title {
        font-size: 20px;
    }
}

/* Mobile très petit (<480px) */
@media (max-width: 480px) {
    .fleet-main-content {
        padding: 16px 0;
    }

    .fleet-container {
        padding: 0 12px;
    }

    .vehicle-title {
        font-size: 16px;
    }

    .price-amount {
        font-size: 18px;
    }

    .search-summary-bar {
        position: relative;
    }

    .sidebar-sticky {
        padding: 12px;
    }

    .filter-title {
        font-size: 13px;
    }

    .checkbox-label {
        font-size: 13px;
    }
}

/* ============================================================
   PRINT STYLES
============================================================ */
@media print {
    .search-summary-bar,
    .fleet-sidebar,
    .btn-reserve,
    .btn-modify-search {
        display: none;
    }

    .fleet-container {
        grid-template-columns: 1fr;
    }

    .vehicle-card {
        box-shadow: none;
        border: 1px solid #E0E0E0;
        page-break-inside: avoid;
    }
}
