/* 0) نجبر الحاوية الأصلية على الامتداد الكامل بدون أي تباعد */
.s-advertisement,
.s-advertisement > div {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 1) صندوق الشريط: يغطي العرض كامل بدون أي فراغ بالحواف */
.s-advertisement-content {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 40px !important;
    padding: 0 !important;
}

/* 2) المسار: اتجاه ثابت يسار-يمين */
.s-marquee-track {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    display: flex !important;
    direction: ltr !important;
    white-space: nowrap !important;
    will-change: transform !important;
    transform: translateY(-50%);
    animation: sallaMarqueeLoop 70s linear infinite;
}

.s-marquee-group {
    display: flex !important;
    direction: ltr !important;
}

/* 3) كل نسخة من النص */
.s-marquee-item {
    display: inline-block !important;
    white-space: nowrap !important;
    padding-inline-end: 80px !important;
}

/* 4) الحركة */
@keyframes sallaMarqueeLoop {
    0%   { transform: translate(calc(-1 * var(--marquee-w, 100%)), -50%); }
    100% { transform: translate(0, -50%); }
}

/* 5) زر X ثابت أقصى اليمين */
.s-advertisement-action {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
}

/* ===== Qatarat Al-Wasm Preloader ===== */
.qw-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0F2A47;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.qw-preloader.qw-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.qw-preloader img {
    width: 220px;
    height: auto;
    max-width: 70vw;
    mix-blend-mode: multiply;
    animation: qw-fade-scale 1.4s ease-in-out infinite;
}
@keyframes qw-fade-scale {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.045); opacity: .85; }
}

/* ===== لون الشريط العلوي ===== */
.s-advertisement,
.s-advertisement-content,
.s-advertisement-content-main,
.s-marquee-track {
    background-color: #0CA4AE !important;
}
.s-advertisement-content-main,
.s-advertisement-content-main * {
    color: #FFFFFF !important;
}
.s-advertisement-action svg,
.s-advertisement-action i {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* ===== تخفيف سمك خط الشريط العلوي ===== */
.s-advertisement-content-main,
.s-advertisement-content-main * {
    font-weight: 300 !important;
    font-size: 15px !important;
}
/* ===== إخفاء السلايدر لحد ما Swiper يخلص التهيئة (يمنع الفلاش) ===== */
.swiper {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.swiper.swiper-initialized {
    opacity: 1;
}