/* Add custom CSS styles below */ 
/* إزالة أي هوامش خارجية للبنر */
.s-block--fixed-banner {
    padding: 0 !important;
    margin: 0 !important;
}

/* جعل الحاوية بعرض الشاشة */
.s-block--fixed-banner .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* جعل رابط البنر يملأ العرض */
.s-block--fixed-banner .banner--fixed {
    display: block;
    width: 100%;
}

/* جعل الصورة تملأ المكان بدون فراغ */
.s-block--fixed-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* للجوال */
@media (max-width: 768px) {
    .s-block--fixed-banner img {
        min-height: 180px;
        object-fit: cover;
    }

/* إخفاء صورة الشعار الأصلية */
.store-header .navbar-brand img {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* وضع الشعار الجديد */
.store-header .navbar-brand {
    background-image: url("https://i.ibb.co/TxrqNh57/20260111-041005.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    width: 180px;   /* حجم الشعار */
    height: 70px;

    display: block;
}

/* تحسين الوضوح */
.store-header .navbar-brand {
    image-rendering: -webkit-optimize-contrast;
}

/* للجوال */
@media (max-width: 768px) {
    .store-header .navbar-brand {
        width: 150px;
        height: 55px;
    }
}