/* Add custom CSS styles below */ 
/* ==== تصميم البطاقة الحديثة للكوبون ==== */
#welcome-coupon-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

#welcome-coupon-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 380px;
  padding: 26px 20px;
  border-radius: 18px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: couponFadeIn 0.4s ease;
  font-family: "Tajawal", sans-serif;
}

#welcome-coupon-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #111827;
}

/* ليبل الكوبون */
#welcome-coupon-code {
  display: block;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  color: #1f2937;
  border: 2px dashed #dc2626;
  font-size: 22px;
  font-weight: 800;
  padding: 16px 0;
  border-radius: 12px;
  margin-bottom: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  user-select: all;
}

/* زر النسخ */
#welcome-copy-btn {
  display: inline-block;
  width: 80%;
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

#welcome-copy-btn:hover {
  background: #b91c1c;
}

#welcome-copy-btn:active {
  transform: scale(0.97);
}

#welcome-coupon-note {
  font-size: 14px;
  color: #6b7280;
  margin-top: 10px;
}

#welcome-coupon-close {
  position: absolute;
  top: 10px;
  left: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s ease;
}

#welcome-coupon-close:hover {
  color: #111827;
}

@keyframes couponFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}