.untoto-product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  text-align: left;
  transition: all 0.3s ease;
}
.untoto-product-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.untoto-product-card .product-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.untoto-product-card img {
  width: 100%;
  border-radius: 10px;
}
.untoto-product-card .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
}
.untoto-product-card .product-title {
  font-size: 14px;
  margin: 8px 0 4px;
  font-weight: 600;
}
.untoto-product-card .product-rating {
  font-size: 13px;
  color: #666;
}
.untoto-product-card .product-price {
  font-size: 14px;
  font-weight: 700;
}
.untoto-product-card .discount {
  color: red;
  font-size: 13px;
  margin-left: 6px;
}
