/* Page Loading Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.page-loader .loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.page-loader svg polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-loader svg polyline#back {
    fill: none;
    stroke: #ff4d5033;
}

.page-loader svg polyline#front {
    fill: none;
    stroke: #ff4d4f;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_loading 1.4s linear infinite;
}

@keyframes dash_loading {
    72.5% {
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.page-loader .loading-text {
    color: #ff4d4f;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.page-loader .loading-logo {
    height: 40px;
    width: auto;
    margin-top: 0.5rem;
    background: transparent !important;
}
