/* 🔹 سكشن آراء العملاء – الشكل العام */
.s-block--testimonials {
  padding: 40px 0;
  background: #f7f5f2; /* تقدر تشيل السطر ده لو عايز الخلفية تبقى بيضا */
}

/* عنوان السكشن */
.s-block--testimonials .home-block-title h2 {
  font-size: 26px;
  font-weight: 800;
  color: #333333;
}

/* الخط اللي تحت العنوان */
.s-block--testimonials .home-block-line {
  margin-top: 6px;
  margin-bottom: 24px;
}

/* 🔹 الكروت الأساسية لكل الريفيوهات */
.s-block--testimonials .swiper-slide {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 22px;
  margin: 0 10px;              /* مسافة 20px تقريبًا بين كل كارت والتاني */
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  text-align: center;
  transition: all 0.3s ease;   /* عشان الأنيميشن لما الكارت يبقى Active */
}

/* صورة العميل */
.s-block--testimonials .swiper-slide img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
}

/* اسم العميل */
.s-block--testimonials .swiper-slide h3,
.s-block--testimonials .swiper-slide .customer-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* نص التقييم */
.s-block--testimonials .swiper-slide p,
.s-block--testimonials .swiper-slide .review-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
}

/* النجوم – نخليها قريبة من الاسم */
.s-block--testimonials .swiper-slide .rating,
.s-block--testimonials .swiper-slide .rating-stars {
  margin: 4px 0 10px;
}

/* 🔹 تمييز الكارت النشط (اللي في النص / المقروء) */
.s-block--testimonials .swiper-slide-active {
  transform: translateY(-8px) scale(1.03);
  border: 2px solid #c8a27b; /* غيّر اللون لو حابب */
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  opacity: 1;
}

/* الكروت اللي مش Active تبقى أهدى شوية */
.s-block--testimonials .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7;
}

/* 🔹 تحسين بسيط للموبايل */
@media (max-width: 767px) {
  .s-block--testimonials {
    padding: 30px 0;
  }

  .s-block--testimonials .swiper-slide {
    margin: 0 8px;
    border-radius: 16px;
  }

  /* 🔹 سكشن العروض / جميع المنتجات (best offers slider) */
#best-offers-2-slider {
  padding: 40px 0;
}

/* الكارت الأساسي لكل منتج داخل السلايدر */
#best-offers-2-slider .swiper-slide {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  margin: 0 10px;              /* حوالي 20px بين كل كارت والتاني */
  transition: all 0.25s ease;
}

/* الهوفر على الكارت */
#best-offers-2-slider .swiper-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* الصورة */
#best-offers-2-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* منطقة معلومات المنتج (الاسم + السعر + الوصف الصغير) */
#best-offers-2-slider .product-info {
  padding: 14px 16px 18px;
  text-align: center;
}

/* اسم المنتج */
#best-offers-2-slider .product-title {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;     /* بحد أقصى سطرين */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* الوصف الصغير تحت الاسم */
#best-offers-2-slider .product-short-description {
  font-size: 13px;
  color: #777777;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* السعر */
#best-offers-2-slider .product-price {
  font-size: 16px;
  font-weight: 800;
  color: #c8a27b;             /* لون متناسق مع سِوار */
  margin-bottom: 10px;
}

/* زر إضافة للسلة (لو ظاهر بالكلاس ده عندك) */
#best-offers-2-slider .add-to-cart-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

#best-offers-2-slider .add-to-cart-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

/* موبايل */
@media (max-width: 767px) {
  #best-offers-2-slider {
    padding: 30px 0;
  }

  #best-offers-2-slider .swiper-slide {
    margin: 0 8px;
    border-radius: 16px;
  }
}
}