/*******************************************
 * شبكة البنرات فقط (بدون لمس بقية الصفحة)
 * ديسكتوب: 3 في الصف
 * موبايل:  2 في الصف
 *******************************************/

/* تجهيز سكشن البنر */
.s-block--fixed-banner {
  box-sizing: border-box;
  margin: 0;
  clear: none !important;      /* منع أي clear من الثيم */
}

/* إزالة قيود الـ container داخل سكشن البنر */
.s-block--fixed-banner > .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 10px 20px !important;
}

/* ديسكتوب: 3 بنرات في الصف */
@media (min-width: 769px) {
  .s-block--fixed-banner {
    float: right;
    width: 33.3333% !important;   /* أهم سطر: يجبر حتى الأخير يكون ثُلث */
  }
}

/* موبايل: 2 بنرات في الصف */
@media (max-width: 768px) {
  .s-block--fixed-banner {
    float: right;
    width: 50%;
  }
}

/* أي سكشن بعد البنرات يبدأ من تحت (ما يركب فوقها) */
.s-block--best-offers,
.s-block--testimonials,
.store-footer {
  clear: both;
}

/*******************************************
 * تأثير الهوفر على البنرات
 *******************************************/
.s-block--fixed-banner .banner--fixed {
  border-radius: 14px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.s-block--fixed-banner .banner--fixed img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover */
.s-block--fixed-banner .banner--fixed:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  filter: brightness(1.03);
}

.s-block--fixed-banner .banner--fixed:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}
@media (min-width: 769px) {
  .s-block--fixed-banner:last-of-type,
  .s-block--fixed-banner:nth-of-type(6) {
    width: 33.3333% !important;
    clear: none !important;
  }
}