/* Add custom CSS styles below */
.footer-logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  display: inline-block;
}

/* حجز مساحة للفوتر لتقليل القفزات */
.store-footer {
  min-height: 320px; /* عدّل الرقم إذا احتجت */
  contain: layout;
}

/* حجز مساحة لشريط الحقوق */
.footer-bottom.s-block {
  min-height: 56px;
  contain: layout;
  display: flex;
  align-items: center;
}

/* تثبيت ارتفاع السطر لتقليل تأثير تبديل الخط */
.store-footer, .store-footer * {
  line-height: 1.6;
}

/* منع اهتزاز الأرقام (مثل الإجمالي في السلة) */
.s-cart-summary-total, .s-cart-summary-total * {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
/* تثبيت شعارات الدفع داخل الفوتر ومنع width/height=100% */
.s-payments-list img,
.s-payments-list img.lazy,
.s-payments-list img[alt] {
  width: 58px !important;
  height: 58px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: inline-block !important;
}
.store-footer {
  contain: layout;
}

/* حجز مساحة للفوتر فقط على الشاشات الصغيرة حيث CLS أكبر */
@media (max-width: 768px) {
  .store-footer { min-height: 260px; }
  .footer-bottom.s-block { min-height: 56px; }
}