.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-produit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
    display: none;
}

.image-produit.active {
    opacity: 1;
    display: block;
}

.controles-carousel {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.precedent,
.suivant {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.precedent:hover,
.suivant:hover {
    background: rgba(255, 255, 255, 1);
}