
/* ✅ شريط دعم واتساب أعلى الصفحة */
.support-bar {
  background: #28a745;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

/* ✅ أزرار مشاركة على جانب الشاشة */
.share-buttons {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 9999;
  transform: translateY(-50%);
}
.share-buttons a {
  display: block;
  margin: 5px;
  padding: 10px;
  color: #fff;
  border-radius: 0 5px 5px 0;
  text-decoration: none;
  font-size: 14px;
}
.share-buttons a.facebook { background: #1877f2; }
.share-buttons a.whatsapp { background: #25D366; }
.share-buttons a.twitter { background: #1DA1F2; }
.share-buttons a.copylink { background: #333; cursor: pointer; }

/* ✅ تقييم نجوم شكلي */
.star-rating {
  text-align: center;
  margin: 20px 0;
}
.star-rating span {
  font-size: 24px;
  color: gold;
  cursor: pointer;
}

/* ✅ إشعار المبيعات الوهمي */
#saleNotification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  display: none;
  z-index: 9999;
  font-size: 14px;
}
