
.filters-open-btn
{
    display: none;
}

@media (max-width: 768px)
{
    .filters-open-btn
    {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        position: fixed;
        bottom: calc(1rem + env(safe-area-inset-bottom));
        left: 50%;
        transform: translateX(-50%);
        z-index: 1100;
        padding: .6rem .9rem;
        background: #222;
        color: #fff;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        font-weight: 600;
    }
}
