/**
 * PP Store-Locator product scoping — popup-open styling.
 *
 * Only enqueued on product pages, where #yith-store-locator lives solely inside the
 * "Find Products Near You" Elementor popup. Hide it by default so YITH's stale page-load
 * render never paints (not even one frame) when the popup opens; the JS adds
 * .pp-slps-ready once our scoped search has finished, revealing a fully-built map + list
 * in a single step. visibility (not display) keeps the box sized so the map can measure.
 */
#yith-store-locator {
	visibility: hidden;
}

#yith-store-locator.pp-slps-ready {
	visibility: visible;
}
