/* تهيئة عامة للمنتجات */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 15px;
}

.product {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1; /* يجعل العنصر مربعًا */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 70%; /* يمكن تعديل النسبة حسب الحاجة */
  object-fit: cover; /* يحافظ على تناسق الصورة */
}

.product h3, .product p {
  padding: 8px 12px;
  margin: 0;
  text-align: center;
}

/* تصميم متجاوب للجوال */
@media (max-width: 768px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr); /* عمودين في الجوال */
  }
  
  .product {
    aspect-ratio: 1/1; /* يبقى مربعًا */
  }
}

h1,
h2,
.hero-title,
.text-3xl {
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}