/* ✅ صور المنتجات */
.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;
}
.woot-widget-bubble {
  position: fixed !important;
  right: 20px !important;
  bottom: 90px !important;
  width: 54px !important;
  height: 54px !important;
  background: #2e3c42 !important;
  border-radius: 14% 30% 14% 30% !important;
  transform: rotate(6deg);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s ease-in-out;
}

.woot-widget-bubble:hover {
  transform: rotate(6deg) scale(1.06);
}

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