/* Add custom CSS styles below */ 
/* تغيير لون خلفية صورة المنتجات إلى أبيض */
.disable-out-products {
background-color: white;
  }
.out-of-stock {
background-color: white;
  }
.product-card__image img {
background-color: white;
  }
/* تغيير لون القائمة */
.main-menu-row {
  background-color: #f5f5f5;
      }
/* هوامش أعلى اللوجو وأسفله */
.main-nav-container .inner {
  padding-top: 15px;
  padding-bottom: 15px;
      }
/* ظل الهيدر البديل */
.main-nav-container.fixed-pinned .inner {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, .1);
      }
/* تغيير لون الـ X في القائمة الجانبية */
.btn--close {
  color: #050f2c;
      }
        
/* تكبير كل الأسعار تقريبًا عبر الموقع */
:is(
  .price,
  .prices,
  .product-price,
  .product__price,
  .product-card__price,
  .product-item__price,
  .product-details__price,
  .product-info__price,
  .single-product .price,
  .products .price,
  .listing .price,
  .cart-item__price,
  .cart-line .price,
  .order-summary .price,
  .summary-total .price,
  .checkout-summary .price,
  [itemprop="price"],
  [data-price],
  [class*="price"],
  [class*="Price"]
):not(.old):not(.compare):not(.was):not(.strike) {
  font-size: 20px !important; /* الحجم ثابت هنا */
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

/* إن كانت العملة في سبان منفصل */
:is(.price, .product-price) :is(.currency, .curr, .money, .sar, .aed) {
  font-size: 18px !important; /* حجم أصغر شوي للعملة */
}

/* تكبير إضافي أو مختلف على الجوال */
@media (max-width: 480px) {
  :is(
    .price, .product-price, [itemprop="price"], [data-price], [class*="price"], [class*="Price"]
  ) {
    font-size: 20px !important; /* أصغر للجوال */
  }
}
/* إنزال البنرين المزدوج تحت مكانهم الطبيعي */
.lift-double-banners {
  margin-top: 10px !important;   /* زوّد الرقم حسب الحاجة */
  padding-top: 0 !important;
}

/* ديسكتوب */
@media (min-width: 1025px) {
  .lift-double-banners { margin-top: 15px !important; }
}

/* تابلت */
@media (min-width: 768px) and (max-width: 1024px) {
  .lift-double-banners { margin-top: 12px !important; }
}

/* جوال */
@media (max-width: 767px) {
  .lift-double-banners { margin-top: 8px !important; }
}