
.swiper {
  overflow: hidden;
  padding: 20px 0;
}
.swiper-slide {
  width: auto;
}
.product-item {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.image-holder {
  overflow: hidden;
  position: relative;
}
.product-image {
  width: 100%;
  transition: transform 0.4s ease;
}
.product-item:hover .product-image {
  transform: scale(1.05);
}
.btn-icon.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.price-reveal {
  position: relative;
  display: inline-block;
  font-weight: bold;
}
.price-reveal::after {
  content: attr(data-after);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
}
.price-reveal:hover span {
  opacity: 0;
}
.price-reveal:hover::after {
  transform: translateY(0);
  opacity: 1;
}
