/* =====================================================================
   ZvisaPro — Ticket Wizard (experimental overlay)
   Layered ON TOP of the live index.php. Uses the site's own CSS variables
   (--blue, --bg2, --bg3, --card-border, --text-color, --text-muted…) so it
   inherits the ZvisaPro identity in Dark / Calm Dark / Light themes.
   ===================================================================== */

:root {
  --zvw-accent: var(--blue, #2563eb);
  --zvw-accent-2: var(--blue-bright, #60a5fa);
  --zvw-ok: #15803d;
  --zvw-card: var(--bg3, #0f172a);
  --zvw-border: var(--card-border, rgba(148,163,184,.28));
  --zvw-text: var(--text-color, #e2e8f0);
  --zvw-muted: var(--text-muted, #94a3b8);
}

/* prevent any accidental horizontal overflow while the wizard drives layout */
body.zv-wiz-on { overflow-x: hidden; }

/* ── Sticky step bar (only after a search) ─────────────────────────── */
#zvWizBar {
  position: sticky; top: 0; z-index: 1200;
  display: none;
  padding: 15px clamp(12px, 3vw, 30px) 16px;
  background:
    radial-gradient(120% 140% at 15% -20%, color-mix(in srgb, var(--zvw-accent) 16%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg2, #0b1220) 97%, transparent), color-mix(in srgb, var(--bg2, #0b1220) 90%, transparent));
  backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid color-mix(in srgb, var(--zvw-accent) 26%, var(--zvw-border));
  box-shadow: 0 12px 34px rgba(2,6,23,.4), inset 0 1px 0 rgba(255,255,255,.05);
}
/* glowing brand accent line along the bottom edge */
#zvWizBar::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent 4%, var(--zvw-accent-2), var(--zvw-accent) 55%, transparent 96%);
  opacity: .75;
}
body.zv-wiz-on.zv-wiz-active #zvWizBar { display: block; }

.zv-wiz-bar-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
}
.zv-wiz-back {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 46px; padding: 0 18px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--zvw-accent) 34%, var(--zvw-border));
  background: color-mix(in srgb, var(--zvw-accent) 10%, transparent);
  color: var(--zvw-text);
  font-weight: 800; font-size: .9rem; cursor: pointer;
  font-family: 'Sora','Inter',sans-serif;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.zv-wiz-back:hover {
  background: color-mix(in srgb, var(--zvw-accent) 20%, transparent);
  border-color: var(--zvw-accent-2);
  transform: translateX(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,.28);
}
.zv-wiz-back:active { transform: translateX(0) scale(.98); }
.zv-wiz-back:focus-visible { outline: 3px solid var(--zvw-accent-2); outline-offset: 2px; }

.zv-wiz-steps {
  flex: 1 1 auto;
  display: flex; align-items: center; gap: 10px; min-width: 0;
}
.zv-wiz-step {
  display: flex; align-items: center; gap: 12px;
  min-width: 0; color: var(--zvw-muted);
  transition: color .25s ease;
}
.zv-wiz-step .num {
  flex: 0 0 auto; position: relative;
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; border: 2px solid var(--zvw-border);
  background: color-mix(in srgb, var(--bg, #0b1220) 86%, transparent);
  font-weight: 900; font-size: 1rem; font-family: 'Sora','Inter',sans-serif;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.zv-wiz-step .lbl { display: flex; flex-direction: column; line-height: 1.18; min-width: 0; }
.zv-wiz-step .lbl small { font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.zv-wiz-step .lbl b { font-size: .94rem; font-weight: 800; font-family: 'Sora','Inter',sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.zv-wiz-step.active { color: var(--zvw-accent-2); }
.zv-wiz-step.active .lbl small { color: var(--zvw-accent-2); opacity: 1; }
.zv-wiz-step.active .num {
  color: #fff; border-color: transparent; transform: translateY(-1px) scale(1.06);
  background: linear-gradient(135deg, var(--zvw-accent-2), var(--zvw-accent) 55%, #1d4ed8);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--zvw-accent) 22%, transparent), 0 10px 22px rgba(37,99,235,.5);
}
.zv-wiz-step.active .num::before {   /* soft pulse ring */
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--zvw-accent-2); opacity: .55;
  animation: zvwPulse 1.9s ease-out infinite;
}
@keyframes zvwPulse { 0% { transform: scale(1); opacity: .5 } 70% { transform: scale(1.55); opacity: 0 } 100% { opacity: 0 } }

.zv-wiz-step.done { color: var(--zvw-ok); }
.zv-wiz-step.done .lbl small { color: var(--zvw-ok); opacity: 1; }
.zv-wiz-step.done .num {
  font-size: 0; border-color: transparent; color: #fff;
  background: linear-gradient(135deg, #34d399, #15803d);
  box-shadow: 0 6px 16px rgba(21,128,61,.42);
}
.zv-wiz-step.done .num::after { content: '✓'; font-size: 18px; font-weight: 900; }

.zv-wiz-conn {
  flex: 1 1 auto; height: 4px; min-width: 14px; border-radius: 8px;
  background: color-mix(in srgb, var(--zvw-border) 72%, transparent);
  transition: background .35s ease, box-shadow .35s ease;
}
.zv-wiz-conn.done {
  background: linear-gradient(90deg, #34d399, #15803d);
  box-shadow: 0 0 12px rgba(21,128,61,.45);
}

/* ── Review & Download step ────────────────────────────────────────── */
#zvWizReview { display: none; }
body.zv-wiz-on.zv-wiz-step-review #zvWizReview { display: block; }

/* keep the real ticket in the DOM (capture source) but off-screen */
body.zv-wiz-on.zv-wiz-step-review #ticketSection {
  position: fixed !important; left: -99999px !important; top: 0 !important;
  width: 940px !important; pointer-events: none;
}

.zv-wiz-review-wrap { max-width: 1000px; margin: 22px auto 60px; padding: 0 clamp(10px,3vw,20px); }
.zv-wiz-review-head h2 {
  font-family: 'Sora','Inter',sans-serif; color: var(--zvw-text);
  font-weight: 800; font-size: clamp(1.15rem, 2.4vw, 1.5rem); margin: 0 0 4px;
}
.zv-wiz-review-head p { color: var(--zvw-muted); margin: 0 0 18px; font-size: .92rem; }

.zv-wiz-status {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--zvw-border); background: var(--zvw-card);
  color: var(--zvw-text); font-weight: 700; margin-bottom: 18px;
}
.zv-wiz-spin {
  width: 20px; height: 20px; border-radius: 50%;
  border: 3px solid rgba(148,163,184,.35); border-top-color: var(--zvw-accent-2);
  animation: zvwSpin .8s linear infinite;
}
@keyframes zvwSpin { to { transform: rotate(360deg); } }

#zvWizPages { display: flex; flex-direction: column; gap: 26px; }
.zv-wiz-page { position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--zvw-border); box-shadow: 0 18px 40px rgba(2,6,23,.35); background: #fff; }
.zv-wiz-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(220,38,38,.94); color: #fff;
  font-family: 'Sora','Inter',sans-serif; font-weight: 900;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(220,38,38,.4);
}
.zv-wiz-page canvas { display: block; width: 100%; height: auto; }

/* ── Footer actions (Back + final download) ────────────────────────── */
.zv-wiz-foot {
  position: sticky; bottom: 0; z-index: 1150;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: flex-end;
  margin-top: 26px; padding: 14px clamp(10px,3vw,20px);
  background: color-mix(in srgb, var(--bg2, #0b1220) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--zvw-border); border-radius: 16px 16px 0 0;
}
.zv-wiz-note { margin-right: auto; color: var(--zvw-muted); font-size: .82rem; max-width: 46ch; }
.zv-wiz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 14px; cursor: pointer;
  font-family: 'Sora','Inter',sans-serif; font-weight: 800; font-size: .95rem;
  border: 1px solid var(--zvw-border); background: transparent; color: var(--zvw-text);
  transition: transform .12s ease, background .2s ease;   /* no opacity transition (instant, avoids stuck states) */
}
.zv-wiz-btn.primary {
  border-color: transparent; color: #fff;
  background: linear-gradient(135deg, var(--zvw-accent), #1d4ed8);
  box-shadow: 0 12px 26px rgba(37,99,235,.4);
}
.zv-wiz-btn:not([disabled]):hover { transform: translateY(-1px); }
.zv-wiz-btn[disabled] { opacity: .55; cursor: not-allowed; box-shadow: none; }
.zv-wiz-btn:focus-visible { outline: 3px solid var(--zvw-accent-2); outline-offset: 2px; }

/* The real PDF-export pipeline injects a global `button{display:none}` style
   while capturing the ticket. Keep the wizard's own buttons visible regardless
   (ID/class + !important beats the injected element rule). */
body.zv-wiz-on .zv-wiz-btn,
body.zv-wiz-on .zv-wiz-back { display: inline-flex !important; }

/* modern "generating" state — button stays visible with a shimmer + spinner */
.zv-wiz-btn.is-generating {
  opacity: 1 !important; cursor: progress; color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(110deg, var(--zvw-accent), var(--zvw-accent-2) 35%, var(--zvw-accent) 70%) !important;
  background-size: 220% 100% !important;
  box-shadow: 0 12px 28px rgba(37,99,235,.55) !important;
  animation: zvwShimmer 1.15s linear infinite;
}
@keyframes zvwShimmer { 0% { background-position: 220% 0; } 100% { background-position: -40% 0; } }
.zv-wiz-btn-spin {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff;
  display: inline-block; vertical-align: -3px; animation: zvwSpin .7s linear infinite;
}

/* ── Wizard footer inside the Customize (passenger) step ───────────── */
.zv-wiz-customize-foot {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-top: 22px;
}
/* hide the native generate + its adjacent back button while the wizard drives it */
body.zv-wiz-on #genTicketBtn,
body.zv-wiz-on #genTicketBtn + button { display: none !important; }

/* collapse the search card into a compact recap once past the search stage */
body.zv-wiz-on.zv-wiz-active #zvRoundTripFlow { display: none !important; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .zv-wiz-step .lbl b { font-size: .8rem; }
  .zv-wiz-step .lbl small { font-size: .6rem; }
  .zv-wiz-step .num { width: 30px; height: 30px; font-size: .85rem; }
  .zv-wiz-bar-inner { gap: 8px; }
  .zv-wiz-back { padding: 0 12px; font-size: .82rem; }
  .zv-wiz-foot { justify-content: stretch; }
  .zv-wiz-foot .zv-wiz-btn { flex: 1 1 auto; }
  .zv-wiz-note { margin: 0 0 6px; flex-basis: 100%; }
}
@media (max-width: 480px) {
  /* on the tightest screens keep only numbers + current label to avoid overflow */
  .zv-wiz-step:not(.active) .lbl { display: none; }
}

/* ── Light theme polish ────────────────────────────────────────────── */
body[data-theme="light"] #zvWizBar {
  background:
    radial-gradient(120% 140% at 15% -20%, color-mix(in srgb, var(--zvw-accent) 12%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,245,249,.92));
}
body[data-theme="light"] .zv-wiz-foot { background: rgba(255,255,255,.94); }
body[data-theme="light"] .zv-wiz-step .num { background: #fff; }
body[data-theme="light"] .zv-wiz-back { color: #0f172a; }

/* ── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .zv-wiz-btn, .zv-wiz-back, .zv-wiz-step .num { transition: none; }
  .zv-wiz-step.active .num { transform: none; }
  .zv-wiz-step.active .num::before { animation: none; opacity: 0; }
  .zv-wiz-spin, .zv-wiz-btn-spin { animation-duration: 1.6s; }
  .zv-wiz-btn.is-generating { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ======================================================================
   Ticket-style cards — make the five options read as distinct, selectable
   tiers, cohesive with the site (overlay restyle; index.php untouched).
   ====================================================================== */
body.zv-wiz-on .ticket-style-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px;
}
body.zv-wiz-on .ticket-style-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 11px; padding: 20px 14px 16px;
  border-radius: 16px; cursor: pointer;
  border: 1.5px solid var(--zvw-border);
  background: color-mix(in srgb, var(--bg3, #0f172a) 86%, transparent);
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
body.zv-wiz-on .ticket-style-card:hover {
  transform: translateY(-3px);
  border-color: var(--zvw-accent-2);
  box-shadow: 0 14px 30px rgba(2,6,23,.4);
}
body.zv-wiz-on .ticket-style-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; font-size: 1.2rem; color: #fff;
  background: linear-gradient(135deg, var(--zvw-accent-2), var(--zvw-accent));
  box-shadow: 0 8px 18px rgba(37,99,235,.4);
  transition: transform .2s ease;
}
body.zv-wiz-on .ticket-style-card:hover .ticket-style-icon { transform: scale(1.06); }
body.zv-wiz-on .ticket-style-title {
  font-family: 'Sora','Inter',sans-serif; font-weight: 800; font-size: .92rem;
  letter-spacing: .04em; color: var(--zvw-text);
}
body.zv-wiz-on .ticket-style-sub { font-size: .72rem; color: var(--zvw-muted); line-height: 1.45; }

/* per-type accent colour so the tiers look genuinely different */
body.zv-wiz-on label[for="ticketStyleSimple"]   .ticket-style-icon { background: linear-gradient(135deg,#94a3b8,#475569); box-shadow:0 8px 18px rgba(71,85,105,.35); }
body.zv-wiz-on label[for="ticketStylePro"]       .ticket-style-icon { background: linear-gradient(135deg,#60a5fa,#2563eb); box-shadow:0 8px 18px rgba(37,99,235,.42); }
body.zv-wiz-on label[for="ticketStylePro2"]      .ticket-style-icon { background: linear-gradient(135deg,#818cf8,#4f46e5); box-shadow:0 8px 18px rgba(79,70,229,.42); }
body.zv-wiz-on label[for="ticketStylePro3"]      .ticket-style-icon { background: linear-gradient(135deg,#a78bfa,#7c3aed); box-shadow:0 8px 18px rgba(124,58,237,.42); }
body.zv-wiz-on label[for="ticketStyleBoarding"]  .ticket-style-icon { background: linear-gradient(135deg,#2dd4bf,#0d9488); box-shadow:0 8px 18px rgba(13,148,136,.42); }

/* selected tier — strong ring + gradient wash + check badge */
body.zv-wiz-on .ticket-style-card.active {
  border-color: transparent;
  background: linear-gradient(160deg, color-mix(in srgb, var(--zvw-accent) 22%, var(--bg3,#0f172a)), var(--bg3,#0f172a));
  box-shadow: 0 0 0 2px var(--zvw-accent-2), 0 16px 34px rgba(37,99,235,.42);
}
body.zv-wiz-on .ticket-style-card.active::after {
  content: '✓'; position: absolute; top: 9px; right: 9px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--zvw-accent); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 900;
  box-shadow: 0 4px 10px rgba(37,99,235,.55);
}
/* "Popular" ribbon on the recommended Pro tier */
body.zv-wiz-on label[for="ticketStylePro"]::before {
  content: '★ POPULAR'; position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff;
  font-size: .58rem; font-weight: 900; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 10px rgba(217,119,6,.45); z-index: 2;
}
/* the site's red "nudge" dots are redundant with this styling — hide them */
body.zv-wiz-on .zv-ticket-nudge { display: none !important; }

/* horizontal snap-scroll on smaller screens so all five stay reachable */
@media (max-width: 860px) {
  body.zv-wiz-on .ticket-style-grid {
    display: flex; overflow-x: auto; gap: 12px; padding: 6px 2px 10px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  body.zv-wiz-on .ticket-style-card { flex: 0 0 72%; max-width: 260px; scroll-snap-align: start; }
}

/* light theme: keep icon tiles vivid, card surface light */
body[data-theme="light"].zv-wiz-on .ticket-style-card { background: #fff; border-color: rgba(15,23,42,.12); }
body[data-theme="light"].zv-wiz-on .ticket-style-card.active { background: linear-gradient(160deg, rgba(37,99,235,.10), #fff); }
body[data-theme="light"].zv-wiz-on .ticket-style-title { color: #0f172a; }

/* ======================================================================
   Service quick-link cards (Visa Itinerary / Book Flights / Book Hotels).
   Travel Insurance is hidden (affiliate campaign not subscribed).
   Overlay restyle — index.php untouched.
   ====================================================================== */
body.zv-wiz-on a.zv-service[href*="ektatraveling"] { display: none !important; }

body.zv-wiz-on .zv-services-bar { display: flex; flex-wrap: wrap; gap: 14px; }
body.zv-wiz-on .zv-service {
  flex: 1 1 220px; gap: 14px; padding: 16px 18px; border-radius: 16px;
  border: 1.5px solid var(--zvw-border);
  background: color-mix(in srgb, var(--bg3, #0f172a) 85%, transparent);
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
body.zv-wiz-on .zv-service:hover {
  transform: translateY(-3px); border-color: var(--zvw-accent-2);
  box-shadow: 0 14px 30px rgba(2,6,23,.4);
}
body.zv-wiz-on .zv-service-ic {
  width: 48px; height: 48px; border-radius: 13px; font-size: 1.2rem; color: #fff;
  background: linear-gradient(135deg, var(--zvw-accent-2), var(--zvw-accent));
  box-shadow: 0 8px 18px rgba(37,99,235,.4);
  transition: transform .2s ease;
}
body.zv-wiz-on .zv-service:hover .zv-service-ic { transform: scale(1.06); }
body.zv-wiz-on .zv-service-t { font-family: 'Sora','Inter',sans-serif; font-weight: 800; font-size: .98rem; color: var(--zvw-text); }
body.zv-wiz-on .zv-service-s { color: var(--zvw-muted); }
body.zv-wiz-on .zv-service-ext { color: var(--zvw-accent-2); opacity: .8; }

/* primary emphasis on the active "Visa Itinerary" tile */
body.zv-wiz-on .zv-service--active {
  border-color: transparent;
  background: linear-gradient(150deg, color-mix(in srgb, var(--zvw-accent) 26%, var(--bg3,#0f172a)), var(--bg3,#0f172a));
  box-shadow: 0 0 0 2px var(--zvw-accent-2), 0 16px 34px rgba(37,99,235,.42);
}
/* per-service icon accents (Book Flights = sky, Book Hotels = teal) */
body.zv-wiz-on .zv-services-bar .zv-service:nth-child(2) .zv-service-ic { background: linear-gradient(135deg,#38bdf8,#0284c7); box-shadow: 0 8px 18px rgba(2,132,199,.42); }
body.zv-wiz-on .zv-services-bar .zv-service:nth-child(3) .zv-service-ic { background: linear-gradient(135deg,#2dd4bf,#0d9488); box-shadow: 0 8px 18px rgba(13,148,136,.42); }

body[data-theme="light"].zv-wiz-on .zv-service { background: #fff; border-color: rgba(15,23,42,.12); }
body[data-theme="light"].zv-wiz-on .zv-service-t { color: #0f172a; }
body[data-theme="light"].zv-wiz-on .zv-service--active { background: linear-gradient(150deg, rgba(37,99,235,.10), #fff); }

/* ======================================================================
   Selected-flight summary bar + the option toggles (Include Price / QR /
   Edit Details) — modern, cohesive with the wizard. Overlay restyle.
   ====================================================================== */
body.zv-wiz-on #selectedFlightInfo {
  background: linear-gradient(135deg, color-mix(in srgb, var(--zvw-accent) 14%, var(--bg3,#0f172a)), var(--bg3,#0f172a)) !important;
  border: 1.5px solid color-mix(in srgb, var(--zvw-accent) 30%, var(--zvw-border)) !important;
  border-radius: 16px !important;
  padding: 15px 18px !important;
  box-shadow: 0 12px 28px rgba(2,6,23,.32);
}
body.zv-wiz-on #selectedFlightInfo strong { font-family: 'Sora','Inter',sans-serif; font-weight: 800; }
body.zv-wiz-on #selectedFlightInfo .price-badge {
  background: linear-gradient(135deg, var(--zvw-accent-2), var(--zvw-accent)) !important;
  color: #fff !important; border: 0 !important;
  font-family: 'Sora','Inter',sans-serif; font-weight: 800; font-size: .9rem;
  padding: 8px 16px !important; border-radius: 999px !important;
  box-shadow: 0 8px 18px rgba(37,99,235,.45); white-space: nowrap;
}
body.zv-wiz-on #selectedFlightInfo button {   /* the small "Edit" button */
  background: rgba(148,163,184,.12) !important;
  border: 1.5px solid var(--zvw-border) !important;
  color: var(--zvw-text) !important;
  border-radius: 10px !important; padding: 8px 14px !important;
  font-weight: 700 !important; transition: transform .16s ease, background .2s ease, border-color .2s ease;
}
body.zv-wiz-on #selectedFlightInfo button:hover {
  border-color: var(--zvw-accent-2) !important;
  background: color-mix(in srgb, var(--zvw-accent) 16%, transparent) !important;
  transform: translateY(-1px);
}

/* option toggles */
body.zv-wiz-on .premium-toggle-container { gap: 12px !important; }
body.zv-wiz-on .switch-content {
  padding: 10px 16px !important; border-radius: 12px !important;
  background: color-mix(in srgb, var(--bg3,#0f172a) 82%, transparent) !important;
  border: 1.5px solid var(--zvw-border) !important;
  font-family: 'Sora','Inter',sans-serif; font-weight: 700 !important; font-size: .82rem !important;
  transition: all .2s ease;
}
body.zv-wiz-on .premium-switch:hover .switch-content { border-color: var(--zvw-accent-2) !important; transform: translateY(-1px); }
body.zv-wiz-on .switch-slider {
  width: 38px !important; height: 20px !important; border-radius: 999px !important;
  background: rgba(148,163,184,.3) !important; margin-left: 6px !important;
}
body.zv-wiz-on .switch-slider::after {
  width: 14px !important; height: 14px !important; left: 3px !important; top: 3px !important;
  box-shadow: 0 2px 4px rgba(0,0,0,.35);
}
body.zv-wiz-on .premium-switch input:checked + .switch-content {
  background: color-mix(in srgb, var(--zvw-accent) 16%, transparent) !important;
  border-color: var(--zvw-accent-2) !important; color: #fff !important;
  box-shadow: 0 6px 16px rgba(37,99,235,.28);
}
body.zv-wiz-on .premium-switch input:checked + .switch-content .switch-slider {
  background: linear-gradient(135deg, var(--zvw-accent-2), var(--zvw-accent)) !important;
  box-shadow: 0 0 10px rgba(37,99,235,.5);
}
body.zv-wiz-on .premium-switch input:checked + .switch-content .switch-slider::after { left: 21px !important; }

/* "Edit Details" button (direct child of the toggle row) */
body.zv-wiz-on .premium-toggle-container > button {
  background: color-mix(in srgb, var(--zvw-accent) 12%, transparent) !important;
  border: 1.5px solid color-mix(in srgb, var(--zvw-accent) 42%, var(--zvw-border)) !important;
  color: var(--zvw-accent-2) !important;
  border-radius: 12px !important; padding: 10px 16px !important;
  font-family: 'Sora','Inter',sans-serif; font-weight: 800 !important;
  transition: transform .16s ease, background .2s ease, border-color .2s ease;
}
body.zv-wiz-on .premium-toggle-container > button:hover {
  background: color-mix(in srgb, var(--zvw-accent) 22%, transparent) !important;
  border-color: var(--zvw-accent-2) !important; transform: translateY(-1px);
}
