.elementor-4757 .elementor-element.elementor-element-fd21cce{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4b458d0 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700&display=swap');

body {
  background: #111;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Pricing Grid */
.iptv-pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Plan Card */
.iptv-plan {
  background: #1c1c1c;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(166, 103, 247, 0.12);
  min-height: 520px;
  transition: all 0.3s ease;
}

.iptv-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(166, 103, 247, 0.25);
}

.plan-header {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Price */
.plan-price {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-price s {
  font-size: 16px;
  color: #bbb;
  margin-right: 8px;
  opacity: 0.6;
}

.plan-price span {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, #f7b733, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features */
.plan-features li {
  text-align: left;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.plan-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(1.2);
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  margin-top: 10px;
  background: #000;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none !important;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

/* VIP Buy Button for Special Plan */
.buy-btn.vip-glow {
  background: linear-gradient(to right, #ff4a00, #f7b733);
  color: #000;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.buy-btn.vip-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 94, 0, 0.5);
}

.badge-best {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff4a00, #fc4a1a);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  line-height: 1.4;
  white-space: nowrap;
}

/* ✨ Highlighted Box Animation */
.best-selling {
  border: 2px solid #fc4a1a;
  animation: pulseGlow 2.5s infinite ease-in-out;
  z-index: 3;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 18px rgba(252, 74, 26, 0.3); }
  50% { box-shadow: 0 0 30px rgba(252, 74, 26, 0.5); }
  100% { box-shadow: 0 0 18px rgba(252, 74, 26, 0.3); }
}

/* Responsive */
@media (max-width: 1200px) {
  .iptv-pricing-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .iptv-pricing-container { grid-template-columns: 1fr; }
  .iptv-plan { min-height: auto; }
}

/* ✅ PAYMENT POPUP DESIGN */
#checkoutPopupOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}

#checkoutPopupOverlay .checkout-wrapper {
  background: #fff;
  border-radius: 16px;
  width: 480px;
  max-width: 95%;
  margin: 0 auto;
  padding: 30px;
  color: #000;
  position: relative;
  font-family: 'Outfit', sans-serif;
}

#checkoutPopupOverlay h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

#checkoutPopupOverlay input[type="text"],
#checkoutPopupOverlay input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
  font-size: 15px;
}

#checkoutPopupOverlay button {
  border: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
}

#continueBtn {
  background: linear-gradient(to right, #ff8008, #ffc837);
  color: #000;
  width: 100%;
  padding: 14px;
}

#closeCheckoutPopup {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

#price {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 20px;
}

.payment-select-btn {
  margin: 10px;
  background: #fff;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}
.payment-select-btn.active {
  border-color: #0070ba;
  box-shadow: 0 0 6px #0070ba66;
}
/* ✅ ORGANIZED Payment Buttons Container */
#paymentButtons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px auto;
  max-width: 600px;
  padding: 0 20px;
  justify-content: center;
}


/* ✅ Individual Payment Button Style */
.payment-select-btn {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 16px;
  padding: 12px 20px;
  min-width: 110px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-select-btn img {
  height: 34px;
  width: auto;
  display: inline-block;
}

.payment-select-btn:hover {
  box-shadow: 0 0 12px rgba(255, 128, 0, 0.3);
  border-color: #ff8000;
}

/* ✅ Active (Selected) Payment Method */
.payment-select-btn.selected {
  border-color: #a879ff !important;
  background: linear-gradient(to bottom right, #f7f3ff, #fefaff);
  box-shadow: 0 6px 20px rgba(168, 121, 255, 0.3);
  transform: scale(1.05);
}

/* Payment cards fit nicely inside the popup */
.payment-option {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;     /* each card takes equal space */
  min-width: 0;    /* let them shrink to fit */
  width: auto;     /* no fixed width */
}


.payment-label {
  font-size: 15px;
  font-weight: 600;
  color: #2c1154;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  margin-top: 10px;
}

.payment-select-btn {
  background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(150, 120, 255, 0.08);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-select-btn img {
  height: 36px;
  max-width: 90px;
  object-fit: contain;
}

.payment-select-btn:hover {
  transform: scale(1.05);
  border-color: #c7a0ff;
  box-shadow: 0 6px 20px rgba(180, 120, 255, 0.3);
}

.payment-select-btn.selected {
  border-color: #a879ff;
  background: linear-gradient(to bottom right, #f6f2ff, #fbf6ff);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
  transform: scale(1.05);
}
@media (max-width: 480px) {
  #checkoutPopupOverlay .checkout-wrapper {
    width: 90%;
    padding: 20px 16px;
  }

  #paymentButtons {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    margin-top: 20px;
  }

  .payment-option {
    width: 100%;
  }

  .payment-select-btn {
    min-width: 100%;
    min-height: 60px;
    font-size: 14px;
    padding: 12px;
  }

  .payment-select-btn img {
    height: 30px;
    max-width: 80px;
  }

  .payment-label {
    font-size: 13px;
    margin-top: 6px;
  }
}
#decline-notice {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#decline-notice.show {
  opacity: 1;
  pointer-events: auto;
}
/* Label on top, input+button under it, all centered */
  #checkoutPopupOverlay .vip-coupon-row{
    display:grid !important;
    grid-template-columns: minmax(180px,220px) auto; /* input | button */
    grid-template-rows: auto auto;                   /* label | controls */
    grid-template-areas:
      "label label"
      "input btn";
    justify-content:center;
    align-items:center;
    column-gap:8px;
    row-gap:6px;                      /* space between label and box */
    margin-bottom:10px !important;
  }
  #checkoutPopupOverlay .vip-coupon-row > span{
    grid-area: label;
    justify-self:center;
    text-align:center;
    margin:0 !important;
    color:#000;                       /* keep it black */
    line-height:1.1;
  }
  #checkoutPopupOverlay #vipCoupon{ grid-area: input; text-align:center; }
  #checkoutPopupOverlay #applyVipBtn{ grid-area: btn; }
  /* Payment buttons row inside the small VIP popup */
#checkoutPopupOverlay #paymentButtons {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  max-width: 100%;
}



/* ✅ Mobile reorder plans: 12, 6, 3, 1 */
@media (max-width: 768px) {
  #plans.iptv-pricing-container{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  /* default order */
  #plans #plan-12 { order: 1 !important; }
  #plans #plan-6  { order: 2 !important; }
  #plans #plan-3  { order: 3 !important; }
  #plans #plan-1  { order: 4 !important; }
}
/* ✅ Desktop reorder plans: 12, 6, 3, 1 */
@media (min-width: 769px) {
  #plans.iptv-pricing-container{
    display: flex !important;
    flex-direction: row !important;
    gap: 14px !important;
  }

  #plans #plan-12 { order: 1 !important; }
  #plans #plan-6  { order: 2 !important; }
  #plans #plan-3  { order: 3 !important; }
  #plans #plan-1  { order: 4 !important; }
}

.buy-btn-12{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:10px 16px;
  margin-top:14px;

  font-size:16px;
  font-weight:800;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.3px;

  color:#111;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);

  background: linear-gradient(135deg, #ffd66b, #ff7a00);
  box-shadow: 0 12px 28px rgba(255,122,0,.28);

  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.buy-btn-12:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(255,122,0,.35);
}

.buy-btn-12:active{
  transform: translateY(0);
  filter: brightness(1.02);
}

.buy-btn-12:focus-visible{
  outline:3px solid rgba(255,214,107,.55);
  outline-offset:3px;
}/* End custom CSS */