.gallery-container {
    max-width: 1140px;
    margin: 30px auto;
}

.carousel-item {
    height: 600px;
    background: #fff;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 3px;
    padding: 20px;
}

/* Thumbnails */
.thumbnails {
    background: #fff;
    padding: 15px;
    margin-top: 15px;
    /*border: 1px solid #ddd;*/
}

.thumb-wrapper {
    display: flex;
    justify-content: center;  /* Centre horizontalement */
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
}

.thumb {
    flex: 0 0 100px;
    height: 70px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /*contain*/
}

.thumb:hover {
    border-color: #007bff;
}

.thumb.active {
    border-color: #007bff;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .thumb {
        flex: 0 0 80px;
        height: 60px;
    }
}