/* تنسيق عدد التقييمات */
.salla-rating-stars{
    content: "(3054 تقييم)"; /* إضافة عدد التقييمات */
    font-size: 16px;
    font-weight: bold;
    color: #9ca3af; /* لون رمادي مشابه للصورة */
    margin-right: 8px; /* تباعد بين العدد والنجوم */
}

/* تنسيق النجوم */
.s-rating-stars-wrapper .s-rating-stars-btn-star {
    color: gold #important; /* لون النجوم ذهبي */
    font-size: 20px;
    letter-spacing: 2px; /* تباعد بين النجوم */
}


/* تحريك نص إعلان سلة */
.s-advertisement-content-main {
  display: inline-block !important;
  white-space: nowrap;
  overflow: hidden;
  animation: moveText 35s linear infinite;
  direction: rtl;
  color: #fff;
  font-weight: 600;
}

/* الحركة من اليسار إلى اليمين */
@keyframes moveText {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* توقف عند مرور الماوس */
.s-advertisement-content-main:hover {
  animation-play-state: paused;
  cursor: pointer;
}

/* الأيقونة */
.s-advertisement-content-icon {
  color: #fff !important;
  margin-left: 10px;
  flex-shrink: 0;
}