
/* =========================================================
   V95 — TOPBAR UNIFORME
   ========================================================= */

.mq95-topbar-layout {
    box-sizing: border-box !important;

    width: 100% !important;
    max-width: 1450px !important;

    margin: 0 auto !important;
    padding: 0 22px !important;

    min-height: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 22px !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
}

.mq95-topbar-left {
    display: flex !important;
    align-items: center !important;

    min-width: 0 !important;
    margin-right: auto !important;

    white-space: nowrap !important;
}

.mq95-topbar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 24px !important;

    margin-left: auto !important;

    white-space: nowrap !important;
}

.mq95-topbar-layout a,
.mq95-topbar-layout span {
    color: #ffffff !important;

    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: 400 !important;

    text-decoration: none !important;
}

.mq95-topbar-layout a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* Les éléments d'origine sont cachés après copie */
.mq95-original-hidden {
    display: none !important;
    visibility: hidden !important;
}

/* Tablette */
@media (max-width: 900px) {
    .mq95-topbar-layout {
        padding: 0 16px !important;
        gap: 14px !important;

        font-size: 12px !important;
    }

    .mq95-topbar-right {
        gap: 14px !important;
    }
}

/* Mobile :
   on conserve les 3 informations mais on autorise 2 lignes proprement */
@media (max-width: 620px) {
    .mq95-topbar-layout {
        min-height: auto !important;
        padding: 7px 12px !important;

        flex-wrap: wrap !important;
        row-gap: 5px !important;

        font-size: 11px !important;
    }

    .mq95-topbar-left {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .mq95-topbar-right {
        width: 100% !important;
        justify-content: flex-end !important;
        gap: 12px !important;
    }
}
