/* --- Gallery principale --- */
.pixeliogallery {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

/* --- Slide principal (top) --- */
.pixeliogallery .gallery-top {
    width: 100%;
    height: 500px;
    margin-bottom: 15px;
}

.pixeliogallery .gallery-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Thumbnails (miniatures) --- */
.pixeliogallery .gallery-thumbs {
    margin-top: 50px;
    height: 100px;
    box-sizing: border-box;
}

.pixeliogallery .gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* --- Thumbnails alternés --- */
.pixeliogallery .gallery-thumbs .swiper-slide:nth-child(odd) {
    background: #f2f2f2;   /* gris clair */
    border-radius: 8px;     /* arrondi */
    padding: 20px;          /* espace autour de l'image */
}


@media screen and (max-width: 600px) {
    .pixeliogallery .gallery-thumbs{
     margin-top: 10px;
    }

    .pixelio-icons{
        display: flex    ;
        align-content: center;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .pixelio-icon-wrapper{
        margin: 0;
    }
}
@media screen and (max-width: 1000px) {
    .pixeliogallery .gallery-thumbs .swiper-slide:nth-child(odd) {
        padding: 12px;
        position: relative;
        min-width: 100px;
        min-height: 100px;
}
}