/* --- CONTAINER --- */
.vlc-tabs {
    width: 100%;
}

/* --- NAVIGATION --- */
.vlc-tabs-nav {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    background-image: url(https://wp.vivelacinq.fr/wp-content/uploads/commun/bg-content.jpg);
    background-repeat: repeat;
    overflow: visible;
    z-index: 9999;
}

.vlc-tabs + .elementor-section {
    position: relative;
    z-index: 1;
}

/* --- BOUTONS D’ONGLETS --- */
.vlc-tabs-nav button {
    position: relative;
    z-index: 5;

    /* Typo Elementor */
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);

    /* Layout */
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Dimensions */
    padding: 12px 22px;
    min-height: 42px;
    font-size: 15px;
    font-weight: 600;

    /* Couleurs onglet inactif */
    background: rgba(71, 71, 71, 0.4);
    color: #7a7a7a;

    /* Style épuré */
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
    outline: none;
}

/* --- HOVER (onglet inactif) --- */
.vlc-tabs-nav button:hover {
    background: rgba(71, 71, 71, 0.8);
    color: #fff;
}

/* --- ONGLET ACTIF --- */
.vlc-tabs-nav button.active {
    --triangle-left: calc(var(--active-left) + var(--active-width) / 2);
    background: #cf3046;
    color: #fff;
    z-index: 20;
}

/* --- POINTE TRIANGULAIRE SOUS L’ONGLET ACTIF --- */
/* Pointe globale */
.vlc-tabs-nav::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(var(--active-left) + var(--active-width) / 2);
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #cf3046;
    z-index: 50;
    transition: left 0.25s cubic-bezier(.4,0,.2,1); /* glissement fluide */
}

/* --- PANNEAUX --- */
.vlc-tabs-content {
    width: 100%;
    margin-top: 12px; /* espace pour laisser apparaître la pointe */
}

/* ----------------------------------------------------
   PANNEAUX D’ONGLETS — VERSION DURABLE & COMPATIBLE
   ---------------------------------------------------- */

/* Tous les panneaux existent dans le DOM */
.vlc-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;

    /* surtout : PAS de display:none, PAS de height:0 */
    overflow: visible;
}

/* Panneau actif */
.vlc-tab.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .vlc-tabs-nav {
        gap: 4px;
    }

    .vlc-tabs-nav button {
        padding: 10px 16px;
        font-size: 14px;
    }
}
