/* Only apply preload dimming when we detect potential trial user */
/* This prevents flash of accessible items for trial users only */
.trial-preload .nav-item a[href="/products.html"],
.trial-preload .nav-item a[href="/vsls.html"],
.trial-preload .nav-item a[href="/blogs.html"],
.trial-preload .nav-item a[href="/landing-pages.html"],
.trial-preload .nav-item a[href="/social-ads.html"],
.trial-preload .nav-item a[href="/google-ads.html"] {
    opacity: 0.3 !important;
    pointer-events: none !important;
}

/* Show items normally after JavaScript has processed permissions */
.permissions-processed .nav-item a[href="/products.html"],
.permissions-processed .nav-item a[href="/vsls.html"],
.permissions-processed .nav-item a[href="/blogs.html"],
.permissions-processed .nav-item a[href="/landing-pages.html"],
.permissions-processed .nav-item a[href="/social-ads.html"],
.permissions-processed .nav-item a[href="/google-ads.html"] {
    opacity: 1 !important;
    pointer-events: auto !important;
}