/**
 * RYN Motors — WP Rocket lazy-render override.
 *
 * WP Rocket 3.20+'s automatic lazy-rendering sets
 *   [data-wpr-lazyrender] { content-visibility: auto; }
 * on containers it decides to defer. The sticky price bar lives inside
 * the Astra Advanced Hook wrappers (IDs 627 mobile, 629 desktop). When
 * those are marked lazy, the position:fixed bar inside never paints on
 * first load — blocking new orders in incognito.
 *
 * Force content-visibility:visible on those specific wrappers. Higher
 * specificity (attribute + class) plus !important beats WP Rocket's
 * attribute-only rule.
 */
[data-wpr-lazyrender].astra-advanced-hook-627,
[data-wpr-lazyrender].astra-advanced-hook-629,
.astra-advanced-hook-627[data-wpr-lazyrender],
.astra-advanced-hook-629[data-wpr-lazyrender] {
    content-visibility: visible !important;
}
