.stb-tab-bar {
    display: none;
}

@media (max-width: 700px) {
    body {
        /* keep page content from hiding behind the fixed bar */
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }

    .stb-tab-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 -3px 14px rgba(0,0,0,.12);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .stb-tab {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 8px 4px 6px;
        text-decoration: none !important;
        color: #555;
        min-height: 56px;
    }

    .stb-icon {
        font-size: 1.35rem;
        line-height: 1;
    }

    .stb-label {
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .01em;
    }

    .stb-tab.is-current {
        color: #FF1C8C;
    }

    .stb-tab.is-current .stb-icon {
        transform: translateY(-1px);
    }

    .stb-tab:active {
        background: rgba(255,28,140,.06);
    }
}
