/* Add custom CSS styles below */ 
/* استهداف مباشر لقسم شركاؤنا وتكبير الشعارات */
[class*="logos"] img {
    max-height: 110px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* ضبط أبعاد المربعات الحاضنة للشعارات */
[class*="logos"] [class*="brand-item"],
[class*="logos"] [class*="swiper-slide"] {
    height: 130px !important;
    max-height: 130px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
}
/* توسيط المنتجات داخل قسم (صدقتك .. قرآن يتلى) وقسم (مشاريع نوعية) */
#best-offers-4-slider .swiper-wrapper,
#best-offers-1-slider .swiper-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    transform: none !important; /* إلغاء الإزاحة الافتراضية للتوسيط */
}

/* ضبط المسافات بين كروت المنتجات في القسمين لمنع تداخلها */
#best-offers-4-slider .s-products-slider-card,
#best-offers-1-slider .s-products-slider-card {
    margin-left: 12px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
}

/* تحسين العرض على الشاشات الصغيرة (الجوال) ليعود كسلايدر طبيعي مريح للتصفح */
@media (max-width: 768px) {
    #best-offers-4-slider .swiper-wrapper,
    #best-offers-1-slider .swiper-wrapper {
        justify-content: flex-start !important;
        transform: translate3d(0px, 0px, 0px) !important;
    }
}