/* ✅ البنر الأخضر لخصم 10% في صفحة الدفع فقط */

/* استهداف خيارات الدفع فقط */
section:has(.payment_card) .payment_card:nth-of-type(2),
section:has(.payment_card) .payment_card:nth-of-type(3) {
  position: relative;
}

section:has(.payment_card) .payment_card:nth-of-type(2)::after,
section:has(.payment_card) .payment_card:nth-of-type(3)::after {
  content: "خصم إضافي 10%";
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #00c853;
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  animation: pulse 1.5s infinite;
  z-index: 10;
  white-space: nowrap;
}

/* تأثير نبض خفيف */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% {
