﻿/* ===========================
   🔹 Loading Overlay Styles (Final)
   نسخه نهایی ادغام‌شده با همه‌ی امکانات
   شامل coin animation + fade + progress
=========================== */

:root {
    --coin-size: 4rem; /* اندازه متوسط برای لودینگ */
    --spin-duration: 3s; /* مدت چرخش کوتاه‌تر برای لودینگ مداوم */
    --spin-count: 1; /* یک چرخش کامل */
    --pause-duration: 0s; /* بدون مکث برای لودینگ */
    --coin-color-light: #ffd700; /* طلایی روشن */
    --coin-color-dark: #daa520; /* طلایی تیره */
}

/* ====== Overlay Base ====== */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: auto;
}

    /* فقط این خط رو حذف کن 👇 */
    /* flex: 0 0 100%; */


    .loading-overlay.spinner {
        /* فقط برای مشخص کردن نوع، بدون انیمیشن */
    }



    .loading-overlay.local {
        z-index: 5000 !important;
    }


    /* زمانی که نمایش داده شود */
    .loading-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .loading-overlay.fade-out {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .loading-overlay.global {
        position: fixed; /* برای لودینگ کل صفحه */
        z-index: 9999;
    }

/* ====== Coin Loader ====== */


/* 🟡 سکه (Coin) */
/*.loading-overlay .coin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fcd34d, #b45309);
    border: 2px solid rgba(0,0,0,0.1);
    animation: spin-coin 1s linear infinite;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    pointer-events: none;
}*/
    .loading-overlay .coin {
        width: 60px; /* کمی بزرگ‌تر بهتر دیده میشه */
        height: 60px;
        background: url('/images/loading/coin_loading.jpg') center/cover no-repeat;
        border-radius: 50%;
        animation: spin-coin 1.2s linear infinite;
        pointer-events: none;
    }


/* انیمیشن چرخش */
@keyframes spin-coin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }

    80% {
        transform: rotateY(calc(360deg * var(--spin-count))); /* چرخش سریع و کند شدن در انتها */
    }

    100% {
        transform: rotateY(calc(360deg * var(--spin-count))); /* نگه داشتن موقعیت برای تکرار */
    }
}

/* ====== Progress Loader ====== */
.progress-bar-wrap {
    width: 80%;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 12px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

/* ====== Accessibility ====== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ====== Spinner Loader (Alternative Style) ====== */
.spinner {
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #3498db;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    animation: spin-simple 1s linear infinite;
}

@keyframes spin-simple {
    to {
        transform: rotate(360deg);
    }
}

/* ====== Animations ====== */
.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
