
.toouch-product-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0 10px;
}
.toouch-product-card {
  position: relative;
  overflow: hidden;
}
.toouch-product-img {
  position: relative;
  width: 100%;
}
.toouch-product-img img {
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}
.toouch-product-img .hover-img {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}
.toouch-product-card:hover .hover-img {
  opacity: 1;
  transform: scale(1.05);
}
.toouch-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.toouch-arrow-left { left: 10px; }
.toouch-arrow-right { right: 10px; }
.toouch-product-card:hover .toouch-arrow {
  opacity: 1;
}
.toouch-product-info {
  padding: 10px 0;
  text-align: center;
}
.product-title {
  font-size: 14px;
  margin: 0;
}
.price {
  font-size: 13px;
  color: #555;
}
