/* 1. إخفاء الصور المصغرة وأيقونات الدفع في المنتج المميز */
.s-block--special-product .s-slider-thumbs,
.s-block--special-product .s-payments-list {
    display: none !important;
}

/* 2. إزالة أي مساحات داخلية لعنصر سلايدر سلة */
.s-block--special-product salla-slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: unset !important;
}

/* 3. تعديل المسافة في الجوال حصراً */
@media (max-width: 768px) {
    
    /* تصفير الهامش السفلي لحاوية الصور بالكامل */
    .s-block--special-product .product-images-slider {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* الأهم: سحب الحاوية التي تأتي مباشرة بعد الصور (تفاصيل المنتج) للأعلى بالقوة */
    .s-block--special-product .product-images-slider + div {
        margin-top: -20px !important; /* يمكنك زيادة الرقم إلى -40px أو -50px إذا احتجت مسافة أقرب */
        padding-top: 0 !important;
    }
}