/*
 * Mithaq Afaq - Shared production overrides
 * قواعد مشتركة للموقع بدون تكاملات خارجية للدردشة.
 */

/* عناصر التواصل الداخلية على اليمين */
.fixed-contact {
    position: fixed !important;
    right: 20px !important;
    left: auto !important;
    bottom: 30px !important;
    z-index: 99990 !important;
}

/* منع شريط أفقي أو مساحة سفلية زائدة */
html,
body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .fixed-contact {
        right: 12px !important;
        bottom: 18px !important;
    }
}


/* عبارة شاشة التحميل مباشرة تحت الشعار */
.preloader {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
}

.preloader__image {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    min-height: 60px !important;
    margin: 0 auto !important;
    background-size: 60px auto !important;
}

.preloader__tagline {
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 8px 0 0 !important;
    color: #079da9 !important;
    direction: rtl;
    font-family: "Cairo", "Arial", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .3px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}

.preloader__tagline::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 7px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #fe9043, #079da9);
}

@media (max-width: 768px) {
    .preloader__tagline { font-size: 17px; }
}


/* إخفاء مضمون لشاشة التحميل بدون إعادة تحميل الصفحة */
.preloader.preloader--hide {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .6s ease, visibility .6s ease !important;
}
