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

@media (max-width: 699px) {
    :root {
        --mobile-tabs-height: 66px;
    }

    .wwyd-tabbed-page {
        padding-bottom: calc(var(--mobile-tabs-height) + env(safe-area-inset-bottom));
    }

    .choose-body.wwyd-tabbed-page .choose-app {
        height: 100%;
        min-height: 0;
    }

    .waitlist-body.wwyd-tabbed-page .waitlist-shell {
        height: 100%;
    }

    .mobile-tab-bar {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        height: calc(var(--mobile-tabs-height) + env(safe-area-inset-bottom));
        border-top: 1px solid rgb(31 29 27 / 12%);
        background: rgb(255 253 248 / 96%);
        padding: 5px max(5px, env(safe-area-inset-right))
            env(safe-area-inset-bottom) max(5px, env(safe-area-inset-left));
        box-shadow: 0 -8px 28px rgb(25 23 21 / 10%);
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
            "Helvetica Neue", Arial, sans-serif;
        -webkit-backdrop-filter: blur(18px) saturate(1.25);
        backdrop-filter: blur(18px) saturate(1.25);
    }

    .mobile-tab {
        position: relative;
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        border-radius: 13px;
        color: #77736e;
        font-size: 10px;
        font-weight: 650;
        line-height: 1.1;
        text-align: center;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-tab svg {
        width: 23px;
        height: 23px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-tab.is-active {
        background: #f0ecff;
        color: #5646c4;
        font-weight: 750;
    }

    .mobile-tab.is-active::before {
        position: absolute;
        top: -5px;
        width: 28px;
        height: 3px;
        border-radius: 0 0 999px 999px;
        background: #5646c4;
        content: "";
    }

    .mobile-tab.is-disabled {
        color: #aaa6a1;
        cursor: not-allowed;
        filter: grayscale(1);
    }

    .mobile-tab small {
        display: inline-block;
        margin-left: 2px;
        border-radius: 999px;
        background: #e5e2de;
        padding: 1px 4px;
        color: #8b8782;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        vertical-align: 1px;
    }

    .wwyd-toast {
        bottom: calc(var(--mobile-tabs-height) + 12px + env(safe-area-inset-bottom));
    }
}
