/* Add custom CSS styles below */ 
/* حاوية الأيقونات */
#social-icons-container {
    position: fixed;
    top: 60%;
    left: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-50%);
}

/* الأيقونات الفردية */
.social-icon-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon-btn img {
    width: 24px;
    height: 24px;
}

.social-icon-btn:hover {
    transform: scale(1.05);
}

/* تغيير لون السعر في صفحة المنتج */
.font-bold.text-xl.inline-block.dm-text-main {
    color: red !important;
}
/* تغيير لون السعر في الصفحة الرئيسية */
.pc-t {
    color: red !important;
}
/* تغيير لون اسم المنتج إلى الأسود */
.title.title--primary.title--small.my-2.pc-t {
    color: black !important;
}
/* تغيير لون النص إلى الأسود الخفيف */
.product-subtitle.pc-t {
    color: #333333 !important; /* لون أسود خفيف */
}
.s-button-text {
    color: red !important;
}



.enhanced-total-price.font-bold.text-lg.inline-block {
  color: #ff0000 !important;
}





@keyframes pulse-red-orange {
    0% { color: #e11d48; text-shadow: 0 0 6px #e11d48; }
    50% { color: #f97316; text-shadow: 0 0 8px #f97316; }
    100% { color: #e11d48; text-shadow: 0 0 6px #e11d48; }
}

.s-add-product-button-mini-checkout-content {
    animation: pulse-red-orange 4s infinite;
    font-weight: bold !important;
    position: relative;
}

@keyframes float-emoji-side {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.floating-emoji-inline {
    display: inline-block;
    margin-left: 5px;
    animation: float-emoji-side 2.5s infinite ease-in-out;
    font-size: 18px;
    vertical-align: middle;
}






/* نافذة العروض الحالية (هوية محايدة) */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;600;800&display=swap');

#promo-window {
  font-family: 'Tajawal', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  direction: rtl;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0 20px;
  padding: 18px;
  border: 1px solid #e5e5e5;
  background: linear-gradient(135deg, #ffffff, #fafafa);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  color: #333;
  position: relative;
  overflow: hidden;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}

#promo-window.promo--in {
  opacity: 1;
  transform: translateY(0);
}

.promo-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #222;
  text-align: center;
}

.promo-list {
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
.promo-list li { margin: 6px 0; }

.promo-close {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #eee;
  background: #ffffffd9;
  color: #333;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background .2s ease, transform .15s ease, color .2s ease;
}
.promo-close:hover { background: #f7f7f7; transform: scale(1.04); color: #000; }

/* إخفاء أي ديكور قديم لو موجود بالصفحة */
.nd95-flag, .nd95-badge { display: none !important; }

@media (min-width: 768px) {
  #promo-window { padding: 20px; }
  .promo-head { font-size: 20px; }
}






.sicon-fire {
  color: #dc2626;              /* أحمر ناري */
  animation: flame 1s infinite alternate;
}

/* حركة الاشتعال */
@keyframes flame {
  0% {
    transform: scale(1) rotate(0deg);
    text-shadow: 0 0 5px #ff6a00, 0 0 10px #ff0000;
    color: #dc2626;
  }
  50% {
    transform: scale(1.2) rotate(-5deg);
    text-shadow: 0 0 10px #ff9a00, 0 0 20px #ff4500;
    color: #ff4500;
  }
  100% {
    transform: scale(1) rotate(5deg);
    text-shadow: 0 0 5px #ff6a00, 0 0 15px #ff0000;
    color: #dc2626;
  }
}