.elementor-4503 .elementor-element.elementor-element-6cbf029{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2145b2d *//* ==================== VIP GLOBAL ==================== */
body {
  background: #0b0b10;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 0;
}

/* ==================== PLANS ==================== */
.iptv-pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 60px 20px;
  max-width: 1350px;
  margin: auto;
}

/* Plan Card */
/* Default card style */
.iptv-plan {
  background: #111;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Starter Theme (Blue) */
.category-starter .iptv-plan {
  background: linear-gradient(160deg, #0d1b2a, #1b263b);
  border: 2px solid #00c6ff;
  box-shadow: 0 0 25px rgba(0,198,255,0.4);
}
.category-starter .buy-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
}

/* Premium Theme (Orange Fire) */
.category-premium .iptv-plan {
  background: linear-gradient(160deg, #2d0b00, #401b00, #662200);
  border: 2px solid #ff6600;
  box-shadow: 0 0 35px rgba(255,120,0,0.5);
}
.category-premium .buy-btn {
  background: linear-gradient(90deg, #ff9a00, #ff4e00);
  color: #fff;
}

/* VIP Theme (Purple + Gold) */
.category-vip .iptv-plan {
  background: linear-gradient(160deg, #1a0026, #2d003d, #3d0072);
  border: 2px solid gold;
  box-shadow: 0 0 45px rgba(255,215,0,0.6);
  animation: vipPulse 3s infinite ease-in-out;
}
.category-vip .buy-btn {
  background: linear-gradient(90deg, #ffd700, #a879ff);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

@keyframes vipPulse {
  0% { box-shadow: 0 0 25px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 50px rgba(168,121,255,0.6); }
  100% { box-shadow: 0 0 25px rgba(255,215,0,0.4); }
}

.iptv-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(212,175,55,0.35);
  border-color: rgba(212,175,55,0.6);
}

/* Plan Header */
.plan-header {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
  color: #f7f7f7;
}

/* Price */
.plan-price {
  font-size: 26px;
  margin-bottom: 25px;
}
.plan-price s {
  font-size: 16px;
  color: #888;
  margin-right: 8px;
}
.plan-price span {
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(90deg, #d4af37, #f7d774, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255,215,0,0.45);
}

/* Features */
.plan-features li {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #ddd;
}
.plan-features li img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.8));
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #d4af37, #f7d774, #ffd700);
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  color: #201606;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(255,215,0,0.35);
  transition: all 0.3s ease;
}
.buy-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 28px rgba(255,215,0,0.55);
}

/* Best Deal Badge */
.badge-best {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 7px 22px;
  border-radius: 30px;
  box-shadow: 0 0 12px rgba(255,80,80,0.5);
  text-transform: uppercase;
  z-index: 5;
}

/* Animated Glow for Special */
.best-selling {
  border: 2px solid #d4af37;
  animation: vipGlow 2.5s infinite ease-in-out;
}
@keyframes vipGlow {
  0% { box-shadow: 0 0 15px rgba(212,175,55,0.25); }
  50% { box-shadow: 0 0 32px rgba(212,175,55,0.6); }
  100%{ box-shadow: 0 0 15px rgba(212,175,55,0.25); }
}

/* 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; }
}

/* ==================== CHECKOUT POPUP ==================== */
/* Overlay */
#checkoutPopupOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

/* Popup Box with VIP Animation */
#checkoutPopupOverlay .popup-box {
  background: linear-gradient(180deg, #141414, #1c1c1c);
  border-radius: 24px;
  padding: 40px 30px;
  width: 480px;
  max-width: 95%;
  position: relative;
  color: #fff;
  box-shadow: 0 0 25px rgba(212,175,55,0.4);
  border: 1px solid rgba(212,175,55,0.6);

  /* Animation */
  transform: scale(0.6);
  opacity: 0;
  animation: vipZoomIn 0.5s ease forwards;
}

/* VIP Zoom + Glow */
@keyframes vipZoomIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
    box-shadow: 0 0 0 rgba(212,175,55,0);
  }
  70% {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 0 35px rgba(212,175,55,0.6);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 25px rgba(212,175,55,0.5);
  }
}



/* Popup Title (VIP Checkout) */
#checkoutPopupOverlay h2,
#checkoutPopupOverlay h3 {
  color: #fff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

/* Labels (Full name, Your Email) */
#checkoutPopupOverlay label {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* Inputs (applies to both text + email) */
#checkoutPopupOverlay input[type="text"],
#checkoutPopupOverlay input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #444;
  margin-bottom: 18px;
  font-size: 16px;
  background: #111;
  color: #fff;
  transition: all 0.3s ease;
}

/* Placeholder text */
#checkoutPopupOverlay input::placeholder {
  color: #ccc; /* light gray/soft white */
  opacity: 1;  /* ensure visibility in all browsers */
}

/* Focus Effect */
#checkoutPopupOverlay input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  outline: none;
}
/* Force VIP Checkout title to white */
#checkoutPopupOverlay h2,
#checkoutPopupOverlay h3 {
  color: #fff !important;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}


/* Close Button */
#closeCheckoutPopup {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Continue Button */
#continueBtn {
  background: linear-gradient(90deg, #d4af37, #f7d774);
  color: #111;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(212,175,55,0.3);
  transition: all 0.3s ease;
}
#continueBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(212,175,55,0.5);
}

/* Payment Options */
#paymentButtons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px auto;
}
.payment-option {
  text-align: center;
}
.payment-select-btn {
  background: #1a1a1a;
  border: 2px solid #444;
  border-radius: 14px;
  padding: 14px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.payment-select-btn img {
  height: 48px;
  max-width: 100px;
}
.payment-select-btn:hover {
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
  transform: scale(1.05);
}
.payment-select-btn.selected {
  border-color: #f7d774;
  background: linear-gradient(180deg, #111, #1c1c1c);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
  transform: scale(1.08);
}

/* Decline Notice */
#decline-notice .notice-box {
  background: #1a1a1a;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,60,60,0.4);
  color: #fff;
}
.plan-categories {
  text-align: center;
  margin: 10px 0 15px; /* reduce top & bottom spacing */
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* High-Conversion Category Buttons */
.category-btn {
  padding: 14px 28px;
  border-radius: 12px; /* more professional than pill shape */
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  border: none;
  position: relative;
  min-width: 160px;
}

/* Starter – Blue */
.category-btn[data-category="starter"] {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}

/* Premium – Orange */
.category-btn[data-category="premium"] {
  background: linear-gradient(135deg, #ff7e00, #ff4b00);
}

/* VIP – Purple/Gold */
.category-btn[data-category="vip"] {
  background: linear-gradient(135deg, #6a00ff, #b800d8, #ffd700);
}

/* Hover effect – underline bar + subtle scale */
.category-btn::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 20%;
  width: 60%;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.category-btn:hover::after {
  transform: scaleX(1);
}
.category-btn:hover {
  transform: translateY(-2px);
}

/* Active/Clicked = strong outline */
.category-btn.active {
  outline: 3px solid #fff;
  outline-offset: 3px;
  transform: scale(1.05);
}
/* Category Buttons Wrapper */
.plan-categories {
  text-align: center;
  margin: 10px 0 0px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

/* Base Button (unchanged from earlier) */
.category-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  border: none;
  position: relative;
  min-width: 160px;
  flex: 1; /* makes them equal width */
  max-width: 220px;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .plan-categories {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 15px;
  }
  .category-btn {
    width: 100%;
    max-width: 320px; /* keeps consistent size */
    font-size: 16px;
    padding: 16px;
  }
}


/* Starter – Calm Blue */
.category-btn[data-category="starter"] {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

/* Premium – Orange Fire Idle Motion */
.category-btn[data-category="premium"] {
  background: linear-gradient(135deg, #ff4e00, #ff9a00);
  background-size: 200% 200%;
  animation: premiumIdle 6s ease infinite;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}
@keyframes premiumIdle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* VIP – Royal Flow Idle Motion */
.category-btn[data-category="vip"] {
  background: linear-gradient(135deg, #6a00ff, #b800d8, #ffd700);
  background-size: 300% 300%;
  animation: vipIdle 8s linear infinite;
  box-shadow: 0 4px 12px rgba(106, 0, 255, 0.35);
}
@keyframes vipIdle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Active/Clicked State → VIP Glow */
.category-btn.active {
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(106, 0, 255, 0.6);
  transform: scale(1.05);
  animation: vipActiveGlow 2s ease-in-out infinite;
}
@keyframes vipActiveGlow {
  0% { box-shadow: 0 0 15px rgba(255,215,0,0.6), 0 0 30px rgba(106,0,255,0.5); }
  50% { box-shadow: 0 0 30px rgba(255,215,0,0.9), 0 0 60px rgba(106,0,255,0.7); }
  100% { box-shadow: 0 0 15px rgba(255,215,0,0.6), 0 0 30px rgba(106,0,255,0.5); }
}


/* Default (Starter = Blue) */
.iptv-plan {
  background: #10131a;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Starter – Professional Blue */
.category-starter .iptv-plan {
  background: linear-gradient(160deg, #0d1b2a, #1b263b);
  border: 2px solid #00c6ff;
  box-shadow: none !important;
}
.category-starter .plan-price span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium – Elegant Orange Fire */
.category-premium .iptv-plan {
  background: linear-gradient(160deg, #2a1205, #3b1a0a, #4a1f0c);
  border: 2px solid #ff6600;
  box-shadow: none !important;
}
.category-premium .plan-price span {
  background: linear-gradient(90deg, #ff9a00, #ff4e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* VIP – Luxury Purple + Gold */
.category-vip .iptv-plan {
  background: linear-gradient(160deg, #120020, #1c0030, #2a004d);
  border: 2px solid #d4af37; /* subtle gold */
  box-shadow: none !important;
}
.category-vip .plan-price span {
  background: linear-gradient(90deg, #ffd700, #b36bff, #6a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effect – professional, no glow */
.iptv-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25); /* soft shadow only */
  border-color: rgba(255,255,255,0.12);
}


/* ==================== PAYMENT: 3 IN ONE LINE ==================== */
/* Put this at the VERY END */

#paymentButtons{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important; /* ✅ 3 columns */
  gap: 12px !important;
  align-items: start !important;
  justify-items: stretch !important;
  margin: 18px auto 12px !important;
  width: 100% !important;
}

/* remove any old "2/1" behavior */
#paymentButtons .payment-fastpay{
  grid-column: auto !important;
  justify-self: stretch !important;
  align-items: center !important;
}

/* make buttons same size */
#paymentButtons .payment-option{
  min-width: 0 !important;
  text-align: center !important;
}

#paymentButtons .payment-select-btn{
  width: 100% !important;
  min-height: 56px !important;
  padding: 10px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

#paymentButtons .payment-select-btn img{
  max-width: 76px !important;
  height: auto !important;
  display: block !important;
}

/* stop FAST PAY text breaking */
#paymentButtons .payment-label{
  margin-top: 6px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* Mobile: 3 becomes 1 column */
@media (max-width: 520px){
  #paymentButtons{
    grid-template-columns: 1fr !important;
  }
}/* End custom CSS */