/* ✅ إخفاء أسهم السلايدر */
#home-slider-0 .s-slider-nav-arrow {
  display: none !important;
}

/* ✅ ضبط شعار النافبار */
.navbar-brand img {
  width: 100%;          /* اجعل الشعار يأخذ 100% من عرض الحاوية */
  height: auto;         /* المحافظة على نسبة العرض للطول */
  max-width: 90px;      /* أقصى عرض للشعار */
  max-height: 100%;     /* عدم تجاوز ارتفاع الحاوية */
  object-fit: contain;  /* احتواء الشعار داخل الحاوية */
}

/* ✅ استبدال أيقونة الاقتباس */
.sicon-quote-open {
  background: none; /* إزالة أي خلفية سابقة */
}
.sicon-quote-open:before {
  content: '';
  background-image: url('https://i.postimg.cc/ZK0GYwrk/Add-a-heading-1280-x-428-px-1488-x-1120-px-5.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 52px;
  height: 52px;
  display: inline-block;
}

/* ✅ تنسيق العنوان الرئيسي */
#app h1.font-bold {
  color: #724a38;
}

/* ✅ قسم "الأكثر مبيعاً" */
.best-selling {
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: 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;
}

/* ✅ ميديا للجوال */
@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;
    text-align: center;
  }
}

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

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


.s-modal-body {
  margin-bottom: 120px !important; /* قلل أو زود الرقم حسب رغبتك */
}