﻿/* =========================================
   1. تنظیمات کلی و فیکس اسکرول (Global Fixes)
   ========================================= */
body, html {
    overflow-x: hidden !important; 
    width: 100%;
    margin: 0;
    padding: 0;
}

.mud-main-content {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* =========================================
   2. تعریف فونت وزیر (Fonts)
   ========================================= */
@font-face {
    font-family: 'Vazirmatn';
    /* مسیر فونت نسبت به فایل CSS */
    src: url('../fonts/Vazirmatn.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* =========================================
   3. استایل لودینگ (Loading Spinner)
   ========================================= */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F9F9F9;
    z-index: 9999;
    font-family: 'Vazirmatn', sans-serif !important;
}

.chic-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

    .chic-spinner::before,
    .chic-spinner::after {
        content: '';
        position: absolute;
        border: 4px solid #D81B60;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        animation: chic-pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    }

    .chic-spinner::after {
        animation-delay: 1s;
    }

@keyframes chic-pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.loading-text {
    margin-top: 30px;
    color: #D81B60;
    font-weight: 600;
    font-size: 1.1rem;
}
