/* Add custom CSS styles below */ 
/* تحسين سرعة وأداء متجر سلة - Keto House */

/* تسريع عرض الصور */
img {
  content-visibility: auto;
  image-rendering: auto;
}

/* منع اهتزاز العناصر أثناء التحميل */
img,
.product-item,
.s-slider-block {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* تحسين أداء السلايدر */
.swiper,
.swiper-wrapper,
.swiper-slide {
  will-change: transform;
}

/* تقليل استهلاك الأنيميشن */
* {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* تحسين الخطوط */
body {
  text-rendering: optimizeSpeed;
  font-display: swap;
}

/* تقليل الظلال الثقيلة */
.product-item,
.card,
.banner {
  box-shadow: 0 2px 8px rgba(0,0,0,.05) !important;
}

/* تحسين أزرار المتجر */
.btn,
button {
  transform: translateZ(0);
  transition: .2s ease;
}

/* Lazy Rendering للأقسام */
section,
.products-slider,
.main-slider {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}