/* Add custom CSS styles below */ 
/* تنسيق النجوم المضافة */
.product-card__content salla-rating-stars.custom-rating-added {
  display: flex; /* لتمكين التوسيط */
  justify-content: center; /* توسيط النجوم */
  margin-top: 8px; /* مسافة من الأعلى */
  margin-bottom: 8px; /* مسافة من الأسفل */
}

/* ضبط حجم خط عدد التقييمات */
.product-card__content salla-rating-stars.custom-rating-added .s-rating-stars-label {
  font-size: 13px;
  margin-inline-start: 6px; /* مسافة بين النجوم والنص */
  color: var(--color-text-secondary, #777); /* لون نص التقييمات */
}

/* تعديلات خاصة بالجوال إذا لزم الأمر */
@media (max-width: 767px) {
  .product-card__content salla-rating-stars.custom-rating-added {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .product-card__content salla-rating-stars.custom-rating-added .s-rating-stars-label {
    font-size: 12px;
  }
}