.elementor-5829 .elementor-element.elementor-element-df45ca7{--display:flex;}@media(max-width:767px){.elementor-5829 .elementor-element.elementor-element-8a9fa5c > .elementor-widget-container{margin:-43px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-8a9fa5c */@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;
}
/* =====================================================
   HIGH CONVERSION PRICING STYLES - GOOD IPTV
   Only CSS - Does NOT touch your JS or popup!
===================================================== */

/* ===== PRICING CONTAINER ===== */
.iptv-pricing-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== BASE CARD STYLE ===== */
.iptv-plan {
  background: linear-gradient(180deg, #1a1a24 0%, #12121a 100%);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 35px 30px;
  width: 280px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.iptv-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ffc837);
  opacity: 0.5;
}

.iptv-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(255,122,0,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== PLAN HEADER ===== */
.plan-header {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #888;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* ===== PRICE STYLING ===== */
.plan-price {
  text-align: center;
  margin-bottom: 25px;
}

.plan-price s {
  font-size: 18px;
  color: #555;
  text-decoration: line-through;
  margin-right: 10px;
}

.plan-price span {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff7a00, #ffc837);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FEATURES LIST ===== */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #b0b0b8;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== BUY BUTTON ===== */
.buy-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ff7a00, #ffc837);
  color: #000;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buy-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255,122,0,0.4);
}

/* =====================================================
   12 MONTHS - BEST DEAL (MOST IMPORTANT!)
===================================================== */
#plan-12 {
  background: linear-gradient(180deg, #1f1a10 0%, #151210 100%);
  border: 2px solid rgba(255,122,0,0.5);
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 
    0 0 60px rgba(255,122,0,0.2),
    0 25px 50px rgba(0,0,0,0.5);
}

#plan-12::before {
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, #ff7a00, #ffc837, #ff7a00);
  animation: shimmerBar 2s linear infinite;
}

@keyframes shimmerBar {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

#plan-12:hover {
  transform: scale(1.1) translateY(-5px);
}

/* Best Deal Badge */
.badge-best {
  position: absolute;
  top: -2px;
  right: 20px;
  background: linear-gradient(135deg, #ff0055, #ff7a00);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 14px 14px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 25px rgba(255,0,85,0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* 12 Month Button - Extra attention */
#plan-12 .buy-btn,
.buy-btn-12 {
  background: linear-gradient(135deg, #ff0055, #ff7a00, #ffc837);
  background-size: 200% 100%;
  animation: btnGradient 3s ease infinite;
  font-size: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 30px rgba(255,122,0,0.5);
}

@keyframes btnGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

#plan-12 .buy-btn:hover,
.buy-btn-12:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255,122,0,0.6);
}

/* =====================================================
   6 MONTHS - POPULAR (Second best)
===================================================== */
#plan-6,
.plan-red {
  border-color: rgba(0,200,255,0.3);
}

#plan-6::before,
.plan-red::before {
  background: linear-gradient(90deg, #00c8ff, #00ff88);
}

#plan-6 .plan-price span,
.plan-red .plan-price span {
  background: linear-gradient(135deg, #00c8ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#plan-6 .buy-btn,
.plan-red .buy-btn {
  background: linear-gradient(135deg, #00c8ff, #00ff88);
}

/* =====================================================
   3 MONTHS - BLUE THEME
===================================================== */
#plan-3,
.plan-blue {
  border-color: rgba(90,140,255,0.3);
}

#plan-3::before,
.plan-blue::before {
  background: linear-gradient(90deg, #5a8cff, #a879ff);
}

#plan-3 .plan-price span,
.plan-blue .plan-price span {
  background: linear-gradient(135deg, #5a8cff, #a879ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#plan-3 .buy-btn,
.plan-blue .buy-btn {
  background: linear-gradient(135deg, #5a8cff, #a879ff);
}

/* =====================================================
   1 MONTH - ORANGE (Starter)
===================================================== */
#plan-1,
.plan-orange {
  border-color: rgba(255,122,0,0.2);
}

/* =====================================================
   URGENCY BANNER UNDER PRICING
===================================================== */
.pricing-urgency {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.pricing-urgency p {
  font-size: 16px;
  color: #ff5555;
  font-weight: 700;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* =====================================================
   TRUST BADGES BELOW PRICING
===================================================== */
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #888;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: #00ff88;
}

/* =====================================================
   SAVINGS HIGHLIGHT
===================================================== */
.save-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,255,136,0.15);
  color: #00ff88;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
  #plan-12 {
    transform: scale(1.05);
  }
  
  #plan-12:hover {
    transform: scale(1.07) translateY(-5px);
  }
}

@media (max-width: 900px) {
  .iptv-pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .iptv-plan {
    width: 100%;
    max-width: 350px;
  }
  
  #plan-12 {
    transform: scale(1);
    order: -1; /* Show 12 months first on mobile */
  }
  
  #plan-12:hover {
    transform: translateY(-5px);
  }
}

/* =====================================================
   FLOATING "LIMITED OFFER" RIBBON
===================================================== */
.limited-ribbon {
  position: absolute;
  top: 25px;
  left: -35px;
  background: #ff0055;
  color: #fff;
  padding: 8px 40px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-45deg);
  box-shadow: 0 5px 15px rgba(255,0,85,0.4);
}

/* =====================================================
   ADD THESE CLASSES TO YOUR HTML FOR EXTRA CONVERSION
===================================================== */

/* Popular Badge - Add <span class="popular-tag">MOST POPULAR</span> */
.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c8ff, #00ff88);
  color: #000;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Save Percentage - Add <span class="save-percent">SAVE 42%</span> */
.save-percent {
  display: inline-block;
  background: rgba(255,0,85,0.2);
  color: #ff5555;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}/* End custom CSS */