/* ✅ صور المنتجات */
.product-card img,
.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1; /* حجز مساحة ثابتة يقلل CLS */
}

/* ✅ صور البنرات والهيدر */
.hero-banner img,
.slider img,
.swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9; /* يثبت مساحة البنر */
}

/* ✅ تثبيت مساحة لكل الصور */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ✅ تحسين الخط */
html {
  font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ✅ تحسين التفاعل */
a, button {
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

/* ✅ أزرار شات Chatwoot */
.woot-widget-bubble {
  position: fixed !important;
  right: 20px !important;
  bottom: 90px !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgb(0, 156, 224) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
  padding: 0 !important;
}
.woot-widget-bubble svg {
  width: 28px !important;
  height: 28px !important;
  fill: #ffffff !important;
}

/* ✅ اللوجو في الهيدر (تصغير الحجم) */
.header-logo img {
  max-height: 55px !important; /* عدل الرقم حسب مقاسك */
  height: auto;
}

.woot-widget-bubble {
  position: fixed !important;
  right: 20px !important;
  bottom: 90px !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgb(0, 156, 224) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
  padding: 0 !important;
}

.woot-widget-bubble svg {
  width: 28px !important;
  height: 28px !important;
  fill: #ffffff !important;
}

#product-filter option[value="bestSell"] {
    display: none;
}