/* Electric Move Section */
.lp_gamme .electric-move {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #05141F !important;
    background-image: none !important;
}

/* Suppression des éléments de fond qui masquent le background */

.lp_gamme .electric-move-content {
    max-width: 900px;
    padding: 20px;
    z-index: 1;
}

.lp_gamme .electric-move-title {
    font-family: var(--font-family-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.lp_gamme .electric-move-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lp_gamme .electric-move-text {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: var(--text-light);
    opacity: 0;
    line-height: 1.8;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}

.lp_gamme .electric-move-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Masquer les flèches de navigation dans la section Electric Move */
.lp_gamme .electric-move .slider-controls {
    display: none !important;
}

/* Animation pour l'apparition des textes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp_gamme .electric-move-text p {
    margin-bottom: 1rem;
}

/* Responsive Electric Move */
@media (max-width: 768px) {
    .lp_gamme .electric-move-title {
        font-size: 2rem;
    }
    
    .lp_gamme .electric-move-text {
        font-size: 1rem; /* 16px */
    }
}

@media (max-width: 480px) {
    .lp_gamme .electric-move-title {
        font-size: 1.75rem;
    }
    
    .lp_gamme .electric-move-text {
        font-size: 1rem; /* 16px */
    }
}
