.product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-short-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  font-weight: bold;
  color: #333;
}

.free-download {
  font-weight: bold;
  color: #28a745;
}

.product img {
  filter: grayscale(50%) brightness(0.9) !important;
  transition: filter 0.3s ease;
}

/* Optional: Hover effect to restore color */
.product:hover img {
  filter: grayscale(0%) brightness(1) !important;
}
