/* public/css/feature-flags.css
 * Visibility rules for runtime feature flags (see public/js/feature-flags.js).
 * Default both CTA variants are hidden so no broken link is shown while the
 * flag is still being fetched.
 */

html.flags-loading [data-requires-standalone],
html.flags-loading [data-shopify-only] {
  visibility: hidden;
}

html.flag-standalone-disabled [data-requires-standalone] {
  display: none !important;
}

html.flag-standalone-enabled [data-shopify-only] {
  display: none !important;
}
