.product-thumbnails {
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 400px; /* Ajuste selon tes préférences */
    overflow-y: auto;
    scrollbar-width: none; /* Pour Firefox */
    margin-right: 20px;
}

.product-thumbnails::-webkit-scrollbar {
    width: 0px; /* Rendre la scrollbar invisible */
}

.product-thumbnails {
    -ms-overflow-style: none;  /* Pour Internet Explorer et Edge */
    scrollbar-width: none;     /* Pour Firefox */
}

.product-thumbnails img {
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
}

.product-main-image img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.product-main-image:hover img {
    transform: scale(1.2); /* Zoom à 120% au survol */
}

.zoomContainer {
    z-index: 999; /* S'assure que le zoom passe au-dessus de tous les autres éléments */
}

.thumbnail-image.selected {
    border: 2px solid #11cdc6; /* Bordure autour de la miniature sélectionnée */
    box-sizing: border-box;    /* S'assure que la bordure est incluse dans la taille de l'image */
}
