.customer-mobile-nav {
    display: none;
}

@media (max-width: 820px) {
    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
    }

    .customer-mobile-nav {
        position: fixed;
        z-index: 90;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        width: min(100%, 480px);
        min-height: 72px;
        margin: 0 auto;
        padding: 9px 8px calc(8px + env(safe-area-inset-bottom));
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: end;
        border: 1px solid #dce7e1;
        border-bottom: 0;
        border-radius: 22px 22px 0 0;
        background: rgba(251, 253, 252, .97);
        box-shadow: 0 -7px 24px rgba(18, 46, 34, .11);
        backdrop-filter: blur(16px);
    }

    .customer-mobile-nav a,
    .customer-mobile-nav button {
        display: flex;
        min-width: 0;
        padding: 3px 0;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: #77857e;
        border: 0;
        background: transparent;
        font: 600 8px/1.1 'DM Sans', system-ui, sans-serif;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .customer-mobile-nav svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

    .customer-mobile-nav .active {
        color: #009b54;
        font-weight: 800;
    }

    .customer-mobile-nav-action {
        display: grid;
        width: 43px;
        height: 43px;
        margin-top: -25px;
        place-items: center;
        color: #fff;
        border: 4px solid #f7f8f4;
        border-radius: 50%;
        background: #087a50;
        box-shadow: 0 7px 16px rgba(8, 122, 80, .3);
    }

    .customer-mobile-nav-action svg {
        width: 19px;
        height: 19px;
    }

    .customer-mobile-nav a:focus-visible,
    .customer-mobile-nav button:focus-visible {
        outline: 3px solid #f0b735;
        outline-offset: 2px;
        border-radius: 8px;
    }
}
