/* 1. تهيئة الحاوية لتسمح بالحركة الأفقية */
.s-block-brands .s-block__content {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
    padding: 20px 0 !important;
}

/* 2. إنشاء قطار طويل من الشعارات وتفعيل الأنيميشن */
.s-block-brands .s-block__content > div {
    display: flex !important;
    flex-shrink: 0 !important;
    min-width: 100% !important;
    justify-content: space-around !important;
    animation: scrollRight 20s linear infinite !important;
}

/* 3. تعريف الحركة لجهة اليمين */
@keyframes scrollRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

/* 4. تنسيق شكل البراندات (الخط والزوايا) */
.s-block-brands .brand-item {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    border-radius: 15px !important; /* انحناء احترافي */
    padding: 15px !important;
    margin: 0 10px !important;
    width: 160px !important;
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02) !important;
    transition: 0.3s ease-in-out !important;
}

/* 5. تحسين الخط للعنوان */
.s-block-brands .s-block__title {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #000 !important;
}

/* إخفاء زر "عرض الكل" المزعج */
.s-block-brands .s-block__display-all {
    display: none !important;
}

/* توقف الحركة عند وضع الماوس لسهولة التصفح */
.s-block-brands .s-block__content:hover > div {
    animation-play-state: paused !important;
}
<meta name="google-site-verification" content="hEFyAkfaBLQqE1P79kV3ErbV1apqBGv4xUROWuYuEec" />