


















































































































/* =========================
   Ultra-Premium Countdown (and force it below popups)
   Place at the END of your CSS
   ========================= */

/* Ensure popup overlay/content stay topmost (defensive high z-index) */
#comboGenericPopup,
#comboSummary { z-index: 140000 !important; }
#comboGenericPopup .popup-content,
#comboSummary .summary-content { z-index: 140001 !important; }

/* Premium colourful timer — refined, layered, crisp */
.offer-item .offer-timer,
.combo-offer-btn .offer-timer {
  position: relative;                /* keep normal flow & stacking context */
  z-index: 10 !important;            /* small z-index so popups always cover it */
  display: inline-block;
  min-width: 190px;
  text-align: center;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.8px;
  padding: 12px 16px;
  border-radius: 14px;
  color: #0b0806;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform .18s cubic-bezier(.2,.9,.2,1), box-shadow .18s ease;
  background: linear-gradient(135deg, rgba(255,243,205,1) 0%, rgba(255,222,121,1) 28%, rgba(255,175,70,1) 60%, rgba(255,123,95,1) 100%);
  background-size: 350% 350%;
  /* subtle slow shimmer */
  animation: premiumHue 10s linear infinite;
  /* layered shadows for depth */
  box-shadow:
    0 18px 40px rgba(14,10,8,0.55),
    0 6px 18px rgba(255,150,40,0.08),
    inset 0 2px 10px rgba(255,255,255,0.22);
  border: 1px solid rgba(255,200,40,0.12);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Hover: gentle lift + richer glow */
.offer-item .offer-timer:hover,
.combo-offer-btn .offer-timer:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 28px 70px rgba(12,8,6,0.6),
    0 10px 26px rgba(255,160,30,0.12),
    inset 0 3px 14px rgba(255,255,255,0.24);
}

/* Crisp mono digits style (if inside) */
.offer-timer .offer-countdown-time {
  font-family: "Roboto Mono", "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 15px;
  color: #0b0704;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

/* small screens adjust */
@media (max-width:520px) {
  .offer-item .offer-timer,
  .combo-offer-btn .offer-timer {
    min-width: 150px;
    font-size: 13px;
    padding: 9px 10px;
    border-radius: 10px;
  }
  .offer-timer .offer-countdown-time { font-size: 13px; }
}

/* keyframes: very gentle hue shift (keeps it premium but not flashy) */
@keyframes premiumHue {
  0%   { background-position: 0% 40%; }
  50%  { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}


.support-button button {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: linear-gradient(90deg, #ffd54a, #ff8c00);
  color: #111;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.support-button button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4), inset 0 3px 6px rgba(255,255,255,0.25);
}


































/* =========================
   Tailored CSS for your JS + HTML
   - Respects inline JS show/hide (uses absolute centering)
   - Only touches IDs/classes your script uses
   ========================= */

/* color tokens */
:root{
  --gold-1: #ffd54a;
  --gold-2: #ff8c00;
  --card-bg: linear-gradient(180deg,#141214,#101010);
  --popup-bg: linear-gradient(180deg,#0c0c0c,#0a0a0a);
}

/* -------------------------
   Combo buttons row (slidable)
   ------------------------- */
#comboButtonsRow {
  display: flex;
  gap: 14px;
  padding: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-radius: 12px;
  margin: 10px 0;
  width: 100%;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

/* slim scrollbar - scoped */
#comboButtonsRow::-webkit-scrollbar { height: 10px; }
#comboButtonsRow::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(255,215,0,0.18), rgba(255,215,0,0.06));
  border-radius: 8px; border: 2px solid rgba(0,0,0,0.08);
}

/* -------------------------
   Combo offer button base
   ------------------------- */
#comboButtonsRow .combo-offer-btn,
.combo-offer-btn {
  scroll-snap-align: start;
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid rgba(255,215,0,0.06);
  box-shadow: 0 12px 36px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  color: #fff;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s, border-color .2s;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* content inside card (if your JS adds these) */
.combo-offer-btn .title { font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.combo-offer-btn .meta { font-size: 13px; color: #cfc9c0; line-height: 1.2; max-height: 36px; overflow: hidden; }
.combo-offer-btn .price { margin-top: 8px; font-weight: 800; font-size: 18px; color: var(--gold-1); padding: 6px 8px; border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.06)); }

/* hover/focus */
.combo-offer-btn:hover, .combo-offer-btn:focus {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.7), 0 2px 10px rgba(255,215,0,0.06);
  z-index: 5;
}
.combo-offer-btn:focus { outline: 3px solid rgba(255,215,0,0.08); outline-offset: 4px; }

/* shimmer keyframes (kept lightweight) */
@keyframes shimmer { 0%{ background-position:-200% 0 } 100%{ background-position:200% 0 } }

/* responsive card widths */
@media (max-width:880px){ .combo-offer-btn{ flex:0 0 220px; } }
@media (max-width:520px){
  .combo-offer-btn{ flex:0 0 180px; padding:12px; min-height:110px; }
  .combo-offer-btn .title{ font-size:14px; }
  .combo-offer-btn .price{ font-size:16px; }
}

/* -------------------------
   Mega card variant (when JS/JSON indicates mega)
   ------------------------- */
.combo-offer-btn.mega-card,
#comboButtonsRow .mega-card {
  flex: 0 0 520px;
  min-width: 320px;
  max-width: calc(100% - 40px);
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg,#151317 0%, #0e0e0e 100%);
  border: 1.6px solid rgba(255,193,7,0.12);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 10px 50px rgba(255,193,7,0.06) inset;
  transition: transform .36s cubic-bezier(.18,.9,.22,1), box-shadow .36s ease;
  position: relative;
}
.combo-offer-btn.mega-card .title { font-size: 22px; font-weight: 900; }
.combo-offer-btn.mega-card .price { font-size:26px; padding:10px 14px; background: linear-gradient(90deg,var(--gold-1),var(--gold-2)); color:#111; border-radius:10px; }

/* small sparkles container presence is optional */
.combo-offer-btn.mega-card .sparkles { position:absolute; right:12px; bottom:12px; width:36px; height:36px; pointer-events:none; }

/* -------------------------
   Popup overlays — respect JS inline show/hide
   (Do NOT force visibility; JS will set style.display)
   ------------------------- */

/* Make the overlay a full-viewport fixed layer when visible.
   Do NOT set display here so inline style (set by JS) can control visibility.
   These properties will apply whenever the element is NOT display:none. */
#comboGenericPopup,
#comboSummary {
  position: fixed;
  inset: 0;
  z-index: 130000;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(6px) saturate(120%);
  /* don't set display here so your inline `style.display` controls show/hide */
  pointer-events: auto;
}

/* The inner popup card: centered using absolute centering so it works
   even if the overlay is shown with `display:block` by JS */
#comboGenericPopup .popup-content,
#comboGenericPopup .popup-card,
#comboSummary .summary-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  max-width: calc(100% - 40px);
  border-radius: 14px;
  padding: 20px;
  background: var(--popup-bg);
  color: #eee;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,215,0,0.06);
  max-height: 86vh;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

/* If for some reason overlay is display:flex (e.g. elsewhere), these rules still work */
#comboGenericPopup.show,
#comboSummary.show {
  display: flex; /* ok if added additionally */
  align-items: center;
  justify-content: center;
}

/* Title / description */
#comboGenericPopup h2,
#comboSummary h3 { margin: 0 0 8px 0; color: #fff; font-size: 20px; }
#comboGenericPopup p, #comboSummary p.desc { margin: 0 0 10px 0; color: #cfc9c0; font-size: 14px; }

/* Form area scrolls inside the card */
#comboPopupForm {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px;
  max-height: 42vh;
  overflow: auto;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  border: 1px solid rgba(255,255,255,0.02);
}

/* label styling inside popup (checkbox rows) */
#comboPopupForm label {
  flex: 0 0 48%;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.02);
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
}
#comboPopupForm label:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,0.6); background: rgba(255,255,255,0.03); }
#comboPopupForm input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold-1); }

/* pricing and action buttons inside popup */
.combo-pricing { margin-top: 12px; display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; }
.pay-btn, .cancel-btn { padding: 10px 14px; border-radius: 8px; font-weight: 700; cursor: pointer; border: none; min-width: 100px; }
.pay-btn { background: linear-gradient(90deg,var(--gold-1),var(--gold-2)); color: #111; box-shadow: 0 10px 30px rgba(255,170,40,0.12); }
.cancel-btn { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.08); }
.cancel-btn:hover { background: rgba(255,255,255,0.22); color: var(--gold-1); }

/* popup error (hidden by JS unless needed) */
#comboPopupError { color: #ffb3b3; background: rgba(255,0,0,0.03); padding: 8px; border-radius: 8px; display: none; }

/* summary specifics */
#comboSummary .summary-content { max-width: 420px; width: 100%; text-align: center; position: absolute; left:50%; top:50%; transform: translate(-50%,-50%); }
#comboSummary ul { list-style: disc; text-align: left; margin: 10px 0 14px 20px; color: #ddd; max-height: 180px; overflow: auto; padding-right: 6px; }
#comboSummary .price-box { font-weight: 800; font-size: 18px; color: var(--gold-1); margin: 8px 0; }
#comboSummary .price-box .final { display: block; font-size: 22px; color: #111; background: linear-gradient(90deg,var(--gold-1),var(--gold-2)); padding: 8px 10px; border-radius: 8px; margin-top: 8px; }

/* responsiveness: stack popup content on small screens and make inner scrollable */
@media (max-width:920px) {
  #comboGenericPopup .popup-content,
  #comboSummary .summary-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 32px);
    padding: 16px;
    max-height: 92vh;
    overflow: auto;
    position: absolute;
  }
  #comboPopupForm { max-height: 34vh; }
  .combo-offer-btn.mega-card { flex: 0 0 100%; max-width: 100%; padding: 18px; }
}

/* small accessibility helper (kept) */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }




/* === Force popup to appear instantly centered (no slide from bottom) === */

/* Ensure overlay doesn't animate in a way that moves the inner card */
#comboGenericPopup,
#comboSummary {
  /* keep existing overlay look, but ban animations */
  transition: none !important;
  animation: none !important;
}

/* Make inner popup card instantly centered and disable transform transitions */
#comboGenericPopup .popup-content,
#comboGenericPopup .popup-card,
#comboSummary .summary-content {
  /* keep absolute centering */
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;

  /* remove any transition that could animate from off-screen */
  transition: none !important;
  -webkit-transition: none !important;
  animation: none !important;
  -webkit-animation: none !important;

  /* ensure no accidental translateY or opacity animation remains */
  will-change: auto !important;
  opacity: 1 !important;
}

/* If JS toggles a .show class with different transform/translate, make sure both states match */
#comboGenericPopup.show .popup-content,
#comboSummary.show .summary-content {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: none !important;
  animation: none !important;
}

/* Defensive: kill common slide-from-bottom keyframes if present elsewhere */
@-webkit-keyframes slideUp {
  from { transform: translate(-50%, -50%); opacity: 1; }
  to   { transform: translate(-50%, -50%); opacity: 1; }
}



/* hover / active */
#comboGenericPopup .cancel-btn:hover,
#comboSummary .cancel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(255,170,40,0.14);
}

/* focus (accessibility) */
#comboGenericPopup .cancel-btn:focus,
#comboSummary .cancel-btn:focus {
  outline: 3px solid rgba(255,223,93,0.18);
  outline-offset: 4px;
}

/* If cancel button is placed near pay button, visually separate them on small screens */
#comboGenericPopup .combo-pricing,
#comboSummary .combo-pricing {
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* Ensure cancel button remains readable on dark popup bg */
#comboGenericPopup .cancel-btn,
#comboSummary .cancel-btn {
  -webkit-tap-highlight-color: rgba(255,223,93,0.12);
}

/* Mobile: full-width stacked action buttons */
@media (max-width:520px) {
  #comboGenericPopup .cancel-btn,
  #comboSummary .cancel-btn,
  #comboGenericPopup .pay-btn,
  #comboSummary .pay-btn {
    flex: 1 1 100%;
    min-width: 0;
    display: block !important;
  }
  #comboGenericPopup .combo-pricing,
  #comboSummary .combo-pricing {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
/* =========================
   Premium Action Buttons (Pay + Cancel)
   ========================= */

/* Base style for both */
#comboGenericPopup .pay-btn,
#comboGenericPopup .cancel-btn,
#comboSummary .pay-btn,
#comboSummary .cancel-btn {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,200,40,0.18);
  box-shadow: 0 16px 40px rgba(255,170,40,0.12),
              inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform .14s ease, box-shadow .14s ease, opacity .12s ease;
  cursor: pointer;
  z-index: 140000;
}

/* Pay Now = solid premium gold */
#comboGenericPopup .pay-btn,
#comboSummary .pay-btn {
  background: linear-gradient(90deg, rgba(255,223,93,1), rgba(255,162,0,1));
  color: #0b0b0b;
}

/* Cancel = subtle dark-gold (secondary) */
#comboGenericPopup .cancel-btn,
#comboSummary .cancel-btn {
  background: linear-gradient(90deg, rgba(255,215,0,0.18), rgba(255,215,0,0.08));
  color: #ffd54a;
}

/* Hover / active effect */
#comboGenericPopup .pay-btn:hover,
#comboSummary .pay-btn:hover,
#comboGenericPopup .cancel-btn:hover,
#comboSummary .cancel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(255,170,40,0.2);
}

/* Focus accessibility */
#comboGenericPopup .pay-btn:focus,
#comboGenericPopup .cancel-btn:focus,
#comboSummary .pay-btn:focus,
#comboSummary .cancel-btn:focus {
  outline: 3px solid rgba(255,223,93,0.22);
  outline-offset: 4px;
}

/* Layout: keep spacing equal */
#comboGenericPopup .combo-pricing,
#comboSummary .combo-pricing {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile: stack full-width */
@media (max-width:520px) {
  #comboGenericPopup .pay-btn,
  #comboGenericPopup .cancel-btn,
  #comboSummary .pay-btn,
  #comboSummary .cancel-btn {
    flex: 1 1 100%;
    min-width: 0;
    display: block !important;
  }
  #comboGenericPopup .combo-pricing,
  #comboSummary .combo-pricing {
    flex-direction: column-reverse;
    gap: 10px;
  }
}



































/* ===========================
   Premium variant — add only
   =========================== */

/* Use on the same .compact-card by adding class "premium" */
.compact-card.premium {
  /* keep layout/size same; just make visuals premium */
  color: #fff; /* brighter text */
  background: linear-gradient(180deg, #141214 0%, #1f1a1a 60%, #2b2424 100%);
  border: 1.4px solid rgba(255, 193, 7, 0.95); /* stronger warm border */
  box-shadow:
    0 18px 36px rgba(255, 193, 7, 0.09),     /* warm halo */
    0 6px 18px rgba(0,0,0,0.8),             /* depth */
    inset 0 1px 0 rgba(255,255,255,0.02);   /* subtle inner sheen */
  transform-origin: center;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .2s ease;
}

/* Slightly bolder label for premium */
.compact-card.premium .label {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 0.84rem; /* nearly same but feels bolder */
  color: #fffbe6;
  text-shadow: 0 0 6px rgba(255,193,7,0.09);
}

/* Premium tag / pill style */
.compact-card.premium .tag {
  background: linear-gradient(180deg, rgba(255,193,7,0.12), rgba(0,0,0,0.6));
  color: #fff;
  border: 0.6px solid rgba(255,193,7,0.18);
  box-shadow: 0 2px 8px rgba(255,193,7,0.04) inset;
  font-weight: 700;
}

/* Premium hover: stronger pop and warm glow */
.compact-card.premium:hover {
  transform: translateY(-4px) scale(1.045);
  border-color: #ffd54a;
  box-shadow:
    0 28px 48px rgba(255,193,7,0.20),
    0 10px 24px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.02);
  background: linear-gradient(180deg, #22201a 0%, #2f2922 100%);
  z-index: 8;
}

/* Add a small floating badge (top-right) for premium */
.compact-card.premium .premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(255,193,7,0.16), rgba(255,193,7,0.06));
  color: #fff;
  border: 0.6px solid rgba(255,193,7,0.22);
  box-shadow: 0 4px 10px rgba(255,193,7,0.06);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* small star icon styling (if using inline SVG or icon font) */
.compact-card.premium .premium-badge .star {
  display: inline-block;
  width: 12px;
  height: 12px;
  transform: translateY(1px);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35));
}

/* make sparkle on premium slightly warmer */
.compact-card.premium::before {
  background: radial-gradient(circle, rgba(255,193,7,0.38) 0%, rgba(255,193,7,0) 65%);
  top: 8%;
  left: 8%;
}

/* subtle shimmer stronger for premium */
.compact-card.premium::after {
  background: linear-gradient(120deg, rgba(255,255,255,0.02), rgba(255,193,7,0.25), rgba(255,255,255,0.02));
  mix-blend-mode: overlay;
}

/* Maintain existing pulse but give premium a slightly different timing */
.compact-card.premium.pulse {
  animation: cardEntrance 0.4s ease both, softPulse 2.6s ease-in-out infinite 0.5s;
}

/* Ensure responsive looks remain consistent (no size changes) */
@media (max-width: 720px) {
  .compact-card.premium .label { font-size: 0.8rem; }
  .compact-card.premium .premium-badge { padding: 3px 6px; font-size: 0.6rem; }
}

/* Container aligned with site */
    .quick-links-section.compact-premium {
      width: 100%;
      max-width: 900px;
      margin: 8px auto 16px;
      padding: 0 8px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Row of three compact cards */
    .quick-cards {
      display: flex;
      gap: 6px;
      justify-content: center;
      align-items: stretch;
      width: 100%;
    }

    /* Compact premium card base (rectangular) */
    .compact-card {
      flex: 1;
      max-width: 26%;
      min-width: 90px;
      background: linear-gradient(180deg, #101010 0%, #242424 100%);
      border-radius: 8px;
      padding: 6px 5px;
      text-decoration: none;
      color: #ffeb3b;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      box-shadow:
        0 3px 10px rgba(0,0,0,0.8),
        0 2px 5px rgba(255,235,59,0.12) inset;
      border: 1.2px solid rgba(255,235,59,0.94);
      transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                  box-shadow 0.2s ease, 
                  border-color 0.2s ease,
                  background 0.2s ease;
      position: relative;
      overflow: hidden;
      will-change: transform;
      transform-origin: center;
      animation: cardEntrance 0.4s ease both;
    }

    /* Smaller icon */
    .compact-card .icon img {
      width: 34px;
      height: 34px;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.8);
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    /* Label & tag */
    .compact-card .label {
      font-weight: 700;
      font-size: 0.82rem;
      color: #ffeb3b;
      text-align: center;
      text-shadow: 0 0 4px rgba(255,235,59,0.14);
    }

    .compact-card .tag {
      font-size: 0.64rem;
      background: rgba(0,0,0,0.8);
      color: #fff;
      padding: 2px 4px;
      border-radius: 5px;
      width: 100%;
      text-align: center;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }

    /* Premium hover micro-interactions */
    .compact-card:hover {
      transform: translateY(-3px) scale(1.04);
      border-color: #ffc107;
      background: linear-gradient(180deg, #242424 0%, #343434 100%);
      box-shadow:
        0 10px 24px rgba(255,193,7,0.24),
        0 5px 14px rgba(0,0,0,0.8);
      z-index: 6;
    }

    /* Icon hover pop */
    .compact-card:hover .icon img {
      transform: scale(1.08) rotate(-4deg);
      filter: brightness(1.12) saturate(1.14);
    }

    /* Sparkle effect on hover */
    .compact-card::before {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      background: radial-gradient(circle, rgba(255,235,59,0.32) 0%, rgba(255,235,59,0) 70%);
      top: 10%;
      left: 10%;
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
      z-index: 4;
    }

    .compact-card:hover::before {
      opacity: 1;
      transform: scale(1.5);
      animation: sparkle 0.6s ease-in-out;
    }

    /* Refined shimmer bar on hover */
    .compact-card::after {
      content: "";
      position: absolute;
      top: -60%;
      left: -30%;
      width: 60%;
      height: 200%;
      background: linear-gradient(120deg, rgba(255,255,255,0.03), rgba(255,235,59,0.2), rgba(255,255,255,0.03));
      transform: rotate(-35deg) translateX(-100%);
      transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
      pointer-events: none;
      mix-blend-mode: overlay;
      z-index: 3;
    }

    .compact-card:hover::after {
      transform: rotate(-35deg) translateX(180%);
    }

    /* Subtle entrance animation */
    @keyframes cardEntrance {
      0% { opacity: 0; transform: translateY(5px) scale(0.97); filter: blur(3px); }
      60% { transform: translateY(-2px) scale(1.01); opacity: 1; filter: blur(0); }
      100% { transform: translateY(0) scale(1); opacity: 1; }
    }

    /* Sparkle animation */
    @keyframes sparkle {
      0% { transform: scale(1.5); opacity: 1; }
      50% { transform: scale(2); opacity: 0.5; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* Subtle continuous pulse for premium feel */
    .compact-card.pulse {
      animation: cardEntrance 0.4s ease both, softPulse 3s ease-in-out infinite 0.6s;
    }

    @keyframes softPulse {
      0% { box-shadow: 0 3px 10px rgba(255,235,59,0.1); transform: translateY(0); }
      50% { box-shadow: 0 6px 20px rgba(255,235,59,0.14); transform: translateY(-1px); }
      100% { box-shadow: 0 3px 10px rgba(255,235,59,0.1); transform: translateY(0); }
    }

    /* One-line text below cards */
    .quick-links-section .description {
      font-size: 0.78rem;
      color: rgba(255,235,59,0.9);
      text-align: center;
      margin-top: 8px;
      text-shadow: 0 0 4px rgba(255,235,59,0.2);
      animation: textFadeIn 0.6s ease both;
    }

    /* Text fade-in animation */
    @keyframes textFadeIn {
      0% { opacity: 0; transform: translateY(4px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive: smaller screens */
    @media (max-width: 720px) {
      .compact-card { 
        max-width: 29%; 
        min-width: 80px; 
        padding: 5px 4px; 
        min-height: 80px;
      }
      .compact-card .icon img { width: 32px; height: 32px; }
      .compact-card .label { font-size: 0.78rem; }
      .compact-card .tag { font-size: 0.62rem; padding: 1px 3px; }
      .quick-links-section .description { font-size: 0.74rem; }
    }

    @media (max-width: 480px) {
      .quick-cards { gap: 5px; }
      .compact-card { max-width: 46%; }
      .quick-links-section .description { font-size: 0.72rem; }
    }

    @media (max-width: 340px) {
      .compact-card { max-width: 100%; flex-basis: 100%; }
      .quick-links-section .description { font-size: 0.7rem; }
    }



























/* reviw system */
  .progressBars { display:flex; gap:6px; position:absolute; top:10px; left:10px; right:10px; z-index:5; }
  .progressBar { flex:1; height:3px; background:rgba(255,255,255,0.25); border-radius:3px; overflow:hidden; }
  .progressFill { height:100%; width:0%; background:#FFD700; transition:width 0.2s linear; }

  .tapZone { position:absolute; top:0; bottom:0; width:50%; z-index:4; }
  .tapLeft  { left:0; }
  .tapRight { right:0; }

  #popupMedia { position:relative; }
  #popupMedia img, #popupMedia video { width:100%; max-height:60vh; object-fit:contain; border-radius:10px; }

  /* Media counter (e.g., 1/5) */
  .mediaCounter {
    position:absolute; top:10px; right:12px; z-index:6;
    background:rgba(0,0,0,0.55); padding:4px 8px; border-radius:10px; 
    font-size:12px; color:#FFD700; border:1px solid rgba(255,215,0,0.5);
  }

  /* Slider thumbnail badge */
  .thumbBadge {
    position:absolute; top:6px; left:6px; z-index:2;
    background:rgba(0,0,0,0.6); color:#FFD700; font-size:11px;
    padding:2px 6px; border-radius:10px; border:1px solid rgba(255,215,0,0.4);
  }

  /* Close fixed to viewport */
  #closePopup {
    position:fixed !important; top:14px !important; right:18px !important;
  }

  /* premium slim scrollbar for review text */
  .scrollText {
    scrollbar-width: thin;
    scrollbar-color: #FFD70033 transparent;
  }
  .scrollText::-webkit-scrollbar { width: 6px; }
  .scrollText::-webkit-scrollbar-track { background: transparent; }
  .scrollText::-webkit-scrollbar-thumb {
    background: #FFD70066; border-radius: 6px;
  }
  .scrollText::-webkit-scrollbar-thumb:hover { background: #FFD70099; }

  .scrollText {
    flex:1; overflow:auto;
    color:#ddd; font-size:14px; line-height:1.45;
    padding-right:6px; margin:6px 0;
    scrollbar-width: thin;
    scrollbar-color: #FFD70033 transparent;
  }
  .scrollText::-webkit-scrollbar { width: 6px; }
  .scrollText::-webkit-scrollbar-thumb { background:#FFD70066; border-radius:6px; }
  .scrollText::-webkit-scrollbar-thumb:hover { background:#FFD70099; }

  /* Popup fixed size */
  #reviewPopup > div {
    width: 900px; max-width:95vw;
    height: 82vh; max-height:900px;
    display:flex; flex-direction:column;
  }
  #popupMedia {
    flex:0 0 58%; min-height:46vh;
    border-radius:10px; overflow:hidden;
    position:relative;
  }
  #popupDetails {
    flex:1 1 auto; display:flex; flex-direction:column; overflow:hidden;
    margin-top:10px;
  }
  #popupDetails .detailsTop { flex:0 0 auto; }
  #popupDetails .reviewTextScroll { flex:1 1 auto; overflow:auto; margin:6px 0; padding-right:6px; }
  #popupDetails .detailsBottom { flex:0 0 auto; margin-top:6px; }

 

  .mediaCounter {
    position:absolute; top:10px; right:12px; z-index:6;
    background:rgba(0,0,0,0.55); padding:4px 8px; border-radius:10px;
    font-size:12px; color:#FFD700; border:1px solid rgba(255,215,0,0.5);
  }

/* Disable default touch callout / selection */
#reviewPopup, #reviewPopup img, #reviewPopup video, .progressBars, .tapZone {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* iOS Safari long-press menu */
}

/* Make sure images/videos can't be dragged */
#reviewPopup img, #reviewPopup video {
  -webkit-user-drag: none;
  user-drag: none;
  draggable: false;
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 10px;
}

/* Placeholder for no-media reviews */
.noMediaPlaceholder {
  width: 100%;
  min-height: 240px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#0f0f0f,#151515);
  border-radius:10px;
  padding:18px;
  color:#ddd;
  font-size:16px;
  text-align:center;
  line-height:1.4;
}

/* Tap zones should sit on top and not trigger native context menus */
.tapZone { touch-action: manipulation; }
















/* Premium + Animated "Why Choose Us?" card (compact) */
.why-choose.premium-animated{
  --gold-1: #ffd54a;
  --gold-2: #ff8c00;
  --bg: linear-gradient(180deg, rgba(255,215,0,0.04), rgba(255,200,40,0.01));
  width: 320px;
  max-width: calc(100% - 28px);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px auto;
  background: var(--bg);
  border: 1px solid rgba(255,215,0,0.16);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.55),
    0 6px 20px rgba(255,180,40,0.04) inset;
  color: #fff;
  transform-origin: center;
  animation: cardFloat 6s ease-in-out infinite;
  backdrop-filter: saturate(120%) blur(2px);
}

/* soft border glow outline */
.why-choose.premium-animated::after{
  content:"";
  position:absolute;
  pointer-events:none;
  inset: auto auto 6px 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(255,200,40,0.06);
  opacity: 1;
}

/* Heading */
.why-choose.premium-animated h3{
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fff8e1;
  margin: 0 0 8px 0;
  text-align: center;
  letter-spacing: 0.6px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(255,200,40,0.12);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,215,0,0.06), rgba(255,140,0,0.03));
  transition: transform .24s cubic-bezier(.2,.9,.2,1);
}

/* make heading pop a little on hover of card */
.why-choose.premium-animated:hover h3 {
  transform: translateY(-3px) scale(1.02);
}

/* list: two-column compact layout */
.why-choose.premium-animated ul{
  list-style:none;
  margin: 6px 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
  z-index: 2;
}

/* each item */
.why-choose.premium-animated ul li{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-radius: 8px;
  padding: 8px 10px 8px 30px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,215,0,0.04);
  transform: translateY(0);
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
  opacity: 0;
  animation: itemAppear .5s ease forwards;
}

/* stagger animation via nth-child */
.why-choose.premium-animated ul li:nth-child(1){ animation-delay: .12s; }
.why-choose.premium-animated ul li:nth-child(2){ animation-delay: .22s; }
.why-choose.premium-animated ul li:nth-child(3){ animation-delay: .32s; }
.why-choose.premium-animated ul li:nth-child(4){ animation-delay: .42s; }

/* checkmark badge */
.why-choose.premium-animated ul li::before{
  content: "✓";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;        /* transparent background required */
  color: var(--gold-1);           /* only the glyph is gold/red as required */
  font-weight: 900;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(255,200,40,0.12);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

/* hover micro-interaction on items */
.why-choose.premium-animated ul li:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.65), 0 8px 30px rgba(255,170,40,0.06);
}

/* small accent bar on left of each item */
.why-choose.premium-animated ul li::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  border-top-left-radius:8px;
  border-bottom-left-radius:8px;
  background: linear-gradient(180deg, rgba(255,215,0,0.95), rgba(255,140,0,0.85));
  opacity: 0.12;
  transition: opacity .28s;
}

/* stronger accent on hover */
.why-choose.premium-animated ul li:hover::after{ opacity: 0.28; }

/* compact responsive adjustments */
@media (max-width:420px){
  .why-choose.premium-animated{ width: 94%; padding:10px; }
  .why-choose.premium-animated ul{ grid-template-columns: 1fr; gap: 8px; }
}

/* animations */
@keyframes itemAppear{
  from { opacity: 0; transform: translateY(8px) scale(.995); filter: blur(.6px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes cardFloat{
  0%   { transform: translateY(0px) rotate(-0.1deg); }
  50%  { transform: translateY(-6px) rotate(0.2deg); }
  100% { transform: translateY(0px) rotate(-0.1deg); }
}

footer.premium-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%) !important;
  border-top: 1px solid rgba(255, 215, 0, 0.15) !important;
  padding: 10px 12px !important;      /* slim size */
  text-align: center !important;
  position: relative !important;
  z-index: 9999 !important;
  box-shadow:
    0 -4px 18px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.03) !important;
  font-family: "Poppins","Segoe UI",sans-serif;
  overflow: hidden;
}

/* Animated golden top line */
footer.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: shineLine 4s linear infinite;
}
@keyframes shineLine {
  from { transform: translateX(-50%); }
  to   { transform: translateX(50%); }
}

/* Premium glowing text */
footer.premium-footer p,
footer.premium-footer span {
  font-size: 12px;                     /* slim text */
  font-weight: 500;
  margin: 0;
  background: linear-gradient(90deg, #ffd700, #ffb347, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 6px rgba(255, 215, 0, 0.3),
    0 0 12px rgba(255, 200, 0, 0.2);
  background-size: 200% auto;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Footer links */
footer.premium-footer a {
  font-size: 12px;
  font-weight: 600;
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer.premium-footer a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,215,0,0.7);
  transform: scale(1.07);
}


















































/* Consolidated CSS from the provided HTML */

/* Highlight Glow for Button */
.highlight-glow {
  animation: neonGlow 1s infinite alternate;
}

* {
  -webkit-user-select: none; /* Safari/Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.visitor-bubble {
  position: fixed;
  bottom: 100px;
  left: 12px;                /* -10px se visible rakhne ke liye adjust kiya */
  background: rgba(255, 255, 255, 0.05);
  color: #ffd700;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  z-index: 1;                /* very low so other elements appear above it */
  pointer-events: none;      /* non-interactive: clicks go through */
  font-weight: 500;
}





/* Menu Button */
.menu-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  font-size: 22px;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.6),
    0 0 20px rgba(255, 140, 0, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000; /* BELOW popups (popups in your CSS use 10000/15000/16000 etc) */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: neonPulse 2s ease-in-out infinite alternate;
}


@keyframes neonPulse {
  0% { box-shadow: 0 0 10px #FFD700; }
  100% { box-shadow: 0 0 30px #FF8C00, 0 0 40px #FFD700; }
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100%;
  background: linear-gradient(160deg, #1a1f2b, #101319);
  color: white;
  box-shadow: 4px 0 30px rgba(0,0,0,0.6);
  padding: 20px;
  z-index: 9999;
  transition: left 0.4s ease-in-out;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.side-menu.show {
  left: 0;
}

.side-menu .close-menu {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #ff4444;
  transition: transform 0.3s ease;
}

.side-menu .close-menu:hover {
  transform: rotate(90deg);
  color: #ff6666;
}

.side-menu .menu-content {
  margin-top: 60px;
}

.side-menu h3 {
  color: #FFD700;
  margin-bottom: 18px;
  font-size: 1.2rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.6);
  letter-spacing: 1px;
}

.side-menu ul {
  list-style: none;
  padding-left: 0;
}

.side-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ccc;
  position: relative;
}

.side-menu ul li::before {
  content: "›";
  color: #FFD700;
  margin-right: 8px;
  transition: 0.3s ease;
}

.side-menu ul li:hover {
  color: #FFD700;
  transform: translateX(6px);
}

.side-menu ul li:hover::before {
  color: #FF8C00;
}

/* 3D Game Popup */
.game-popup-outer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  animation: popupFadeIn 0.4s ease-in-out;
}

@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.game-popup-inner {
  background: linear-gradient(135deg, #1f1c2c, #928DAB);
  padding: 30px 20px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(255,215,0,0.5);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transform: perspective(600px) rotateX(0deg) rotateY(0deg);
  animation: gameZone3D 1s ease-in-out;
}

@keyframes gameZone3D {
  0% { transform: perspective(600px) rotateX(-30deg) scale(0.8); opacity: 0; }
  100% { transform: perspective(600px) rotateX(0deg) scale(1); opacity: 1; }
}

.game-popup-inner h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
}

.game-popup-inner p {
  font-size: 16px;
  margin-bottom: 20px;
}

.game-popup-inner button {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
  cursor: pointer;
  transition: transform 0.2s;
}

.game-popup-inner button:hover {
  transform: scale(1.05);
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.game-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.85), 0 6px 18px rgba(0,0,0,0.35);
  border: none;
  z-index: 5000;           /* BELOW popups (which use 10000+) but ABOVE page content */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}


.card-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
}

.plan-card {
  flex: 0 0 250px;
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
}

.plan-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.plan-card:hover .plan-inner {
  transform: rotateY(180deg);
}

.plan-front, .plan-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.plan-front {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
}

.plan-back {
  background: #fff;
  color: #333;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/* Auto AI Reminder Bubble */
.ai-reminder {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
  display: none;
  z-index: 99999;
  animation: fadeInPop 0.3s ease;
}

@keyframes fadeInPop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* Auto AI Reminder Bubble */
.ai-reminder {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #FF8C00;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  font-size: 14px;
  font-weight: 500;
  z-index: 1;               /* ✅ lowest layer */
  animation: slideIn 0.4s ease-in-out;
  pointer-events: none;     /* ✅ clicks pass-through (optional) */
}


/* AI Support Popup – Full Android Compatible */
.ai-support-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 70vh;
  height: auto;
  background: #1e1e1e;
  color: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 99998;
  font-family: 'Poppins', sans-serif;
  transition: bottom 0.3s ease;
}

/* Chat header */
.popup-header {
  background: linear-gradient(to right, #FFD700, #FF8C00);
  color: #000;
  font-weight: 600;
  padding: 14px;
  font-size: 16px;
  flex-shrink: 0;
}

/* Chat body scrollable */
.chat-box {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  max-height: 45vh;
  background: #121212;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Input section fixed at bottom */
.chat-input {
  display: flex;
  border-top: 1px solid #333;
  background: #222;
  padding: 8px;
  gap: 6px;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 2;
}

@media (max-width: 600px) {
  .ai-support-popup {
    bottom: env(safe-area-inset-bottom);
    width: 95vw;
    right: 2.5vw;
  }
  .chat-input {
    position: sticky;
    bottom: env(safe-area-inset-bottom);
  }
}

.chat-input button {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 8px;
}

/* Chat bubbles */
.bot-msg, .user-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  line-height: 1.5em;
  word-wrap: break-word;
  font-size: 13.5px;
  white-space: pre-wrap;
}

.bot-msg {
  background: #333;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.user-msg {
  background: linear-gradient(to right, #FFD700, #FF8C00);
  color: black;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.ai-support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 26px;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 140, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999; /* Lower z-index to stay below other elements */
  transition: all 0.2s ease-in-out;
}

.ai-support-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 140, 0, 0.6);
}

.support-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 2px #fff);
}

.testimonials-section {
  padding: 30px 15px;
  background: linear-gradient(135deg, #0f0c29, #302b63);
  color: #fff;
  text-align: center;
  margin-top: 30px;
  border-top: 2px solid #ffd700;
  box-shadow: 0 -2px 15px rgba(255, 215, 0, 0.2);
}

.testimonials-section h2 {
  font-size: 1.8em;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.testimonials-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
}

.testimonials-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 260px;
  background: #1f1f1f;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.testimonial-card p {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonial-card .stars {
  color: #ffd700;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.testimonial-card .name {
  font-weight: bold;
  color: #fff;
  font-size: 0.95em;
}

.proofs-fab {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  z-index: 999; /* ✅ Popup ke neeche rahega */
  transition: all 0.2s ease-in-out;
  font-weight: bold;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  text-align: center;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-top: 100px;
}

.combo-timer-box {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #111;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.4);
  margin: 10px auto;
  text-align: center;
}
.combo-offer-box {
  background: linear-gradient(135deg, #ffcf40, #ff8c00, #ff4d00);
  color: #1a1a1a;
  padding: 18px 24px;
  border-radius: 18px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin: 20px auto;
  width: 92%;
  max-width: 380px;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 0 12px rgba(255, 200, 0, 0.5),
    0 0 25px rgba(255, 100, 0, 0.3),
    inset 0 0 6px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: explodeIn 0.8s ease-out forwards, shakePulse 3s ease-in-out infinite;
}

.combo-offer-box:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 20px rgba(255, 220, 0, 0.8),
    0 0 30px rgba(255, 120, 0, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.combo-timer-heading {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 0 3px #fff, 0 0 5px #ff0;
}

.combo-timer-text {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.combo-timer-clock {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  box-shadow:
    inset 0 0 6px rgba(255, 255, 255, 0.2),
    0 0 8px rgba(255, 255, 0, 0.4);
}


/* 💥 Entry zoom-shake */
@keyframes explodeIn {
  0% {
    opacity: 0;
    transform: scale(0.4) rotate(-15deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(3deg);
  }
  80% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* ⚡ Continuous shake-pulse */
@keyframes shakePulse {
  0%   { transform: translate(0); }
  20%  { transform: translateX(-2px) rotate(-1deg); }
  40%  { transform: translateX(2px) rotate(1deg); }
  60%  { transform: translateX(-1px) rotate(-0.5deg); }
  80%  { transform: translateX(1px) rotate(0.5deg); }
  100% { transform: translate(0); }
}



header {
  padding: 15px 20px;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.8), rgba(0, 0, 0, 0.9));
  border-bottom: 2px solid #ffd700;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

header:hover {
  background: linear-gradient(to bottom, rgba(34, 34, 34, 0.9), rgba(0, 0, 0, 0.95));
}

header h1 {
  font-size: 1.8em;
  color: #e50914;
  text-shadow: 0 0 8px rgba(229, 9, 20, 0.8), 0 0 15px rgba(255, 215, 0, 0.5);
  margin: 0;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
  animation: glowText 2s infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 8px #e50914, 0 0 15px #ffd700; }
  to { text-shadow: 0 0 20px #ff4d4d, 0 0 30px #ffcc00; }
}

header h1:hover {
  transform: scale(1.07);
}

header p {
  font-size: 1em;
  margin: 5px 0;
  color: #ccc;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  animation: fadeInText 2s ease;
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.9; transform: translateY(0); }
}

header p:hover {
  opacity: 1;
}

#searchBox {
  margin: 10px auto;
  padding: 10px;
  font-size: 1em;
  border-radius: 8px;
  border: none;
  width: 90%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 900;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

#searchBox:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  width: 95%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 5px rgba(229, 9, 20, 0.4);
}

.cart-container {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 101;
  cursor: pointer;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.cart-icon {
  width: 30px;
  height: 30px;
  fill: #ffd700;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #ffd700);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e50914;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: 700;
  box-shadow: 0 0 5px rgba(229, 9, 20, 0.7);
  transition: transform 0.3s ease;
}

.cart-badge:hover {
  transform: scale(1.1);
}

.offer-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4444;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.9), 0 0 15px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseRed 1.5s infinite alternate;
}

@keyframes pulseRed {
  from {
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.9), 0 0 15px rgba(255, 215, 0, 0.5);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 0, 0, 1), 0 0 25px rgba(255, 215, 0, 0.8);
  }
}



/* Inner card: combo premium */
#customComboPopup .popup-content,
#summaryModal .summary-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 760px;
  max-width: calc(100% - 40px);
  border-radius: 14px;
  padding: 22px;
  background: var(--popup-bg);
  color: #eee;
  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 10px 40px rgba(255,193,7,0.04) inset;
  border: 1.2px solid var(--popup-border);
  max-height: 86vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Title */
#customComboPopup .popup-content h2,
#summaryModal .summary-content h3 {
  margin: 0 0 8px 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}

/* Checkboxes area in custom combo popup */
#customComboPopup .checkboxes {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:12px 0 8px;
  padding:10px;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  border:1px solid rgba(255,255,255,0.02);
  max-height:44vh;
  overflow:auto;
}
#customComboPopup .checkboxes label {
  flex: 0 0 48%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border-radius:10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.02);
  cursor:pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
}
#customComboPopup .checkboxes label:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.03);
}
#customComboPopup .checkboxes input[type="checkbox"] {
  width:18px; height:18px; accent-color: var(--gold-1);
}

/* Pricing/actions row */
#customComboPopup .combo-pricing,
#summaryModal .combo-pricing {
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
  margin-top:12px;
  flex-wrap:wrap;
}

/* Premium buttons */
#customComboPopup .popup-content button[type="submit"],
#customComboPopup .popup-content .pay-btn,
#summaryModal .pay-btn {
  min-width:140px;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
  text-transform:uppercase;
  background: linear-gradient(90deg,var(--gold-1),var(--gold-2));
  color:#111;
  border: 1px solid rgba(255,200,40,0.12);
  box-shadow: 0 16px 40px rgba(255,170,40,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
  cursor:pointer;
  transition: transform .14s, box-shadow .14s;
}
#customComboPopup .popup-content button[type="submit"]:hover,
#summaryModal .pay-btn:hover { transform: translateY(-3px); box-shadow:0 22px 60px rgba(255,170,40,0.12); }

/* Hide inline cancel buttons (visual) — you can remove element from HTML if you prefer */
#customComboPopup .popup-content .cancel-btn,
#summaryModal .cancel-btn {
  display: none !important;
  visibility: hidden !important;
}

/* Top-right close X (visible and prominent) */


/* summary content specifics */
#summaryModal .summary-content {
  max-width: 420px;
  width: 100%;
  background: #fff;
  color:#111;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  border: 1px solid rgba(0,0,0,0.06);
}
#summaryModal .summary-content h3 { color:#111; }
#summaryModal ul { text-align:left; margin:10px 0 14px 18px; color:#333; max-height:180px; overflow:auto; }

/* Responsive tweaks */
@media (max-width:920px) {
  #customComboPopup .popup-content { width: calc(100% - 32px); padding: 16px; max-height:92vh; }
  #customComboPopup .checkboxes label { flex:0 0 100%; }
  #customComboPopup .popup-content button[type="submit"] { width:100%; }
  #summaryModal .summary-content { width: 92%; max-width: 420px; padding:16px; }
}
/* Overlay always uses flex centering */
#customComboPopup,
#summaryModal {
  display: none; /* JS toggles block/flex */
  justify-content: center;
  align-items: center;
}

/* When visible, flex center kicks in */
#customComboPopup.show,
#summaryModal.show {
  display: flex !important;
}

/* Inner card: remove absolute centering */
#customComboPopup .popup-content,
#summaryModal .summary-content {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: auto;
}
/* Combo popup search styling */
.combo-search-wrap { width:100%; display:flex; flex-direction:column; align-items:stretch; }
#comboSearch {
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,215,0,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color: #fff;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  outline: none;
}
#comboSearch::placeholder { color: rgba(255,255,255,0.45); }
#comboSearch:focus {
  box-shadow: 0 8px 30px rgba(255,193,7,0.08);
  border-color: rgba(255,193,7,0.28);
}
#customComboForm label { transition: opacity .18s ease, transform .18s ease; }
#customComboForm label.hidden { opacity: 0; transform: scale(.98); height: 0; margin: 0; padding: 0; overflow: hidden; pointer-events: none; }
#comboNoResults { text-align: center; }
/* Scoped styles for the custom combo close so other rules don't override */
#customComboPopup .popup-content { position: relative; }

/* Make sure there is room at top so the close does NOT visually cover title/text */
#customComboPopup .popup-content {
  /* increase top padding slightly only if it is smaller than 42px */
  padding-top: max(42px, calc(var(--existing-popup-padding, 20px)));
  /* the rule above is non-destructive: if popup had more padding it keeps it; if less, it grows */
}

/* Close icon: transparent background, smooth red cross */
#customComboPopup [data-cc-close="1"] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;

  background: none;        /* transparent */
  color: #d32f2f;          /* red cross */
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;

  border-radius: 0;
  transition: transform 0.15s ease, color 0.2s ease;
}

/* Hover effect (smooth zoom + darker red) */




































.carousel-container {
  position: relative;
  max-width: 95%;
  margin: 50px auto 0; /* Maintains space below search box */
  padding: 10px;
  overflow: hidden;
  z-index: 800; /* Below header and search box */
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease-in-out;
}

.carousel-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
  gap: 10px; /* Adjusted gap for better spacing */
  width: 100%; /* Ensure slide takes full width */
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.7s ease-in-out, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.hidden {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border: 2px solid #ffd700;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow: hidden;
  animation: popIn 0.6s ease;
  will-change: transform;
}

@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.card:hover {
  transform: rotateY(6deg) rotateX(6deg) scale(1.06);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.35), 0 0 25px rgba(255, 140, 0, 0.3);
  border-color: #ff8c00;
  z-index: 2;
}

.card img,
.card video {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

.card:hover img,
.card:hover video {
  transform: scale(1.08) rotateZ(1deg);
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px #FFD700);
}

.card {
  outline: 2px solid rgba(255, 215, 0, 0.6);
  outline-offset: -1px;
}

.card h2 {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #ffd700;
  width: 100%;
  text-align: center;
  padding: 6px 0;
  font-size: 1em;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.1), transparent 70%);
  animation: glowPulse 3s infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

.card:hover h2 {
  background: rgba(0, 0, 0, 0.95);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;          
  height: 26px;
  display: flex;              /* center ke liye */
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */

  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.65);
  border-radius: 50%;
  font-size: 14px;      /* arrow size */
  cursor: pointer;
  z-index: 10;

  box-shadow: 0 0 4px rgba(255, 215, 0, 0.35);
  transition: all 0.25s ease-in-out;
  animation: btnPulse 3s infinite ease-in-out;
}

.carousel-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #fff8dc;
  border-color: #ffd700;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
              0 0 16px rgba(255, 215, 0, 0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.9);
  box-shadow: inset 0 0 6px rgba(255, 215, 0, 0.4);
}

.carousel-btn.left { left: 6px; }
.carousel-btn.right { right: 6px; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(255, 215, 0, 0.25); }
  50% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.7); }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.offers-content {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.buy4-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 15000;
  transition: opacity 0.3s ease;
}

.buy4-popup.show {
  display: flex;
  opacity: 1;
}

.popup.show {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #ffd700;
  max-width: 90%;
  width: 320px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 10px rgba(229, 9, 20, 0.3);
  animation: fadeIn 0.3s ease-in;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.validity-desc {
  font-size: 0.9em;
  color: #ffd700;
  font-weight: 600;
  margin: 8px 0;
  line-height: 1.4;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.popup-content button,
.popup-content input[type="submit"] {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #111;
  padding: 10px;
  margin: 8px 0;
  border: none;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.popup-content button:hover,
.popup-content input[type="submit"]:hover {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.6);
}

.validity-options,
.action-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.action-options {
  display: none;
}

.action-options.show {
  display: flex;
}

#closePopup,
#closeComboPopup,
#closeCart,
#closeFaqs {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  color: #ff4444;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

#closePopup:hover,
#closeComboPopup:hover,
#closeCart:hover,
#closeFaqs:hover {
  transform: rotate(90deg) scale(1.1);
  color: #ff6666;
}

.cart-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.cart-page.show {
  display: flex;
  opacity: 1;
}

.cart-content {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #ffd700;
  max-width: 90%;
  width: 350px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 10px rgba(229, 9, 20, 0.3);
  animation: slideUp 0.3s ease-out;
  position: relative;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  max-height: 200px;
  overflow-y: auto;
  display: block;
}

.cart-content th,
.cart-content td {
  padding: 8px;
  border-bottom: 1px solid #555;
  font-size: 0.9em;
  transition: background 0.3s ease;
}

.cart-content th {
  background: #222;
  color: #ffd700;
  font-weight: 700;
}

.cart-content th:hover,
.cart-content td:hover {
  background: #2d2d2d;
}

.cart-content .delete-btn {
  background: #ff4444;
  color: #fff;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8em;
  transition: all 0.3s ease;
}

.cart-content .delete-btn:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.cart-content .discount {
  color: #ff4444;
  font-weight: 700;
  font-size: 0.9em;
  margin: 10px 0;
  text-shadow: 0 0 3px rgba(255, 68, 68, 0.5);
}

.cart-content .total {
  font-size: 1.1em;
  font-weight: 700;
  margin: 15px 0;
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.extra-info {
  padding: 15px;
  background: rgba(17, 17, 17, 0.9);
  margin: 20px auto;
  max-width: 95%;
  border-radius: 8px;
  border: 2px solid #ffd700; /* Premium border */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Premium shadow */
}

.extra-info h3 {
  font-size: 1.4em; /* Slightly larger for premium feel */
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.extra-info p {
  font-size: 1em; /* Slightly larger for readability */
  margin: 10px 0;
  color: #ccc;
  line-height: 1.8;
}

.extra-info a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.extra-info a:hover {
  color: #ff8c00;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.7);
}

.telegram-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.telegram-icon:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

/* Latest Offers Popup */
.offers-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.offers-popup.show {
  display: flex;
  opacity: 1;
  animation: highlightPopup 1s ease-out; /* Highlight animation once */
}

@keyframes highlightPopup {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  50% { box-shadow: 0 0 20px 10px rgba(255, 215, 0, 0.7); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.offers-content {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 3px solid #ffd700; /* Thicker premium border */
  max-width: 90%;
  width: 350px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 15px rgba(229, 9, 20, 0.4); /* Enhanced premium shadow */
  animation: fadeIn 0.3s ease-in;
  position: relative;
}

.offers-content h3 {
  font-size: 1.5em; /* Larger for premium feel */
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.offers-content .offer-list {
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
}

.offers-content .offer-item {
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.offers-content .offer-item:hover {
  background: rgba(255, 215, 0, 0.2);
}

/* FAQs Popup */
.faqs-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.faqs-popup.show {
  display: flex;
  opacity: 1;
}

.faqs-content {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 3px solid #ffd700;
  max-width: 90%;
  width: 350px;
  text-align: left;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 15px rgba(229, 9, 20, 0.4);
  animation: fadeIn 0.3s ease-in;
  position: relative;
}

.faqs-content h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item h4 {
  font-size: 1.1em;
  color: #ffd700;
  margin-bottom: 5px;
}

.faq-item p {
  font-size: 0.9em;
  color: #ccc;
  line-height: 1.5;
}

.offer-details-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1100;
  transition: opacity 0.3s ease;
}

.offer-details-popup.show {
  display: flex;
  opacity: 1;
}

.offer-details-popup .popup-content {
  position: relative;
  max-width: 90%;
  width: 320px;
  padding: 20px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-radius: 12px;
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 10px rgba(229, 9, 20, 0.3);
  text-align: center;
}

.offer-details-popup .popup-content button {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #111;
  padding: 10px;
  margin: 10px 0;
  border: none;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.offer-details-popup .popup-content button:hover {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.6);
}

.offer-details-popup .popup-content #closeDetails {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  color: #ff4444;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.offer-details-popup .popup-content #closeDetails:hover {
  transform: rotate(90deg) scale(1.1);
  color: #ff6666;
}

.selling-proof-container {
  position: relative;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.selling-proof {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
  animation: fadeInUp 0.4s ease, disappear 4s forwards;
  font-weight: 500;
  backdrop-filter: blur(3px);
  max-width: 280px;
  text-align: center;
}

@keyframes fadeInUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes disappear {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-5px); }
}



/* Add to existing media queries if needed */
@media (max-width: 480px) {
  .stats-btn {
    bottom: 80px; /* Adjust for smaller screens if needed */
  }
  .stats-popup {
    bottom: 140px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .stats-btn {
    bottom: 85px;
  }
  .stats-popup {
    bottom: 150px;
  }
}

@media (min-width: 769px) {
  .stats-btn {
    bottom: 90px;
  }
  .stats-popup {
    bottom: 160px;
  }
}
@keyframes fadeSlideIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-5px); }
}

.combo-frame {
  position: relative;
  margin: 25px auto;
  padding: 20px 15px 18px 15px;
  max-width: 370px;
  border-radius: 16px;
  border: 2px dashed rgba(255, 215, 0, 0.7);
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
  animation: framePulse 4s infinite;
}

.combo-frame .combo-offer {
  margin: 12px 0;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(45deg, #ffd700, #ff8c00, #e50914);
  color: white;
  font-weight: 700;
  font-size: 1.05em;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
  cursor: pointer;
  animation: comboGlow 2s infinite, comboShake 3s infinite;
  transition: all 0.3s ease;
}

.details-btn {
  position: absolute;
  top: -12px;
  left: 12px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #111;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #ffc400;
  transform: scale(1.05);
}

@keyframes framePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 140, 0, 0.5); }
}

@keyframes comboGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 22px rgba(255, 140, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4); }
}

.sidebar {
  width: 100%;
  max-width: 320px;
  background-color: #1c1f26;
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.sidebar li {
  background: #232936;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  list-style: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  position: relative;
}

.sidebar li:hover {
  background: #FFD700;
  color: #000;
  font-weight: 600;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.dropdown-content li {
  background: #2a2f3a;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
}

.dropdown-content li:hover {
  background: #FFD700;
  color: #000;
}

.sidebar .user-email {
  background: transparent;
  color: #FFD700;
  font-weight: bold;
  pointer-events: none;
}

@media (max-width: 500px) {
  .sidebar {
    width: 90%;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }
  header h1 {
    font-size: 1.4em;
  }
  header p {
    font-size: 0.85em;
  }
  #searchBox {
    width: 95%;
    font-size: 0.9em;
    padding: 8px;
  }
  .combo-offer {
    margin-top: 70px;
    padding: 10px;
  }
  .combo-offer h2 {
    font-size: 1em;
  }
  .carousel-container {
    padding: 5px;
  }
  .card {
    padding: 8px;
    margin: 0 3px;
  }
  .card img, .card video {
    height: 80px; /* Further reduced for smaller screens */
  }
  .card h2 {
    font-size: 0.8em;
    padding: 5px;
  }
  .carousel-btn {
    padding: 6px;
    font-size: 1em;
  }
  .popup-content,
  .cart-content,
  .offers-content,
  .faqs-content {
    width: 90%;
    padding: 15px;
  }
  .popup-content button,
  .popup-content input[type="submit"] {
    padding: 8px;
    font-size: 0.9em;
  }
  .cart-content table {
    font-size: 0.8em;
  }
  .cart-content th,
  .cart-content td {
    padding: 6px;
  }
  .validity-desc {
    font-size: 0.8em;
  }
  .extra-info h3 {
    font-size: 1.1em;
  }
  .extra-info p {
    font-size: 0.9em;
  }
  .offers-content .offer-item {
    font-size: 0.9em;
  }
  .offer-badge {
    width: 20px;
    height: 20px;
    font-size: 0.8em;
  }
  .offer-details-popup .popup-content {
    width: 280px;
  }
  .offer-details-popup .popup-content button {
    font-size: 0.9em;
  }
  .telegram-icon {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  header h1 {
    font-size: 1.6em;
  }
  #searchBox {
    width: 85%;
    max-width: 400px;
  }
  .card img, .card video {
    height: 90px; /* Adjusted for medium screens */
  }
  .card h2 {
    font-size: 0.9em;
  }
  .popup-content,
  .cart-content,
  .offers-content,
  .faqs-content {
    width: 75%;
    max-width: 450px;
  }
  .extra-info {
    max-width: 85%;
  }
  .offer-badge {
    width: 22px;
    height: 22px;
    font-size: 0.9em;
  }
  .offer-details-popup .popup-content {
    width: 300px;
  }
  .offer-details-popup .popup-content button {
    font-size: 1em;
  }
  .telegram-icon {
    width: 19px;
    height: 19px;
  }
}

@media (min-width: 769px) {
  .card img, .card video {
    height: 100px; /* Default reduced height */
  }
  .card h2 {
    font-size: 1.1em;
  }
  .popup-content,
  .cart-content,
  .offers-content,
  .faqs-content {
    width: 50%;
    max-width: 500px;
  }
  .offer-badge {
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .offer-details-popup .popup-content {
    width: 320px;
  }
  .offer-details-popup .popup-content button {
    font-size: 1em;
  }
  .telegram-icon {
    width: 20px;
    height: 20px;
  }
}
.summary-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 16000; /* ✅ Higher than buy4Popup */
}


.summary-content {
  background: #fff;
  color: #111;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.summary-content ul {
  text-align: left;
  margin: 10px 0;
}

.pay-btn, .cancel-btn {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.pay-btn {
  background: #111;
  color: #fff;
  margin-right: 10px;
}

.cancel-btn {
  background: #eee;
}
.offer-details-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 16000; /* Topmost */
  backdrop-filter: blur(3px);
}

.offer-details-popup.show {
  display: flex;
}

.offer-details-popup .popup-content {
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 360px;
  text-align: left;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  position: relative;
}

.offer-details-popup .popup-content h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.offer-details-popup .popup-content p {
  font-size: 0.95em;
  line-height: 1.6;
}

#closeDetails {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.2em;
  color: #ff4444;
  cursor: pointer;
}
.top-glow-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FF8C00, #FF0000);
  animation: slideFlash 2s ease-out forwards;
  z-index: 9999;
}

@keyframes slideFlash {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
#aiFollowupReminder {
  animation: pulseChat 2s infinite;
}

@keyframes pulseChat {
  0% { transform: scale(1); box-shadow: 0 0 10px #ff69b4; }
  50% { transform: scale(1.1); box-shadow: 0 0 20px #ff1493; }
  100% { transform: scale(1); box-shadow: 0 0 10px #ff69b4; }
}















html {
  scroll-behavior: smooth;       /* native smooth scrolling */
  -webkit-overflow-scrolling: touch;
}
.card, .combo-offer-btn, .adActionBtn, button {
  transition: all .28s cubic-bezier(.25,.8,.25,1); /* smooth easing */
  -webkit-tap-highlight-color: transparent;        /* mobile soft touch */
}

.card:hover, .combo-offer-btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
#popup, #comboPopup, #cartPage, #offersPopup, #faqsPopup, #offerDetailsPopup {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .25s ease, transform .25s ease;
}
#popup.show, #comboPopup.show, #cartPage.show, #offersPopup.show,
#faqsPopup.show, #offerDetailsPopup.show {
  opacity: 1;
  transform: scale(1);
}
#ottCards {
  display: flex;
  transition: transform .4s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
}
button:active, .card:active, .combo-offer-btn:active {
  transform: scale(0.96);
  opacity: 0.85;
}
#comboButtonsRow {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
#comboButtonsRow::-webkit-scrollbar-thumb {
  transition: background .3s ease;
}
#comboButtonsRow::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255,215,0,0.3), rgba(255,215,0,0.12));
}
/* Fullscreen loading overlay */
#loadingOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 200000;
  font-family: Arial, sans-serif;
}

#loadingOverlay .spinner {
  border: 6px solid rgba(255,255,255,0.2);
  border-top: 6px solid #ffd54a;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

#loadingOverlay p {
  font-size: 16px;
  font-weight: 700;
  color: #ffd54a;
}










#customComboPopup {
  display: none; /* JS toggles to flex */
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth overlay fade */
}

#customComboPopup.show {
  display: flex;
  opacity: 1;
}

#customComboPopup .popup-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1); /* Default state */
  animation: none; /* Reset */
  overflow: hidden; /* For blast containment */
  border-radius: 14px; /* Keep rounded, but will clip during animation */
}

/* Trigger animation only on .show .popup-content */
#customComboPopup.show .popup-content {
  animation: rocketFlyBlast 1.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Rocket-like fly-in, center, blast, then expand to full popup */
@keyframes rocketFlyBlast {
  0% {
    transform: translate(-50%, 150vh) scale(0.1) rotate(0deg); /* Start small from bottom, like launching rocket */
    opacity: 0;
    border-radius: 50% 50% 0 0; /* Rocket shape: pointed top, flat bottom */
    background: linear-gradient(180deg, #ffd54a 0%, #ff8c00 100%); /* Fiery rocket color */
    box-shadow: 0 20px 40px rgba(255,140,0,0.4); /* Trail glow */
  }
  40% {
    transform: translate(-50%, -50%) scale(0.15) rotate(5deg); /* Fly to center, wobble like rocket */
    opacity: 1;
    border-radius: 50% 50% 0 0;
    box-shadow: 0 40px 80px rgba(255,140,0,0.6); /* Increasing glow */
  }
  60% {
    transform: translate(-50%, -50%) scale(1.4) rotate(0deg); /* Blast: sudden overshoot scale */
    border-radius: 14px; /* Transition to normal popup shape */
    background: var(--popup-bg); /* Switch to normal popup bg */
    box-shadow: 0 0 120px rgba(255,193,7,0.8), inset 0 0 40px rgba(255,140,0,0.5); /* Explosion glow */
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -50%) scale(0.95); /* Slight recoil after blast */
    box-shadow: 0 20px 60px rgba(0,0,0,0.75), inset 0 10px 50px rgba(255,193,7,0.06); /* Settle shadow */
  }
  100% {
    transform: translate(-50%, -50%) scale(1); /* Full size, normal popup */
    opacity: 1;
    border-radius: 14px;
    background: var(--popup-bg);
    box-shadow: 0 30px 90px rgba(0,0,0,0.75), 0 10px 50px rgba(255,193,7,0.06) inset;
  }
}

/* Pseudo-element for rocket flame trail (visible during fly-in) */
#customComboPopup .popup-content::after {
  content: '';
  position: absolute;
  bottom: -20px; /* Flame at bottom */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #ff4500; /* Orange flame */
  opacity: 0;
  animation: flameFlicker 0.5s ease-in-out infinite alternate;
  transition: opacity 0.3s ease;
}

@keyframes flameFlicker {
  0% { border-top-width: 30px; opacity: 0.8; }
  100% { border-top-width: 40px; opacity: 1; }
}

/* Show flame only during initial fly (0-40%) */
#customComboPopup.show .popup-content::after {
  animation: flameFlicker 0.5s ease-in-out infinite alternate, hideFlame 1.8s forwards;
}

@keyframes hideFlame {
  0% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; } /* Hide after reaching center */
  100% { opacity: 0; }
}

/* Blast particles (simple CSS burst using box-shadow spread) */
/* For more advanced burst, consider adding multiple ::before pseudo-elements, but keeping simple */
#customComboPopup .popup-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,193,7,0.8) 0%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: burstParticles 1.8s forwards;
}

@keyframes burstParticles {
  0%, 50% { width: 0; height: 0; opacity: 0; }
  60% { width: 300px; height: 300px; opacity: 1; } /* Blast expand */
  80% { width: 400px; height: 400px; opacity: 0.5; }
  100% { width: 500px; height: 500px; opacity: 0; } /* Fade out */
}

/* Ensure inner content (like search bar) fades in after blast */
#customComboPopup .popup-content > * {
  opacity: 0;
  animation: contentFadeIn 1.8s forwards;
}

@keyframes contentFadeIn {
  0%, 70% { opacity: 0; } /* Hidden during fly/blast */
  100% { opacity: 1; } /* Show after settle */
}

/* Responsive: Smaller animation scale on mobile */
@media (max-width: 520px) {
  @keyframes rocketFlyBlast {
    0% { transform: translate(-50%, 150vh) scale(0.05) rotate(0deg); } /* Even smaller start */
    40% { transform: translate(-50%, -50%) scale(0.1) rotate(5deg); }
    60% { transform: translate(-50%, -50%) scale(1.3); }
    80% { transform: translate(-50%, -50%) scale(0.92); }
    100% { transform: translate(-50%, -50%) scale(1); }
  }
  #customComboPopup .popup-content::after { border-top-width: 20px; } /* Smaller flame */











:root{
  --gold: #ffd24d;
  --gold-2: #ffb347;
  --accent: #ff6b6b;
  --muted-white: rgba(255,255,255,0.78);
  --glass-bg: rgba(255,255,255,0.03);
}

/* ===== Cancel button: premium, compact, tactile ===== */
.cancel-btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;                 /* slightly slimmer */
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.12));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,215,0,0.08);
  border-radius: 10px;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.02);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  position: relative;
  overflow: hidden;
}

/* subtle golden accent stripe (left) */
.cancel-btn1::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  opacity: 0.9;
  transform: translateX(-6px);
  transition: transform .25s ease;
}

/* highlighted text + hover */
.cancel-btn1 > span {
  position: relative;
  z-index: 2;
  color: var(--muted-white);
}
.cancel-btn1:hover{
  transform: translateY(-3px);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.7),
    0 0 18px rgba(255, 190, 40, 0.08);
}
.cancel-btn1:hover::before{ transform: translateX(0); }

/* active / pressed */
.cancel-btn1:active{
  transform: translateY(-1px) scale(.995);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

/* focus for accessibility */
.cancel-btn1:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 200, 40, 0.10);
}

/* ===== Premium Combo heading (in-box, slim) ===== */
.premium-combo{
  display: block;
  font-size: 14px;            /* slim */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 8px 0 4px;
  text-align: left;           /* fits inside cards */
  background: linear-gradient(90deg, var(--accent), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-2);       /* fallback */
}

/* Sub text (offer box) */
.combo-sub{
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin: 0 0 10px;
  text-align: left;
  opacity: 0.92;
}

/* ===== Premium glowing section title (bigger, showy but tasteful) ===== */
.premium-glow-title{
  display: block;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 18px 0;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* richer gold gradient */
  background: linear-gradient(90deg, #fff7d6 0%, var(--gold) 40%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);

  /* layered glow (subtle, high-end) */
  text-shadow:
    0 2px 8px rgba(255, 215, 0, 0.08),
    0 8px 28px rgba(255, 170, 0, 0.06);
  transition: text-shadow .35s ease, transform .35s ease;
}

/* breathing glow — respects reduced motion */
@media (prefers-reduced-motion: no-preference){
  .premium-glow-title {
    animation: premiumGlow 3.6s ease-in-out infinite alternate;
  }
}
@keyframes premiumGlow{
  from{
    text-shadow:
      0 2px 6px rgba(255,215,0,0.06),
      0 8px 18px rgba(255,170,0,0.04);
    transform: translateY(0);
  }
  to{
    text-shadow:
      0 2px 12px rgba(255,215,0,0.18),
      0 10px 32px rgba(255,170,0,0.10);
    transform: translateY(-1px);
  }
}

/* ===== small responsive tweaks ===== */
@media (max-width:520px){
  .cancel-btn1{ padding: 7px 12px; border-radius:9px; font-size:13px; }
  .cancel-btn1::before{ width:5px; }
  .premium-glow-title{ font-size:18px; margin:14px 0; }
  .premium-combo{ font-size:13px; }
  .combo-sub{ font-size:11px; }
}

/* Offer box ke andar premium heading */
.premium-combo {
  font-size: 16px;          /* slim font size */
  font-weight: 600;         /* medium bold */
  text-align: center;         /* box ke andar left align zyada clean lagta hai */
  margin: 8px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ff7676, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff7676; /* fallback */
}

/* Sub text offer box ke andar */
.combo-sub {
  font-size: 12px;          /* slim */
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin: 0 0 10px;
  text-align: center;
}


.premium-glow-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff3b0, #ffd700, #ff9a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffd700; /* fallback for old browsers */
  
  /* Premium glowing shadow */
  text-shadow:
    0 0 6px rgba(255, 215, 0, 0.6),
    0 0 12px rgba(255, 200, 0, 0.45),
    0 0 22px rgba(255, 170, 0, 0.35);

  animation: premiumGlow 3s ease-in-out infinite alternate;
}

/* Slow breathing glow animation */
@keyframes premiumGlow {
  from {
    text-shadow:
      0 0 4px rgba(255, 215, 0, 0.4),
      0 0 10px rgba(255, 200, 0, 0.35),
      0 0 18px rgba(255, 170, 0, 0.25);
  }
  to {
    text-shadow:
      0 0 8px rgba(255, 215, 0, 0.9),
      0 0 16px rgba(255, 200, 0, 0.75),
      0 0 28px rgba(255, 170, 0, 0.55);
  }
}



