.car-image-imgg{
    object-fit: cover !important;
 height: 100% !important;
width: 100% !important;
border-radius: 10px;
}

.car-image{
width: 100% !important;
 object-fit: contain !important;
    height: 200px !important;


}
.main-vehicle-image-imgg{
 height: 100% !important;
width: 100% !important;

/* object-fit: cover !important; */
}

.main-vehicle-image{
width: 100% !important;
 object-fit: contain !important;

}


/* ========================================
   STYLES POUR LE FILTRE DE RECHERCHE
   ======================================== */

/* Filtre sur la page d'accueil */
.search-section-3 {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}



.search-select-3,
.search-input-3 {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-select-3:focus,
.search-input-3:focus {
    border-color: #ec5a13;
    box-shadow: 0 0 0 0.2rem rgba(67, 118, 251, 0.25);
}

.search-button-3 {
    background: #ec5a13;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    width: 100%;
}

.search-button-3:hover {
    background: #2d5dd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 118, 251, 0.3);
}

.search-button-3 svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */

/* Mobile - 1 champ par ligne */
@media (max-width: 768px) {
    .search-section-3 {
        padding: 20px 15px;
        margin-top: -50px;
    }

    .search-section-3 .row.gap-1 {
        gap: 0 !important;
    }

.homepage-3 .search-section-3 {

    margin-bottom: 50px !important;
}

    .search-section-3 .col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .search-section-3 .col:last-child {
        margin-bottom: 0;
    }

    .search-select-3,
    .search-input-3,
    .search-button-3 {
        width: 100%;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 991px) {
    .search-section-3 .col {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .search-section-3 .col:nth-last-child(1),
    .search-section-3 .col:nth-last-child(2) {
        flex: 0 0 48%;
    }


}

/* ========================================
   STYLES POUR LES IMAGES DE VÉHICULES
   ======================================== */

.car-image-imgg {
    object-fit: cover !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 10px;
}

.car-image {
    width: 100% !important;
    object-fit: contain !important;
    height: 200px !important;
}

.main-vehicle-image-imgg {
    height: 100% !important;
    width: 100% !important;
}

.main-vehicle-image {
    width: 100% !important;
    object-fit: contain !important;
}

/* ========================================
   DROPDOWN MENU UTILISATEUR
   ======================================== */

.dropdown-menu {
    min-width: 200px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ec5a13;
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* ========================================
   ALERTS ET MESSAGES
   ======================================== */

.alert {
    border-radius: 8px;
    padding: 15px 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* ========================================
   BOUTONS
   ======================================== */

.btn-link {
    color: #ec5a13;
    text-decoration: none;
}

.btn-link:hover {
    color: #2d5dd9;
    text-decoration: underline;
}

/* ========================================
   FORMULAIRES
   ======================================== */

.input-item {
    margin-bottom: 20px;
}

.input-item .lable-text {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-item input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s;
}

.input-item input:focus {
    border-color: #ec5a13;
    box-shadow: 0 0 0 0.2rem rgba(67, 118, 251, 0.25);
    outline: none;
}

/* ========================================
   RESPONSIVE TWEAKS
   ======================================== */

@media (max-width: 576px) {
    .responsive-logo {
        width: 100%;
    }

    .navbar-2-address-bar p {
        font-size: 12px;
    }

    .sign-content {
        margin-bottom: 30px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fadeIn {
    animation: fadeIn 0.5s ease-in;
}

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