/* تعريف الخط */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, ..."); /* محتوى Base64 للخط */
  font-weight: 400;
  font-style: normal;
}

/* ألوان سمة Swiper */
:root {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
}

/* مكونات Swiper الأساسية */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  width: 100%; /* تأكد من أن الحاوية تمتد عبر العرض الكامل */
}

/* ضبط العرض التلقائي للشرائح */
.swiper-wrapper {
  display: flex;
  width: auto; /* استخدم عرض تلقائي لاحتواء الشرائح */
  height: 100%;
  transition-property: transform;
  flex-wrap: wrap; /* السماح للشرائح بالانتقال إلى السطر التالي */
  gap: 20px; /* المسافة بين الشرائح */
  justify-content: center; /* توسيط الشرائح في الحاوية */
}

.swiper-slide {
  flex: 0 0 300px; /* تحديد عرض الشريحة بـ 300px */
  height: 235px; /* تحديد طول الشريحة بـ 200px */
  position: relative;
  transition-property: transform;
}

/* أزرار التصفح - إخفاء الأزرار */
.swiper-button-next,
.swiper-button-prev {
  display: none; /* إخفاء أزرار التصفح */
}

/* الترقيم - إخفاء الترقيم */
.swiper-pagination {
  display: none; /* إخفاء الترقيم */
}

/* شريط التمرير - إخفاء شريط التمرير */
.swiper-scrollbar {
  display: none; /* إخفاء شريط التمرير */
}

/* التأثيرات غير المستخدمة - إخفاء جميع التأثيرات غير المستخدمة */
.swiper-zoom-container,
.swiper-slide-zoomed,
.swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-lazy-preloader-white,
.swiper-lazy-preloader-black,
.swiper .swiper-notification,
.swiper-free-mode > .swiper-wrapper,
.swiper-grid,
.swiper-grid-column,
.swiper-fade,
.swiper-cube,
.swiper-flip,
.swiper-creative,
.swiper-cards {
  display: none; /* إخفاء العناصر غير المستخدمة */
}

/* التأكد من ظهور الشرائح */
.swiper-slide {
  display: block; /* التأكد من أن الشرائح تظهر بشكل صحيح */
}
