/* ==========================================
   1. الحل الجذري لتثبيت حاوية سلة للبانر الرئيسي
   (هذا يقضي على القفزة الكبرى 0.733)
========================================== */
section.s-block--bundle-html-content:first-of-type {
  min-height: 750px !important;
  display: block !important;
  contain: paint; /* إجبار المتصفح بحجز المساحة هندسياً قبل رسم المحتوى */
}

@media (min-width: 992px) {
  section.s-block--bundle-html-content:first-of-type {
    min-height: 520px !important; 
  }
}

/* ==========================================
   2. ترويض قسم "تسوق حسب الفئة" (تم تحديث المساحة لتشمل العنوان والوصف وصفين من الصور)
========================================== */
section.s-block.s-block--square-links {
  min-height: 450px !important; /* مساحة واقعية مريحة للجوال تمنع القفز */
  display: block !important;
}

@media (min-width: 768px) {
  section.s-block.s-block--square-links {
    min-height: 250px !important; /* مساحة الكمبيوتر (غالباً الصور تكون بجانب بعضها) */
  }
}
/* ==========================================
   3. ترويض قسم البانرات الثنائية الأصلية في سلة
========================================== */
section.s-block--fixed-banner,
section.s-block--double-banner {
  min-height: 180px; 
}

@media (min-width: 768px) {
  section.s-block--fixed-banner,
  section.s-block--double-banner {
    min-height: 250px;
  }
}