/* === تكبير بنرات أعلى الصفحة === */
@media (max-width: 768px) {
  .s-slider, .s-slider-item { height: 180px !important; }
  .s-slider-item img { height: 180px !important; object-fit: cover; }
}

/* === ضبط البطاقات بشكل صحيح ومتساوية === */
.s-product-card-entry {
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--normal-box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100% !important;
}

.s-product-card-entry img {
  width: 100% !important;
  height: 177px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.s-product-card-entry img:hover { transform: scale(1.05); }

.s-product-card-entry .s-product-card-title { min-height: 40px; }

/* === السلايدر على الجوال === */
@media (max-width: 768px) {
  .s-products-slider-card {
    width: 46vw !important;
    max-width: 46vw !important;
  }
  .s-products-slider, .swiper-wrapper { overflow: visible !important; display: flex !important; }
}

/* === توحيد حجم بطاقات السلة === */
.s-cart-item__inner {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 120px !important;
}
.s-cart-item__image {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
}