/* تكبير الخط في جميع أنحاء المتجر */
body {
  font-size: 18px !important; /* يمكنك تغيير الرقم حسب رغبتك */
  line-height: 1.8;
}

/* تكبير العناوين */
h1, h2, h3, h4, h5, h6 {
  font-size: 1.2em !important;
}

/* تكبير النصوص داخل المنتجات والوصف */
.product-description, .product-title, .product-price, .btn, p, span {
  font-size: 18px !important;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
  transform-origin: top center;
}

/* تصغير خفيف لصفحات اللابتوب */
html {
  zoom: 0.85;
}

/* تصغير إضافي للشاشات الصغيرة */
@media (max-width: 1024px) {
  html {
    zoom: 0.8;
  }
}

@media (max-width: 768px) {
  html {
    zoom: 0.75;
  }
}

@media (max-width: 480px) {
  html {
    zoom: 0.7;
  }
}