/* MOBILE */

.cat-slider{
display:flex;
gap:14px;
overflow-x:auto;
padding:12px 0;
scrollbar-width:none;
scroll-behavior:smooth;
}

.cat-slider::-webkit-scrollbar{
display:none;
}

.cat-item{
min-width:80px;
text-align:center;
text-decoration:none;
color:#111;
flex-shrink:0;
}

.cat-item img{
width:65px;
height:65px;
border-radius:50%;
object-fit:cover;
margin:auto;
display:block;
}

.cat-item span{
font-size:12px;
margin-top:6px;
display:block;
}

/* TABLET */

@media(min-width:768px){

.cat-item{
min-width:110px;
}

.cat-item img{
width:90px;
height:90px;
}

.cat-item span{
font-size:14px;
}

}

/* LAPTOP */

@media(min-width:1024px){

.cat-slider{
justify-content:flex-start;
gap:30px;
}

.cat-item{
min-width:140px;
}

.cat-item img{
width:110px;
height:110px;
}

.cat-item span{
font-size:15px;
font-weight:500;
}

}