.rr-category-grid{
display:grid;
grid-template-columns:repeat(8,1fr);
gap:14px;
}

.rr-main-category-card{
border:1px solid rgba(136,110,85,.35);
border-radius:20px;
overflow:hidden;
background:#fff;
cursor:pointer;
transition:.3s;
}

.rr-main-category-card img{
width:100%;
height:150px;
object-fit:cover;
}

.rr-main-category-card span{
display:block;
padding:10px;
text-align:center;
font-weight:800;
}

.rr-main-category-card.active{
transform:translateY(-5px);
border-color:#4C382D;
}

.rudra-sub-grid{
display:flex;
gap:12px;
flex-wrap:wrap;
margin:25px 0;
}

.rudra-sub-card{
background:#fff;
border:1px solid #886E55;
padding:12px 18px;
border-radius:50px;
cursor:pointer;
font-weight:700;
}

.rudra-sub-card.active{
background:#4C382D;
color:#fff;
}

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

@media(max-width:992px){
.rr-category-grid{grid-template-columns:repeat(4,1fr);}
.rr-product-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
.rr-category-grid{grid-template-columns:repeat(2,1fr);}
.rr-product-grid{grid-template-columns:1fr;}
}
