.apf-wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
}

.apf-filters{
    background:#fff;
    padding:20px;
    border-radius:16px;
    position:sticky;
    top:20px;
}

#apf-products{
    display:grid;
    grid-template-columns:
        repeat(auto-fill,minmax(220px,1fr));
    gap:20px;
}

.product-card{
    border:1px solid #eee;
    border-radius:16px;
    overflow:hidden;
    padding:10px;
}

.product-card img{
    width:100%;
    height:auto;
}

@media(max-width:768px){

    .apf-wrapper{
        grid-template-columns:1fr;
    }

    .apf-filters{
        position:fixed;
        right:0;
        top:0;
        width:300px;
        height:100vh;
        z-index:9999;
        overflow:auto;
    }
}