/* popup-style.css */
.tv-popup-wrapper {
  display: none;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  max-width: 800px;
  width: 90%;
}

.tv-popup-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tv-left-col, .tv-right-col {
  flex: 1 1 45%;
}

.tv-left-col p,
.tv-right-col p {
  font-size: 15px;
  margin-bottom: 10px;
}

#tv-payments .payment-method-box {
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .tv-popup-columns {
    flex-direction: column;
  }
}
