/* توحيد ارتفاع اسم المنتج (سطرين كحد أقصى) حتى يتساوى موضع السعر ونسبة الخصم في كل صف */
.product-card__title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 40px;
  line-height: 20px;
}

/* تنسيق شارة نسبة الخصم: خلفية خضراء فاتحة + نص أحمر */
.product-card__discount {
  margin-top: 4px;
}

.product-card__discount span {
  display: inline-block;
  background-color: #127041;
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 30px;
  line-height: 1.5;
}