/* Add custom CSS styles below */ 
/* إخفاء البريد من التوب بار */
.s-contacts-topnav-link {
  display: none !important;
}

/* زر اشتري الآن */
/*
.buy-now-btn {
  background-color: #ff6600 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  margin-right: 10px !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: 0.3s !important;
  display: inline-block !important;
  text-align: center !important;
  text-decoration: none !important;
}
*/

.buy-now-btn:hover {
  background-color: #e65c00 !important; /* أغمق عند المرور */
}
.buy-now-btn {
  margin-top: 10px !important; /* مسافة 10px فوق الزر */
}
/* توحيد مقاسات صور المنتجات */
.product-card img,
.s-product-card img,
.custom-salla-product-card img,
salla-product-image img {
  width: 100% !important;         /* ياخذ عرض الكارد */
  max-width: 250px !important;    /* أقصى عرض */
  height: 250px !important;       /* نفس الارتفاع */
  object-fit: contain !important; /* يحافظ على تناسب الصورة */
  background: #fff !important;    /* خلفية بيضاء نظيفة */
  margin: 0 auto !important;      /* توسيط الصورة */
  display: block !important;
  border-radius: 12px;            /* زوايا ناعمة (اختياري) */
}

/* زر الواتساب */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;   /* أسفل الشاشة */
  right: 20px;
  z-index: 99998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366; /* أخضر واتساب */
  color: #fff;
  display: grid; place-items: center;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
}
/* أنيميشن الدوران يمين ويسار */
@keyframes wiggle {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(15deg); }
  20%  { transform: rotate(-15deg); }
  30%  { transform: rotate(10deg); }
  40%  { transform: rotate(-10deg); }
  50%  { transform: rotate(5deg); }
  60%  { transform: rotate(-5deg); }
  70%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* زر المساعد */
.ai-chat-fab {
  position: fixed;
  bottom: 90px;   /* فوق الواتساب */
  right: 20px;
  z-index: 99999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid; place-items: center;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  animation: wiggle 1s ease-in-out infinite;
  animation-delay: 5s; /* يبدأ كل 5 ثواني */
  animation-iteration-count: infinite;
  animation-play-state: running;
}

/* زر الواتساب */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;   /* أسفل الشاشة */
  right: 20px;
  z-index: 99998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  animation: wiggle 1s ease-in-out infinite;
  animation-delay: 5s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}