.swiper {
  width: 95%;
  max-width: 700px;
  box-shadow: none !important;
  overflow: visible;     /* باش يظهر السكيل بلا قص */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: transparent;
  position: relative;
}

.swiper-wrapper {
  overflow: visible !important; /* ضروري للسحب بدون قطع */
}

.swiper-slide {
  justify-content: center; /* تمركز أفقي */
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  user-select: none;
  pointer-events: none;
  will-change: transform;
}

.swiper-slide-active img {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.swiper-slide img { /*الغاء الضل في حاوية السلايدر */
  box-shadow: none !important;
}
