/*
 * Mashhor — Elementor Popup Fix
 * 
 * When LiteSpeed Cache defers JS, Elementor's popup positioning
 * script loads late, causing the mobile menu popup (#elementor-popup-modal-1267)
 * to appear at page bottom with position:static.
 * 
 * This CSS ensures the popup ALWAYS uses fixed positioning
 * regardless of JS load timing.
 */

/* Force all Elementor popup modals to be fixed-positioned overlays */
.elementor-popup-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
}
