/* ============================
   Products Sections Styling
============================ */
.s-block--best-offers {
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
}

/* ============================
   إزالة Title و "عرض الكل" و الأسهم
============================ */
.s-slider-block__title-right,
.s-slider-block__title-left,
.s-slider-block__title-nav {
  display: none !important;
}

/* ============================
   Products Wrapper & Cards
============================ */
.s-slider-swiper-wrapper {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 20px;
}

.s-products-slider-card {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* ============================
   Card Hover Effect
============================ */
.s-products-slider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ============================
   Product Image Styling
============================ */
.s-product-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(100%);
}

.s-products-slider-card:hover .s-product-card-image img {
  transform: scale(1.05);
  filter: brightness(105%);
}

/* ============================
   Product Title Styling (داخل الكارت فقط)
============================ */
.s-product-card-content-title {
  text-align: center;
  margin: 10px 0 5px 0;
}

.s-product-card-content-title a {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.s-products-slider-card:hover .s-product-card-content-title a {
  color: #7143c7;
}

/* ============================
   Price Styling
============================ */
.s-product-card-price {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

.s-products-slider-card:hover .s-product-card-price {
  color: #7143c7;
}

/* ============================
   Add to Cart Button Hover
============================ */
.s-product-card-content-footer button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.s-products-slider-card:hover .s-product-card-content-footer button {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(113, 67, 199, 0.3);
}

/* ============================
   Preserve Animation for Moving Products
============================ */
.s-products-slider-card.animated,
.s-products-slider-card.custom-animated {
  animation: inherit !important;
  transition: inherit !important;
}

/* ============================
   Cursor Pointer
============================ */
@media (hover: hover) and (pointer: fine) {
  .s-products-slider-card {
    cursor: pointer;
  }
}