/* Add custom CSS styles below */ 
/* ===================================================
   إعدادات عامة
=================================================== */

#app h1.font-bold {
  color: #724a38;
}

#sticky-booking-btn {
  font-weight: bold;
}

/* إخفاء السلايدر اليدوي */
.manual-slider {
  display: none !important;
}

/* مسافة أسفل المودال */
.s-modal-body {
  margin-bottom: 120px !important;
}

/* ===================================================
   شريط التنقل (Navbar)
=================================================== */

.navbar-brand img {
  width: 100%;
  height: auto;
  max-width: 90px;
  max-height: 100%;
  object-fit: contain;
}

/* ===================================================
   إخفاء أسهم السلايدر
=================================================== */

#home-slider-0 .s-slider-nav-arrow {
  display: none !important;
}

/* ===================================================
   أيقونة الاقتباس
=================================================== */

.sicon-quote-open {
  background: none;
}

.sicon-quote-open::before {
  content: '';
  background-image: url('https://i.postimg.cc/...');
  background-size: contain;
  background-repeat: no-repeat;
  width: 52px;
  height: 52px;
  display: inline-block;
}

/* ===================================================
   قسم "الأكثر مبيعاً"
=================================================== */

.best-selling {
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.best-selling-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 1350px;
  margin-bottom: 20px;
}

.best-selling-title hr {
  flex: 1;
  height: 1px;
  background: #ccc;
  border: none;
}

.best-selling-title span {
  font-size: 22px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

/* ===================================================
   الصور الرئيسية
=================================================== */

.image-wrapper {
  width: 100%;
  max-width: 1350px;
  aspect-ratio: 5 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 16px;
}

.best-selling-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.best-selling-image:hover {
  transform: scale(1.02);
}

/* ===================================================
   صور مربعة
=================================================== */

.square-photos-item {
  width: 700px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.square-photos-item .lazy__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

#square-photos-5,
#square-photos-6,
#square-photos-7 {
  margin-top: 25px;
}

.s-block__title {
  margin-bottom: 20px;
}

/* ===================================================
   ميديا كويري – الجوال
=================================================== */

@media (max-width: 768px) {
  .best-selling {
    padding: 30px 10px;
  }

  .best-selling-title span {
    font-size: 18px;
  }

  .image-wrapper {
    aspect-ratio: 4 / 5;
  }
}

/* ===================================================
   ميديا كويري – التابلت وما فوق
=================================================== */

@media (min-width: 800px) {
  .image-wrapper {
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .best-selling {
    max-width: 3000px;
    margin: 20px auto;
  }
}