/* Add custom CSS styles below */ 
#popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 30px;
  border: 2px solid #1c87c9;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  max-width: 90%;
  width: 500px;
  text-align: center;
  font-family: 'Tahoma', sans-serif;
  direction: rtl;
}

#popup .payment-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

#popup .payment-logos img {
  height: 40px;
}

#popup h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

#popup p {
  font-size: 16px;
  margin-bottom: 15px;
}

#popup button {
  padding: 12px 28px;
  background: #1c87c9;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
}