/* ===========================
    GİRİŞ YÜKLEME EKRANI (minimal)
    Logo + ince yükleme çubuğu, çubuğun ucunda ilerleyen Manitou ikonu
=========================== */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity .5s ease, visibility .5s ease;
}

.site-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

.loader-logo span {
    display: block;
    color: #f2b705;
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 4px;
}

.loader-bar-track {
    position: relative;
    width: 220px;
    height: 3px;
    background: #2a2a2a;
    border-radius: 2px;
}

.loader-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #f2b705;
    border-radius: 2px;
    animation: loaderFill 1.6s cubic-bezier(.65,0,.35,1) forwards;
}

.loader-bar-icon {
    position: absolute;
    top: -15px;
    left: 0%;
    width: 34px;
    height: auto;
    transform: translateX(-50%);
    animation: loaderIconMove 1.6s cubic-bezier(.65,0,.35,1) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

@keyframes loaderIconMove {
    to { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .loader-bar-fill, .loader-bar-icon {
        animation: none !important;
        width: 100%;
        left: 100%;
    }
}