.filter-widget{
    background: #F3F4FF;
    border-radius: 24px;
    padding: 32px;
}
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.filter-btn {
    background-color: #f5f7ff;
    color: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
}
.filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.filter-widget-button{
    display: none;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary);
    justify-content: center;
    will-change: top;
    transition: 0.15s
}
.filter-widget-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    display: none;
    background: #0000006b;
}
.filter-widget-button:hover{
    opacity: 0.8;
}

@media (max-width: 768px){
    .filter-widget-button{
        display: flex;
        position: fixed;
        top: 50px;
        right: 16px;
        padding: 16px 48px;
        background: white;
        border-radius: 360px;
    }
    .filter-widget{
        transform: translateY(700px);
        transition: 0.3s;
        position: fixed;
        bottom: 0;
        left: 0;
        margin: 0px 0px;
        width: 100%;
        z-index: 99;
    }
    .active-widget{
        transform: translateY(0);
    }
}
