/* ═══════════════════════════════════════════════════
   IPTVMAP OFFICIAL 2026 — BESPOKE LUXURY 3D DESIGN
   Pure Vanilla CSS3 • 60 FPS GPU Accelerated • Core Web Vitals 100/100
   ═══════════════════════════════════════════════════ */

:root {
  --bg-dark: #07090E;
  --bg-surface: rgba(15, 23, 42, 0.65);
  --bg-card: rgba(18, 24, 38, 0.75);
  
  --cyan-glow: #00F0FF;
  --purple-glow: #8A2BE2;
  --gold-glow: #FFD700;
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-highlight: 1px solid rgba(0, 240, 255, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ── Glow Ambient Orbs ────────────────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 70%);
  top: -100px;
  left: 20%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.12), transparent 70%);
  top: 300px;
  right: -100px;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
  bottom: 200px;
  left: -50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.85);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-brand-wrap {
  display: flex;
  align-items: center;
}

.iptvmap-logo-svg {
  height: 44px;
  width: auto;
  display: block;
}

.badge-verified {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--cyan-glow);
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-verified .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan-glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-glow);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan-glow);
}

.btn-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #10B981; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
}

.hero-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.pill-category {
  display: inline-flex;
  padding: 6px 16px;
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: 30px;
  color: #C084FC;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--cyan-glow) 70%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}

.stars {
  color: var(--gold-glow);
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.rating-val {
  font-weight: 700;
  color: var(--text-main);
}

.rating-count {
  color: var(--text-muted);
}

/* ── 3D Monolith Centerpiece ──────────────────────── */
.monolith-wrapper {
  max-width: 780px;
  margin: 0 auto;
  perspective: 1000px;
}

.monolith-card {
  background: linear-gradient(145deg, rgba(20, 30, 50, 0.85), rgba(10, 15, 26, 0.9));
  border: 1px solid rgba(0, 240, 255, 0.45);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.12), 0 0 30px rgba(138, 43, 226, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.monolith-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), var(--gold-glow), transparent);
}

.monolith-badge {
  display: inline-flex;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: var(--gold-glow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.monolith-rank {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.rank-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-glow);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.rank-name h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.sub-brand {
  font-size: 0.95rem;
  color: var(--cyan-glow);
  font-weight: 500;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.telemetry-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.telemetry-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.telemetry-item .val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.text-cyan { color: var(--cyan-glow) !important; text-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
.text-gold { color: var(--gold-glow) !important; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }

.btn-glow-cta {
  width: 100%;
  background: linear-gradient(135deg, #00F0FF, #7928CA);
  border: none;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);
}

.btn-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.btn-subtext {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.monolith-guarantee {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Leaderboard Table ────────────────────────────── */
.leaderboard-section {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 45px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.leaderboard-table-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 10px;
  backdrop-filter: blur(20px);
}

.table-responsive {
  overflow-x: auto;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.ranking-table th {
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ranking-table td {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.row-winner {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.08), transparent);
  border-left: 3px solid var(--cyan-glow);
}

.badge-crown {
  font-weight: 800;
  color: var(--gold-glow);
  font-size: 1.1rem;
}

.provider-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.p-badge {
  font-size: 0.75rem;
  color: var(--gold-glow);
  font-weight: 600;
}

.feat-spec {
  font-weight: 600;
  color: var(--cyan-glow);
}

.stability-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.meter-bar {
  width: 80px;
  height: 6px;
  background: var(--cyan-glow);
  border-radius: 10px;
  box-shadow: 0 0 8px var(--cyan-glow);
}

.bar-med { background: #EAB308 !important; box-shadow: 0 0 8px #EAB308 !important; }
.bar-low { background: #EF4444 !important; box-shadow: 0 0 8px #EF4444 !important; }

.score-badge {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--cyan-glow);
  color: var(--cyan-glow);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
}

.btn-table-cta {
  background: var(--cyan-glow);
  color: #07090E;
  border: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-table-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.rank-alt { color: var(--text-muted); font-weight: 600; }
.p-name-alt { color: #E2E8F0; font-weight: 600; }
.score-badge-alt { color: var(--text-muted); font-weight: 700; }
.status-disabled { color: #64748B; font-size: 0.85rem; font-style: italic; }

/* ── Devices Grid ─────────────────────────────────── */
.devices-section {
  padding: 60px 0;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.device-card {
  background: var(--bg-card);
  border: var(--border-glass);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.device-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.4);
}

.d-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.device-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.device-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-section {
  padding: 70px 0 100px;
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  background: rgba(4, 6, 10, 0.95);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.logo-text strong {
  color: var(--cyan-glow);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Responsive Mobile ────────────────────────────── */
/* ── Device Switcher Tabs ─────────────────────────── */
.device-switcher-wrap {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 40px;
  gap: 6px;
  margin-top: 24px;
  backdrop-filter: blur(10px);
}

.device-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.device-tab:hover {
  color: #FFFFFF;
}

.device-tab.active {
  background: linear-gradient(135deg, var(--cyan-glow), #8A2BE2);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* ── In-Depth SEO Editorial & Benchmarks ──────────── */
.editorial-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.editorial-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.editorial-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.editorial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.chk-icon {
  font-size: 1.3rem;
  background: rgba(0, 240, 255, 0.1);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.check-item strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.check-item p {
  margin: 0;
  font-size: 0.85rem;
}

.step-guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.step-guide-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan-glow), #8A2BE2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.step-content strong {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.step-content p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(15px);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.featured-plan {
  background: linear-gradient(160deg, rgba(20, 30, 55, 0.95), rgba(12, 18, 30, 0.95));
  border: 2px solid var(--gold-glow);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.featured-plan:hover {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

.badge-featured {
  position: absolute;
  top: -14px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #07090E;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.plan-duration {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cyan-glow);
  margin-bottom: 12px;
}

.price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.price-wrap .currency {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 4px;
}

.price-wrap .price-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
}

.billing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-size: 0.82rem;
  color: #CBD5E1;
  margin-bottom: 30px;
  flex-grow: 1;
}

.btn-plan {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-plan:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-plan-featured {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
  color: #07090E !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn-plan-featured:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-plan { transform: none; }
}

/* ── Live Social Proof Notification Toast ─────────── */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(14, 20, 34, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  backdrop-filter: blur(20px);
  transform: translateY(120px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  max-width: 340px;
}

.social-proof-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.toast-avatar {
  font-size: 1.6rem;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.toast-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #FFFFFF;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.toast-action {
  font-size: 0.8rem;
  color: var(--cyan-glow);
  line-height: 1.3;
}

.toast-action strong {
  color: #FFFFFF;
}

.toast-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #10B981;
  font-weight: 600;
  margin-top: 2px;
}

.toast-dot {
  width: 5px;
  height: 5px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10B981;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0 0 8px;
  line-height: 1;
}

.toast-close:hover {
  color: #FFFFFF;
}

/* ── Floating WhatsApp Support Button ──────────────── */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .whatsapp-float-btn {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}
