/* ==========================================
   TRIVANA LUXURY SPLASH LOADER OVERLAY
========================================== */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FAF8F5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#loader img,
#loader .loader-logo,
.loader-logo {
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 10px 25px rgba(139, 107, 74, 0.25)) !important;
    animation: loaderLogoPulse 1.2s ease-in-out infinite alternate !important;
}

@keyframes loaderLogoPulse {
    from {
        transform: scale(0.92);
        opacity: 0.85;
    }
    to {
        transform: scale(1.08);
        opacity: 1;
    }
}