/* Hide on desktop */
.mmh-mobile-topbar {
    display: none;
}

@media (max-width: 768px) {
    .mmh-mobile-topbar {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
        padding: 8px 0 6px;
        /* Low z-index so WoodMart mobile menu goes over it */
        position: relative;
        z-index: 1;
    }

    .mmh-mobile-topbar-item {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        text-decoration: none;
        color: #555;
        position: relative;
        padding: 2px 0;
        -webkit-tap-highlight-color: transparent;
    }

    .mmh-mobile-topbar-item + .mmh-mobile-topbar-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: #e0e0e0;
    }

    .mmh-mobile-topbar-item:active {
        color: #83b735;
    }

    .mmh-mobile-topbar-item.mmh-topbar-active {
        color: #83b735;
    }

    .mmh-mobile-topbar-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
    }

    .mmh-mobile-topbar-icon svg {
        display: block;
    }

    .mmh-mobile-topbar-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.2px;
        line-height: 1;
        white-space: nowrap;
    }
}
