.rr-shop{
display:grid;
grid-template-columns:270px 1fr;
gap:22px;
max-width:1250px;
margin:auto;
padding:12px;
}

.rr-sidebar{
background:#fff;
border-radius:12px;
border:1px solid #e6e6e6;
padding:16px;
height:max-content;
position:sticky;
top:120px;
}

.rr-products ul.products{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.rr-products li.product{
background:#fff;
border-radius:14px;
border:1px solid #e6e6e6;
padding:12px;
transition:.25s;
}

.rr-products li.product:hover{
box-shadow:0 12px 28px rgba(0,0,0,.12);
transform:translateY(-3px);
}

.rr-products li.product img{
border-radius:10px;
}

.rr-products li.product h2{
font-size:14px;
font-weight:600;
}

.rr-products li.product .price{
font-size:18px;
font-weight:700;
color:#E63946;
}

.rr-toolbar{
display:flex;
justify-content:space-between;
margin-bottom:15px;
background:#fff;
border:1px solid #e6e6e6;
border-radius:12px;
padding:12px 16px;
}

/* MOBILE */

@media(max-width:980px){

.rr-shop{
grid-template-columns:1fr;
}

.rr-sidebar{
display:none;
}

.rr-products ul.products{
grid-template-columns:repeat(2,1fr);
}

}

.rr-filter-btn{
display:none;
background:#E63946;
color:#fff;
border:none;
border-radius:20px;
padding:8px 14px;
font-weight:600;
}

@media(max-width:980px){

.rr-filter-btn{
display:block;
}

.rr-sidebar{
position:fixed;
left:0;
top:0;
height:100%;
width:280px;
background:#fff;
z-index:9999;
transform:translateX(-100%);
transition:.3s;
}

.rr-sidebar.rr-open{
transform:translateX(0);
}

}