.image-tabs {
    margin: 0 auto;
    font-family: sans-serif;
}

/* Barre d’onglets */
.tab-buttons {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #ccc; /* ligne de séparation */
    margin-bottom: 15px;
}

/* Boutons d’onglets */
.tab-btn {
    background: transparent;
    border: 1px solid #ccc;
    border-bottom: none; /* pas de bordure en bas pour l’effet onglet */
    padding: 8px 16px;
    margin-right: 4px;
    cursor: pointer;
    border-radius: 6px 6px 0 0; /* coins arrondis en haut */
    transition: background 0.2s, border-color 0.2s;
}

.tab-btn:hover {
    border: 1px solid #ccc;
}

/* Onglets inactifs */
.tab-btn:not(.active) {
    color: #333;
    background: transparent;
}

/* Onglet actif */
.tab-btn.active {
    background: var(--color-primary);
    border-bottom: 2px solid white; /* masque la bordure du conteneur */
    position: relative;
    top: 2px; /* petit ajustement pour recoller */
}

/* Contenu des onglets */
.tab-contents .tab-content {
    display: none;
    text-align: center;
}

.tab-contents .tab-content.active {
    display: block;
}