/* Vehicle Range Section - Updated */
.lp_gamme .vehicle-range {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.lp_gamme .vehicle-range .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.lp_gamme .vehicle-showcase {
    max-width: 1000px; /* Section plus large */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lp_gamme .vehicle-display {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #e9ecef;
    border-radius: 0; /* Bordure carrée */
    padding: 3rem;
    margin-bottom: 0;
}

.lp_gamme .vehicle-image {
    width: 100%;
    height: 400px; /* Image taille originale sur desktop */
    object-fit: contain; /* Évite la coupure */
    object-position: center;
    border-radius: 0; /* Bordure carrée */
    margin-bottom: 1rem;
}

.lp_gamme .vehicle-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    text-align: left;
}

.lp_gamme .vehicle-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: inline;
}

.lp_gamme .vehicle-type {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    margin-left: 0.5rem;
    display: inline;
}

.lp_gamme .vehicle-navigation {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
}

.lp_gamme .nav-btn, .lp_gamme .testimonial-nav-btn, .lp_gamme .article-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.lp_gamme .nav-btn:hover, .lp_gamme .testimonial-nav-btn:hover, .lp_gamme .article-nav-btn:hover {
    background: #333333;
}

.lp_gamme .nav-btn:focus, .lp_gamme .testimonial-nav-btn:focus, .lp_gamme .article-nav-btn:focus {
    outline: none;
}

.lp_gamme .vehicle-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    max-width: 800px;
}

.lp_gamme .thumbnail {
    width: 100px; /* Carré */
    height: 100px; /* Carré */
    border: 2px solid transparent;
    border-radius: 0; /* Bordure carrée */
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.lp_gamme .thumbnail.active {
    border-color: transparent;
    background: #e9ecef; /* Même gris que le bloc du dessus */
}

.lp_gamme .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Force l'affichage complet de l'image */
    background: transparent;
}

.lp_gamme .vehicle-showcase .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0; /* Bordure carrée */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: #1a1a1a; /* Fond noir */
    color: white; /* Texte blanc */
    border: 2px solid #1a1a1a;
}

.lp_gamme .vehicle-showcase .btn:hover {
    background: #333333; /* Gris foncé au hover */
    border-color: #333333;
}

/* Responsive */
@media (max-width: 768px) {
    .lp_gamme .vehicle-range {
        padding: 60px 0;
    }
    
    .lp_gamme .vehicle-range .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .lp_gamme .vehicle-display {
        padding: 2rem;
    }
    
    .lp_gamme .vehicle-image {
        height: 350px; /* Image taille originale sur tablet */
        object-fit: contain; /* Évite la coupure */
    }
    
    .lp_gamme .vehicle-info {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .lp_gamme .vehicle-navigation {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .lp_gamme .nav-btn, .lp_gamme .testimonial-nav-btn, .lp_gamme .article-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        background: #1a1a1a;
        color: white;
    }
    
    .lp_gamme .nav-btn:hover, .lp_gamme .testimonial-nav-btn:hover, .lp_gamme .article-nav-btn:hover {
        background: #333333;
    }
    
    .lp_gamme .thumbnail {
        width: 80px; /* Carré */
        height: 80px; /* Carré */
        background: transparent;
    }
    
    .lp_gamme .thumbnail.active {
        border-color: transparent;
        background: #e9ecef; /* Même gris que le bloc du dessus */
    }
    
    .lp_gamme .thumbnail img {
        object-fit: contain; /* Force l'affichage complet de l'image */
        background: transparent;
    }
    
    .lp_gamme .vehicle-thumbnails {
        gap: 0.75rem;
        max-width: 600px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .lp_gamme .vehicle-range .section-title {
        font-size: 1.8rem;
    }
    
    .lp_gamme .vehicle-display {
        padding: 1.5rem;
    }
    
    .lp_gamme .vehicle-image {
        height: 300px; /* Image taille originale sur mobile */
        object-fit: contain; /* Évite la coupure */
    }
    
    .lp_gamme .vehicle-info {
        bottom: 1rem;
        left: 1rem;
    }
    
    .lp_gamme .vehicle-navigation {
        top: 1rem;
        right: 1rem;
    }
    
    .lp_gamme .nav-btn, .lp_gamme .testimonial-nav-btn, .lp_gamme .article-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        background: #1a1a1a;
        color: white;
    }
    
    .lp_gamme .nav-btn:hover, .lp_gamme .testimonial-nav-btn:hover, .lp_gamme .article-nav-btn:hover {
        background: #333333;
    }
    
    .lp_gamme .thumbnail {
        width: 70px; /* Carré */
        height: 70px; /* Carré */
        background: transparent;
    }
    
    .lp_gamme .thumbnail.active {
        border-color: transparent;
        background: #e9ecef; /* Même gris que le bloc du dessus */
    }
    
    .lp_gamme .thumbnail img {
        object-fit: contain; /* Force l'affichage complet de l'image */
        background: transparent;
    }
    
    .lp_gamme .vehicle-thumbnails {
        gap: 0.5rem;
        max-width: 500px;
        margin-bottom: 0.25rem;
    }
}
