/* Add custom CSS styles below */ 
.enhanced-total-price.font-bold.text-lg.inline-block {
  color: #ff0000 !important;
}




#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px; /* غيّرها إلى left: 20px; لو تبغى باليسار */
    z-index: 99999;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pop-up 1s ease-in-out, float-effect 3s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

/* أيقونة الواتساب */
#whatsapp-btn img {
    width: 30px;
    height: 30px;
}

/* النقطة الحمراء النابضة */
#whatsapp-btn::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #ff2d2d;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(255,45,45,.6);
    animation: pulse-badge 1.5s ease-out infinite;
}

/* تأثير عند مرور الماوس */
#whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    background-color: #20B25B;
}

/* أنيميشنات */
@keyframes pop-up {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float-effect {
    0% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(255,45,45,.6); transform: scale(1); }
    70% { box-shadow: 0 0 0 10px rgba(255,45,45,0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); transform: scale(1); }
}





@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;
}




/* تغيير لون السعر في صفحة المنتج */
.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; /* لون أسود خفيف */
}





/* خط عربي أنيق */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;600;800&display=swap');

#nd95-window {
  font-family: 'Tajawal', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  direction: rtl;
  width: 100%;
  margin: 16px 0 20px;
  padding: 20px;
  border: 2px solid #006C35;
  background: linear-gradient(135deg, #f8fff9, #eafbf1);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,108,53,.18);
  color: #073b22;
  position: relative;
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}

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

.nd95-head {
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
  color: #006C35;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nd95-msg {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f4128;
}

.nd95-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nd95-input {
  border: 1px solid #c6e7d4;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 130px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .5px;
  color: #064e2b;
}

.nd95-copy {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  background: #006C35;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(0,108,53,.6);
  transition: transform .15s ease, box-shadow .3s ease, background .2s ease;
}
.nd95-copy:hover { background:#055b2e; box-shadow: 0 0 18px 2px rgba(0,108,53,.35); transform: translateY(-1px); }
.nd95-copy:active { transform: translateY(0); }

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

.nd95-flag {
  position: absolute;
  inset-inline-start: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, #0a7a43 60%, transparent 61%);
  opacity: .08;
  pointer-events: none;
}