/* Add custom CSS styles below */ 


/* رسالة نسخ الرابط (Toast) */


#karzoun-widget-send-button {
    bottom: 24px;
}
.product-single #karzoun-widget-send-button {
    bottom: 110px;
}
.copy-toast {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  font-size: 15px;
  transition: opacity 0.5s;
  z-index: 99999;
}


.copy-toast.show {
  opacity: 1;
}


/* تصميم زر المشاركة */
.copy-url-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;              /* تم التكبير */
  height: 60px;             /* تم التكبير */
  background-color: #ef4444;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.2s;
}


/* صفحة المنتج فقط */
.product-single .copy-url-btn {
  bottom: 110px;
   z-index: 100000; /* تأكد أنه فوق كل العناصر */
}


/* أيقونة المشاركة */
.copy-url-btn svg {
  width: 36px;              /* تكبير الأيقونة */
  height: 36px;
  fill: #fff;
}

/* عند المرور */
.copy-url-btn:hover {
  background-color: #9396e0;
}

/* عند الضغط */
.copy-url-btn:active {
  transform: scale(0.9);
}

/* Toast رسالة النسخ */
.copy-toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  font-size: 15px;
  transition: opacity 0.5s, transform 0.3s;
  transform: translateY(10px);
  z-index: 99999;
}

/* إظهار الرسالة */
.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}




/* ===== السعر بعد الخصم ===== */
.total-price.text-red-400.font-bold.text-xl.inline-block {
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #c90000 !important;
}

/* ===== السعر قبل الخصم ===== */
.old-price,
.compare-at-price,
del {
  font-size: 14px !important;
  color: #777 !important;
  text-decoration: line-through !important;
  margin-left: 6px;
}

/* ===== صندوق الباكج ===== */
.bundle-offer {
  background: #fff3cd;
  border: 2px dashed #f0ad4e;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== رسائل تحفيزية ===== */
.scarcity {
  color: #b30000;
  font-size: 13px;
  font-weight: bold;
  margin-top: 6px;
}

.motivation-text {
  color: #0a7a0a;
  font-size: 13px;
  margin-top: 5px;
}

/* ===== زر اطلبيها الآن ===== */
.order-now-btn {
  background: linear-gradient(45deg, #000, #333) !important;
  color: #fff !important;
  font-size: 18px !important;
  padding: 14px !important;
  border-radius: 10px !important;
}

/* ===== تثبيت الزر في الجوال ===== */
@media (max-width: 768px) {
  .order-now-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-radius: 0 !important;
  }

  body {
    padding-bottom: 90px;
  }
}





/* =====  حركه زر===== */

@keyframes attentionPulse {
  0% {
    transform: scale(1);
   box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.9);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes attentionShake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.force-attention {
  animation: attentionPulse 2s infinite !important;
  position: relative !important;
  z-index: 10 !important;
}

.force-attention.shake-now {
  animation: attentionShake 0.5s !important;
}