/**
 * Version: 1.1.0
 * Timestamp: 2026-05-11 14:30:00 UTC
 * Tool: Front-end CSS for Brand New Day A/B test runtime.
 * Fix: Added no-flicker cloaking for active runtime pages and kept inactive variants hidden after assignment.
 *
 * Changelog:
 * 1.1.0 - Added no-flicker cloaking for active runtime pages and kept inactive variants hidden after assignment.
 * 0.8.0 - Kept runtime CSS unchanged while shipping the admin goal-step redesign.
 * 0.7.0 - Kept runtime CSS minimal because editor-mode styling is now injected inline to avoid asset blocking.
 * 0.6.0 - Kept runtime CSS minimal while editor bridge styles are injected only in editor mode.
 * 0.4.0 - Kept front-end styles minimal for cookie-based visual A/B runtime.
 * 0.3.0 - Kept front-end styles minimal for lower layout risk.
 * 0.2.0 - Added runtime mutation markers.
 * 0.1.0 - Added variant fallback styles.
 */
html.bnd-ab-runtime-loading .bnd-ab-variant {
    visibility: hidden !important;
}
.bnd-ab-variant[data-bnd-ab-active="0"] {
    display: none !important;
}
.bnd-ab-variant[data-bnd-ab-active="1"] {
    visibility: visible !important;
}
[data-bnd-ab-mutated="1"] {
    transition: opacity .12s ease;
}
