﻿/* Fullscreen Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(17,24,39,.45);
    display: none; /* kapalı başlar */
    align-items: center;
    justify-content: center;
}

    .page-loader.show {
        display: flex;
    }

.loader-box {
    width: min(320px, calc(100vw - 48px));
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 30px 80px rgba(17,24,39,.25);
    text-align: center;
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 4px solid rgba(17,24,39,.12);
    border-top-color: rgba(47,119,208,1);
    margin: 0 auto 10px;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    font-weight: 800;
    font-size: 14px;
    color: #111827;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
