.lm-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.lm-product-card img {
  border-radius: 12px;
  margin-bottom: 10px;
  height: 200px;
  object-fit: cover;
}

.lm-product-card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.lm-product-card .price {
  color: #c4a354; /* Gouden accentkleur */
  font-weight: 600;
}
