.elementor-619 .elementor-element.elementor-element-33e496e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f776576 *//* ==================== VIP GLOBAL – NEW BRITISH BRAND THEME ==================== */
body {
  background: #020617; /* deep navy */
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #0f172a;
  margin: 0;
}

/* ==================== PLANS LAYOUT ==================== */
.iptv-pricing-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 56px 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

/* ==================== PLAN CARD – BASE ==================== */
.iptv-plan {
  position: relative;
  background: #f9fafb;          /* light card, dark page */
  border-radius: 18px;
  padding: 26px 22px 22px;
  text-align: left;
  color: #0f172a;
  transition: all 0.25s ease;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15,23,42,0.28);
}

/* subtle top accent bar */
.iptv-plan::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,#00247d,#ffffff,#e11d2f); /* UK hint */
}

/* Hover */
.iptv-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.45);
  border-color: #cbd5f5;
}

/* ==================== CATEGORY THEMES ==================== */
/* Starter – teal / fresh */
.category-starter .iptv-plan {
  border-color: rgba(13,148,136,0.55);
}
.category-starter .plan-price span {
  color: #0f766e;
}
.category-starter .buy-btn {
  background: linear-gradient(135deg,#0d9488,#14b8a6);
}

/* Premium – royal blue */
.category-premium .iptv-plan {
  border-color: rgba(37,99,235,0.7);
}
.category-premium .plan-price span {
  color: #1d4ed8;
}
.category-premium .buy-btn {
  background: linear-gradient(135deg,#1d4ed8,#3b82f6);
}

/* VIP – deep burgundy + gold */
.category-vip .iptv-plan {
  border-color: rgba(127,29,29,0.7);
}
.category-vip .plan-price span {
  color: #b45309;
}
.category-vip .buy-btn {
  background: linear-gradient(135deg,#7f1d1d,#b91c1c,#facc15);
  color: #111827 !important;
}

/* ==================== HEADERS & PRICE ==================== */
.plan-header {
  margin-top: 14px; /* clear top accent bar */
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #020617;
}

.plan-price {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plan-price s {
  font-size: 13px;
  color: #9ca3af;
}

.plan-price span {
  font-size: 26px;
  font-weight: 900;
}

/* ==================== FEATURES ==================== */
.plan-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.plan-features li {
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #111827;
}

.plan-features li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: none;  /* remove old glow */
}

/* ==================== BUY BUTTON ==================== */
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 14px 32px rgba(15,23,42,0.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.55);
  filter: brightness(1.05);
}

/* Optional “Best deal” badge if you use it */
.badge-best {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #0f172a;
  color: #f9fafb;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ==================== CATEGORY TABS ==================== */
.plan-categories {
  text-align: center;
  margin: 18px auto 6px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #1f2937;
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .2s ease, color .2s ease,
              border-color .2s ease, transform .15s ease,
              box-shadow .2s ease;
}

.category-btn:hover {
  background: #020617;
  box-shadow: 0 10px 22px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.category-btn.active {
  background: linear-gradient(135deg,#00247d,#020617);
  color: #f9fafb;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(148,163,184,0.7),0 12px 30px rgba(0,0,0,0.7);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .iptv-pricing-container {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 768px) {
  .iptv-pricing-container {
    grid-template-columns: minmax(0,1fr);
  }
  .plan-categories {
    flex-direction: column;
    align-items: stretch;
  }
  .category-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ==================== CHECKOUT POPUP – NEW STYLE ==================== */
#checkoutPopupOverlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

/* Popup box */
#checkoutPopupOverlay .popup-box {
  background: #f9fafb;
  color: #0f172a;
  border-radius: 20px;
  padding: 26px 22px 22px;
  width: 380px;
  max-width: 92%;
  position: relative;
  box-shadow: 0 26px 70px rgba(15,23,42,0.7);
  border: 1px solid #e5e7eb;
  transform: translateY(10px);
  opacity: 0;
  animation: popupEnter .35s ease-out forwards;
}

@keyframes popupEnter {
  from { opacity:0; transform:translateY(20px) scale(.96); }
  to   { opacity:1; transform:translateY(0)   scale(1);   }
}

/* Titles */
#checkoutPopupOverlay h2,
#checkoutPopupOverlay h3 {
  color: #020617 !important;
  font-weight: 800;
  text-align: center;
  margin: 4px 0 14px;
  font-size: 20px;
}

/* Labels */
#checkoutPopupOverlay label {
  display:block;
  margin-bottom:4px;
  color:#111827;
  font-size:13px;
  font-weight:600;
}

/* Inputs */
#checkoutPopupOverlay input[type="text"],
#checkoutPopupOverlay input[type="email"] {
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #cbd5f5;
  margin-bottom:12px;
  font-size:14px;
  background:#ffffff;
  color:#0f172a;
  transition:border-color .2s ease, box-shadow .2s ease;
}

#checkoutPopupOverlay input::placeholder {
  color:#9ca3af;
}

#checkoutPopupOverlay input:focus {
  border-color:#1d4ed8;
  box-shadow:0 0 0 1px rgba(37,99,235,0.35);
  outline:none;
}

/* Close button */
#closeCheckoutPopup {
  position:absolute;
  top:10px;
  right:10px;
  background:#f97373;
  color:#111827;
  border:none;
  padding:5px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(148,27,37,0.35);
}

/* Price display */
#price {
  font-size:20px;
  font-weight:800;
  text-align:center;
  margin:8px 0 14px;
  color:#1d4ed8;
}

/* Payment buttons */
#paymentButtons {
  display:flex;
  justify-content:center;
  gap:12px;
  margin:12px 0 16px;
}

.payment-option { text-align:center; }

.payment-select-btn {
  background:#e5e7eb;
  border:1px solid #cbd5f5;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  transition:all .2s ease;
}
.payment-select-btn img {
  max-width:80px;
  height:auto;
}
.payment-select-btn:hover {
  border-color:#1d4ed8;
  box-shadow:0 6px 16px rgba(15,23,42,0.35);
  transform:translateY(-2px);
}
.payment-select-btn.selected {
  border-color:#1d4ed8;
  background:#ffffff;
  box-shadow:0 0 0 1px rgba(37,99,235,0.4);
}

/* Continue button */
#continueBtn {
  background: linear-gradient(135deg,#1d4ed8,#2563eb);
  color:#ffffff;
  width:100%;
  padding:12px;
  border-radius:999px;
  font-weight:800;
  font-size:15px;
  border:none;
  box-shadow:0 12px 28px rgba(37,99,235,0.55);
  transition:all .2s ease;
}
#continueBtn:hover {
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(37,99,235,0.75);
}

/* Decline notice box (reuse but cleaner) */
#decline-notice .notice-box {
  background:#0b1120;
  border-radius:18px;
  padding:24px;
  box-shadow:0 26px 70px rgba(0,0,0,0.7);
  border:1px solid rgba(248,113,113,0.5);
  color:#e5e7eb;
}

/* Responsive popup tweaks */
@media (max-width: 480px) {
  #checkoutPopupOverlay .popup-box {
    width:92%;
    padding:22px 16px 18px;
  }
}/* End custom CSS */