#fremantle-transition-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 99999; /* Super high so it stays on top of WP elements */
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#fremantle-svg { width: 100%; height: 100%; }
#fremantle-path { stroke-width: 50; opacity: 0; }

/* Disable default browser flickering on Chrome/Edge */
::view-transition-old(root), ::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
}
/* Nuke the Elementor native transition element */
e-page-transition, 
.e-page-transition {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Ensure our container is always on top */
#fremantle-transition-overlay {
    z-index: 999999 !important;
}