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


.navbar-brand img {
  width: 100%; /* Make the logo take up 100% of the container width */
  height: auto; /* Maintain the aspect ratio by adjusting the height automatically */
  max-width: 90px; /* Set a maximum width for the logo (adjust this value as needed) */
  max-height: 100%; /* Ensure it doesn't exceed the container's height */
  object-fit: contain; /* Ensure the image is contained within the parent container */
}


/* Remove the existing icon */
.sicon-quote-open {
  background: none; /* Remove any previous background */
}

/* Add the external link icon */
.sicon-quote-open:before {
  content: ''; /* Ensure any content from previous icon is removed */
  background-image: url('https://i.postimg.cc/ZK0GYwrk/Add-a-heading-1280-x-428-px-1488-x-1120-px-5.png'); /* Replace with your external link icon path */
  background-size: contain;
  background-repeat: no-repeat;
  width: 52px; /* Set desired width */
  height: 52px; /* Set desired height */
  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;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 16px; /* زوايا ناعمة للصورة أيضاً */
}

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

/* الجوال */
@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;
  }
}



.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 (min-width: 1024px) {
  .best-selling {
    max-width: 3000px;
    margin: 20px auto;
    text-align: center;
  }
  
  
  
  
  
  /* إخفاء السلايدر الرمادي */
.manual-slider {
  display: none important!; 
}