.slider-B-container, .slider-B-modal-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80%;
    justify-content: space-between;
}

.slider-B-modal-container {
    height: 90%;
}

.slider-B-container.soloPicModal {
    height: 90%;
}

.slider-B, .slider-B-modal {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slider-B.modalProduct {
    width: 95%;
    max-height: 80vh;
}

.slider-B {
    margin-bottom: 40px;
}

.slider-B.modalProduct {
    margin-bottom: 50px;
}

.slide-B {
    height: 100%;
}

.slide-B, .slide-B-modal {
    display: none;
    width: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.slide-B.active, .slide-B-modal.active {
    display: block;
    text-align: center;
}

.slide-B img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto; /* Empêche tout clic sur les images */
    user-select: none; /* Désactive la sélection des images */
    -webkit-user-drag: none; /* Bloque le glissement natif (Chrome/Safari) */
    touch-action: manipulation; /* Bloque les gestes par défaut sur mobile */
    cursor: default; /* Remplace le curseur interdit par le curseur normal */
}

.slider-B.modal-product .slide-B img {
    max-width: 100%!important;
    width: fit-content!important;
}

.slide-B.modalProduct img {
    width: 95%;
    object-fit: cover;
    cursor: default;
}

.thumbnails-slider-B {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.thumbnail-slider-B {
    width: 15%;
    /* height: 100%; */
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    margin: 0 5px;
}

.thumbnail-slider-B.active,
.thumbnail-slider-B:hover {
    opacity: 1;
}

/* Flèches */
.prev-next-container-B {
    display: flex;
    width: 50%;
    position: absolute;
    bottom: 155px;
}

@media (min-width: 1920px) {
    .prev-next-container-B {
        bottom: 180px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .prev-next-container-B {
        bottom: 150px;
    }
}

@media (min-width: 1130px) and (max-width: 1439px) {
    .prev-next-container-B {
        bottom: 135px;
    }
}

@media (min-width: 760px) and (max-width: 1129px) {
    .prev-next-container-B {
        bottom: 125px;
    }
}

@media (min-width: 721px) and (max-width: 759px) {
    .prev-next-container-B {
        bottom: 100px;
    }
}

@media screen and (max-width: 720px) {
    .prev-next-container-B {
        bottom: 125px;
    }
}

.prev-slider-B, .next-slider-B {
    cursor: pointer;
    /* position: absolute; */
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transition: 0.6s ease;
    display: flex;
    align-items: center;
}

.prev-slider-B, .next-slider-B {
   /*  top: 40%; */
   margin: auto;
}

.prev-slider-B-modal, .next-slider-B-modal {
    position: absolute;
}

.next-slider-B, .next-slider-B-modal {
    right: 0;
    padding-right: 0;
}

.prev-slider-B, .prev-slider-B-modal {
    left: 0;
    padding-left: 0;
}

/* .prev-slider-B:hover, .next-slider-B:hover, .prev-slider-B-modal:hover, .next-slider-B-modal:hover {
    background-color: rgba(0, 0, 0, 0.8);
} */

/* Barre de navigation - modale */
/* .navbar-slider-B {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.navigation-point-B {
    height: 10px;
    width: 20%;
    background-color: #BBBBBB;
}

.navigation-point-B.active {
    background-color: #b9a18d;
} */

/* Barre de navigation - conteneur */
.navbar-slider-B {
    position: relative;
    width: 70%;
    height: 10px;
    min-height: 10px;
    background-color: #BBBBBB; /* Couleur de fond */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Ligne glissante */
.navigation-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-height: 10px;
    background-color: #b9a18d; /* Couleur active */
    transition: left 0.3s ease; /* Animation fluide */
}