/* خلفية قسم الهيرو الرئيسي - كريمي فاتح */
.s-block--fixed-banner {
    background-color: #fdf1f0 !important;
}

/* ===== تأثير ظهور الشعار عند تحميل الصفحة ===== */
body:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999999;
    background: url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/wWZvyD/s5WRdo1etPS4Fs9MUti405NDp0SlwtyDtDV3HC6R.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 360px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation-name: fade-in;
    animation-duration: 2.5s;
    transform: scale(0);
    border: none;
    pointer-events: none;
}

@keyframes fade-in {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    75% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(.1);
    }
}