/* ===== BANDEAU MOBILE BAS ===== */
#hm-banner-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #0d2461;
    height: 60px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hm-banner-inner {
    display: flex;
    height: 100%;
}

.hm-banner-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background 0.2s;
}

.hm-banner-col:first-child {
    border-right: 1px solid rgba(255,255,255,0.15);
}

.hm-banner-col:hover {
    background: rgba(255,255,255,0.08);
}

.hm-banner-col .material-icons {
    font-size: 20px !important;
    color: #a6c5d5;
}

.hm-banner-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hm-banner-label span:first-child {
    font-size: 0.65rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hm-banner-label span:last-child {
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 860px) {
    #hm-banner-mobile {
        display: block;
    }
}