/* EMERGENCY SCROLL RESTORE - LIVE FIX */

/* 1. Global Reset */
html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    position: static !important;
    touch-action: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Kill all Loaders */
#ngoLoader, #modern-loader, .spinner-overlay, .loader-wrapper {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 3. Ensure Content is Interactable */
main, .container, .container-fluid, section, header, footer {
    pointer-events: auto !important;
    touch-action: auto !important;
}

/* 4. Fix Hero Section */
.hero-carousel {
    position: relative !important;
    overflow: hidden !important;
    height: 100vh !important;
    min-height: 100vh !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    touch-action: pan-y !important; /* Allow vertical scroll, handle horizontal swipe */
}

/* 5. Override specific blocking styles */
[style*="overflow: hidden"], [style*="overflow:hidden"] {
    overflow: visible !important;
    overflow-y: auto !important;
}

