/* ============================================================
   CRITICAL FIX: FORCE HIDE PRELOADER IMMEDIATELY
   Purpose: Override all preloader CSS to hide it permanently
   The preloader has z-index 1001 and covers the header (z-index 1000)
   This CSS forcefully hides it with !important
   ============================================================ */

#loader-wrapper {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#loader-wrapper .loader-section,
#loader-wrapper .loader-section.section-left,
#loader-wrapper .loader-section.section-right {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

#loader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Force show header and top header immediately */
.header-section,
.header__top {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}
