/* Page Loader - Three dots in horizontal line */
.mnm-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mnm-page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mnm-loader-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.mnm-loader-dot {
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    display: block;
    animation: mnm-loader-pulse 1.4s ease-in-out infinite;
}

.mnm-loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.mnm-loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.mnm-loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes mnm-loader-pulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide body scroll while loader is visible */
body:has(#mnm-page-loader:not(.hidden)) {
    overflow: hidden;
}

