.product-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'RimmaSans', sans-serif;
  max-width: 300px;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: scale(1.02);
}
.product-card img {
  width: 100%;
  height: auto;
}
.product-title {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
}
.product-price {
  padding: 0 15px 15px;
  color: #000;
  font-size: 16px;
}