/* Add custom CSS styles below */ 
/* صندوق عناصر الثقة المخصص - متجر روبي */
.salla-custom-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
  direction: rtl;
  font-family: sans-serif;
}

/* صندوق المشاهدين */
.live-viewers-box {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  border-radius: 30px;
}

.live-viewers-box p {
  margin: 0 !important;
  font-size: 13.5px;
  color: #166534;
  font-weight: 500;
}

#viewers-count {
  font-weight: bold;
  color: #15803d;
  font-size: 15px;
  margin: 0 4px;
}

/* النقطة التي تنبض */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-left: 8px;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #22c55e;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse-animation 1.5s infinite ease-in-out;
}

@keyframes pulse-animation {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* صندوق المبيعات والتقييم */
.product-proof-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 4px;
}

.proof-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
}

.proof-icon {
  margin-left: 6px;
  font-size: 15px;
}

.proof-item strong {
  font-weight: bold;
}

.sales-count strong {
  color: #dc2626;
}

.rating-percent strong {
  color: #d97706;
}/* تحريك أيقونة اللهب بشكل حركي ناري */
.flame-animation {
  display: inline-block !important;
  animation: sallaFlameEffect 1.2s infinite ease-in-out alternate !important;
  transform-origin: bottom center !important;
}

@keyframes sallaFlameEffect {
  0% {
    transform: translateY(0) scale(1) rotate(-1deg);
    filter: drop-shadow(0 0 2px rgba(220, 38, 38, 0.2));
  }
  50% {
    transform: translateY(-2px) scale(1.08) rotate(2deg); /* ترتفع وتكبر كشرارة النار */
    filter: drop-shadow(0 0 5px rgba(234, 88, 12, 0.5)); /* توهج برتقالي ناري */
  }
  100% {
    transform: translateY(-1px) scale(0.95) rotate(-2deg);
    filter: drop-shadow(0 0 1px rgba(220, 38, 38, 0.1));
  }
}