/* ========== VIRA PRO ACCESS CONTROL ========== */
/* Basis: FREE-Default (alles geblurrt + CTA sichtbar) */
.blurred {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

/* CTA standardmäßig sichtbar – mit !important gegen evtl. spätere Overrides */
.pro-cta {
  display: inline-flex !important;
}

/* PRO schaltet frei */
body.is-pro .blurred {
  filter: none;
  pointer-events: auto; /* optional, falls interaktiv */
  user-select: text;    /* optional */
}

/* Nur bei PRO verstecken wir den CTA */
body.is-pro .pro-cta {
  display: none !important;
}

/* (Optional, aber klarer): FREE explizit behandeln */
body.is-free .pro-cta { display: inline-flex !important; }
/* ============================================= */
