/* Add custom CSS styles below */ 
/* أخفي النص الأصلي */
.s-reviews-summary-count {
  font-size: 0 !important;
}

/* اعرض نص بديل */
.s-reviews-summary-count::before {
  content: "بناءً على 1320 تقييم" !important;
  font-size: 14px; /* عدّلها حسب تصميمك */
}
/* إخفاء النص الأصلي */
.s-rating-stars-reviews {
  font-size: 0 !important;
}

/* عرض النص الجديد */
.s-rating-stars-reviews::before {
  content: "(1320 تقييم)" !important;
  font-size: 14px; /* عدّل حسب مقاس خط موقعك */
}
/* تعديل عرض شريط 5 نجوم */
.s-reviews-summary-row:first-child .s-progress-bar-progress {
  width: 97% !important;
}

/* تعديل النص 100% إلى 97% */
.s-reviews-summary-row:first-child .s-reviews-summary-percentage {
  font-size: 0 !important;
}

.s-reviews-summary-row:first-child .s-reviews-summary-percentage::before {
  content: "97%" !important;
  font-size: 14px;
}
/* 4 نجوم = الصف الثاني */
.s-reviews-summary-row:nth-child(2) .s-progress-bar-progress {
  width: 2% !important;
}

/* تغيير النص إلى 2% */
.s-reviews-summary-row:nth-child(2) .s-reviews-summary-percentage {
  font-size: 0 !important;
}

.s-reviews-summary-row:nth-child(2) .s-reviews-summary-percentage::before {
  content: "2%" !important;
  font-size: 14px;
}
/* 1 نجمة = الصف الخامس */
.s-reviews-summary-row:nth-child(5) .s-progress-bar-progress {
  width: 1% !important;
}

/* تغيير النص إلى 1% */
.s-reviews-summary-row:nth-child(5) .s-reviews-summary-percentage {
  font-size: 0 !important;
}

.s-reviews-summary-row:nth-child(5) .s-reviews-summary-percentage::before {
  content: "1%" !important;
  font-size: 14px;
}