/* Artesano Card v6.0 */
.artesano-card{
  max-width:420px;
  margin:0 auto;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
  text-align:center;
  background:#fff;
}
.artesano-carousel{
  position:relative;
  height:210px;
  overflow:hidden;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .6s ease;
}
.slide.active{ opacity:1; }
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.price{
  position:absolute;
  top:14px;
  right:14px;
  background:#255B4E;
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-weight:800;
}
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  z-index:5;
  background:rgba(0,0,0,.4);
  color:#fff;
}
.arrow.prev{ left:10px; }
.arrow.next{ right:10px; }

.artesano-card__body{ padding:18px 18px 22px; }
.titles{ margin-bottom:8px; }
.card-title{ font-size:20px; font-weight:700; line-height:1.2; }
.card-subtitle{ font-size:14px; color:#666; margin-top:4px; }

.description{ margin:10px 0 14px; font-size:14.5px; }

.socials{
  display:flex;
  justify-content:center;
  gap:14px;
  margin:8px 0 16px;
}
.socials a{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#f2f2f2;
  color:#111;
  font-size:18px;
}

.wa-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  background:#25d366;
  color:#fff;
}
.wa-btn i{ font-size:20px; }

@media (max-width:480px){
  .artesano-card{ max-width:100%; }
  .artesano-carousel{ height:260px; }
  .artesano-card__body{ padding:16px; }
}
