* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Times New Roman", Times, serif;
  height: 100vh;
}

#price-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 5px;
  outline: none;
}

#price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

#price-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

#price-range::-ms-thumb {
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
/* تخصيص حجم الصورة في الـ Lightbox */
.lb-image {
  max-width: 90vw; /* عرض الصورة سيكون 90% من عرض الشاشة */
  max-height: 90vh; /* ارتفاع الصورة سيكون 90% من ارتفاع الشاشة */
  margin: auto; /* لضمان وضع الصورة في المنتصف */
  object-fit: contain; /* لتحديد كيف يتم عرض الصورة داخل الـ Lightbox */
}
