/* Supprime le layout 2 colonnes */
.submenu__row {
    display: block !important;
}

/* Cache la colonne de gauche (les onglets) */
.submenu__left {
    display: none !important;
}

/* La colonne droite prend toute la largeur */
.submenu__right {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

/* Affiche tous les panneaux en même temps */
.submenu__right-items {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem;
}

.submenu__right-items.not-active {
    display: flex !important;
}

/* Chaque groupe de liens */
.menu-item__group--nochild,
.menu-item__group--child {
    min-width: 160px;
    flex: 1 1 160px;
}

/* ALIGNEMENENT DU MENU */
.ps-mainmenu:is(.ps-mainmenu--desktop) {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
.menu-item__group--nochild {
    text-transform: none;
}