/* ستايل الخلفية */
.popup-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 59, 48, 0.7); /* لون غامق شفاف */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* ستايل البوب أب */
.popup-box {
  background: #fff;
  padding: 30px;
  max-width: 450px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-family: 'Tajawal', sans-serif;
  line-height: 1.6;
}

.popup-box h2 {
  margin: 0 0 15px;
  font-size: 24px;
  color: #113B30; /* اللون الأخضر الداكن */
  font-weight: bold;
}
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.popup-box .discount-code {
  font-weight: bold;
  color: #113B30;
  background: #f0f8f4;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 5px;
}

.copy-btn {
  margin-top: 15px;
  padding: 12px 25px;
  background: #113B30; /* نفس اللون */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.copy-btn:hover {
  background: #0d2f24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 59, 48, 0.3);
}

.copy-btn.copied {
  background: #28a745;
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* تأثير الإغلاق التدريجي */
.popup-overlay.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.popup-box.slide-out {
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease-out;
}

/*  title */



.s-slider-block__title h2:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0px;
}

.s-slider-block__title-right:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 2rem;
    padding-right: 2rem;
}


.s-slider-block__title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    display: flex;
    max-width: 1280px;
    align-items: center;
    justify-content: center;
}


.s-slider-block__title h2 {
    font-size: 2rem;
}





/* بدج بسيط للشحن المجاني */
.simple-free-shipping-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #113b30;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 2px 6px rgba(17, 59, 48, 0.3);
  white-space: nowrap;
  z-index: 15;
}

/* التأكد من وضعية relative للمنتجات */
salla-product-card,
.product-card,
.product-entry {
  position: relative !important;
}

/* للموبايل */
@media (max-width: 768px) {
  .simple-free-shipping-badge {
    padding: 4px 8px;
    font-size: 11px;
    top: 6px;
    right: 6px;
  }
}