/* CONTAINER */

.main-umkm{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
padding:40px 20px;
}

/* CARD */

.shop-card{
width:320px;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,0.1);
transition:0.3s ease;
display: flex;
flex-direction: column;
}

.shop-card:hover{
transform:translateY(-8px);
}

/* SLIDER */

.slider-shop{
position:relative;
width:100%;
height:220px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

.slides-shop{
position:relative;
width:100%;
height:100%;
}

.slide-shop{
position:absolute;
width:100%;
height:100%;
object-fit:contain;
background:#f5f5f5;
opacity:0;
transition:0.5s;
}

.slide-shop.active{
opacity:1;
}

/* BUTTON */

.prev-shop,
.next-shop{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.4);
color:#fff;
border:none;
padding:8px 12px;
cursor:pointer;
border-radius:50%;
font-size:18px;
}

.prev-shop{left:10px;}
.next-shop{right:10px;}

/* DOT */

.dots-shop{
position:absolute;
bottom:10px;
width:100%;
text-align:center;
}

.dot-shop{
display:inline-block;
width:8px;
height:8px;
margin:0 4px;
background:#ddd;
border-radius:50%;
cursor:pointer;
}

.dot-shop.active{
background:#000;
}

/* CONTENT */

.card-content{
padding:20px;
text-align:center;
}

.card-content h3{
font-size:18px;
margin-bottom:8px;
}

.price{
font-size:15px;
color:#555;
margin-bottom:15px;
}

.btn-buy{
padding:10px 20px;
border:none;
background:#000;
color:#fff;
border-radius:25px;
cursor:pointer;
transition:0.3s;
}

.btn-buy:hover{
background:#333;
}

/* MOBILE */

@media(max-width:768px){

.shop-card{
width:90%;
max-width:350px;
}

.slider-shop{
height:200px;
}


.card-content h3{
font-size:16px;
}

.price{
font-size:14px;
}

}