.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0035CD;
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.4;
}

.topbar-inner {
    max-width: 1312px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.topbar-icon {
    flex-shrink: 0;
    height: 100%;
    width: auto;
}

.topbar-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    flex: 1;
}

.topbar-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.18px;
    text-align: left;
    color: var(--color-white);
    flex: 1;
}

.topbar-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.topbar-arrow img {
    width: 24px;
    height: 24px;
}

.topbar:hover {
    opacity: 0.95;
}

@media (max-width: 767px) {
    .topbar-inner {
        gap: 8px;
    }

    .topbar-text-desktop {
        display: none;
    }

    .topbar-text-mobile {
        display: inline;
    }
}

@media (min-width: 1024px) {
    .topbar {
        padding: 0 64px;
    }

    .topbar-inner {
        gap: 12px;
        justify-content: center;
        align-items: stretch;
    }
    
    .topbar-text {
        font-family: var(--font-heading);
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
        letter-spacing: -0.22px;
    }

    .topbar-arrow img {
        width: 32px;
        height: 32px;
    }

    .topbar-text-desktop {
        display: inline;
    }

    .topbar-text-mobile {
        display: none;
    }
}

/* Décaler le header sous la topbar et garder le comportement sticky/fixed */
@media (max-width: 1023px) {
    .header {
        top: 56px;
    }

    .mobile-menu {
        top: calc(64px + 56px);
        height: calc(100vh - (64px + 56px));
    }
}

@media (min-width: 1024px) {
    .header {
        top: 56px;
    }
}


