/* ✅ تأثير الظل لجميع العناصر النصية لتوضيحها على الخلفيات الداكنة */
.s-product-card-content-title,
.s-product-card-content-subtitle,
.s-product-card-price,
.s-button-element.s-button-primary-outline,
.menu_title {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 🎯 عنوان المنتج - اللون أبيض */
.s-product-card-content-title {
  color: white !important;
}

/* ✨ وصف المنتج بلون نعناعي فاتح */
.s-product-card-content-subtitle {
  color: #e0f2f1 !important;
}

/* 💰 السعر مع تأثير وميض خفيف لجذب الانتباه */
@keyframes fade-glow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.s-product-card-price {
  color: #f8f9fa !important;
  font-weight: bold;
  animation: fade-glow 3s infinite;
}

/* 🤍 زر المفضلة (القلب) باللون الأبيض */
.s-product-card-wishlist-btn {
  color: white !important;
  border-color: white !important;
  background-color: transparent !important;
}

/* 🎨 أيقونة القلب داخل الزر */
.s-product-card-wishlist-btn svg {
  fill: white !important;
  stroke: white !important;
}

/* 🛒 زر "أضف للسلة" باللون الأبيض */
.s-button-element.s-button-primary-outline {
  color: white !important;
  border-color: white !important;
  background-color: transparent !important;
}

/* 🖱️ تأثير عند تمرير الماوس على زر السلة */
.s-button-element.s-button-primary-outline:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #c9e4db !important;
  border-color: #c9e4db !important;
}

/* 📂 عنوان القائمة الجانبية مثل "بهارات" */
.menu_title {
  color: white !important;
}

/* 🌈 تحريك لوني جميل على الشعار */
@keyframes logoColorCycle {
  0%   { filter: drop-shadow(0 0 5px #f9c5d1); }   /* وردي فاتح */
  25%  { filter: drop-shadow(0 0 5px #fef3e2); }   /* سكري */
  50%  { filter: drop-shadow(0 0 5px #d0f0fd); }   /* أزرق فاتح */
  75%  { filter: drop-shadow(0 0 5px #ffffff); }   /* أبيض */
  100% { filter: drop-shadow(0 0 5px #f9c5d1); }
}

/* 🪄 تطبيق الحركة على الشعار */
.logo-light {
  animation: logoColorCycle 6s ease-in-out infinite;
  transition: all 0.5s ease;
}





/* تكبير الصورة وتغيير الظل عند التمرير */
.s-product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}















/* خلفية تغطي الشاشة */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* صندوق الخصم */
#popup-discount {
  background: #5a6e37; /* زيتوني */
  border-radius: 16px;
  padding: 20px;
  max-width: 320px;
  text-align: center;
  position: relative;
  color: white;
  animation: fadeInPop 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* صورة المفاجأة */
#popup-discount img.surprise-img {
  display: none;
  margin-top: 15px;
  border-radius: 12px;
  width: 100%;
}

/* نصوص */
#popup-discount h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

#popup-discount p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #e6f2ee;
}

/* زر النسخ */
.copy-btn {
  background: #ffffff;
  color: #3b5d4f;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.copy-btn:hover {
  background: #e0f0e6;
}

/* زر الإغلاق */
.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  color: #ccc;
  cursor: pointer;
}

@keyframes fadeInPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}





























#storeBadge{
  position: fixed; 
  left: 16px; 
  bottom: 16px; 
  z-index: 9999;
  padding: 10px 16px; 
  border-radius: 12px;
  background: #111; 
  color: #fff;
  font-size: 14px; 
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  font-family: sans-serif;
  display: none;
  animation: fadeIn 0.6s ease;
}
@keyframes fadeIn{
  from { opacity:0; t