.product-card__image {
  width: 100%;        /* عرض الصورة يملأ الكرت */
  height: auto;       /* ارتفاع الصورة يتحدد حسبها */
  background: none;   /* لا خلفية */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;        /* عرض الصورة يملأ مساحة العنصر */
  height: auto;       /* ارتفاع الصورة حسب نسبة العرض */
  object-fit: contain; /* الصورة تظهر كاملة بدون قص */
}


/* ====================== */
/* Responsive للجوال - تكيف حر */
/* ====================== */
@media (max-width: 768px) {
  /* أحذف كل التحديدات السابقة وأجعلها تتكيف تلقائياً */
  .products-grid,
  .container-grid,
  .products-wrapper {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .container-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px !important;
  }

  .product-card__image {
    height: 180px !important;
    min-height: 0 !important;
  }

  .product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* أزيل أي قيود على العرض في الجوال */
  .product-card__content {
    padding: 15px !important;
  }

  h2 {
    font-size: 19px;
  }
}

/* للشاشات الصغيرة جداً */
@media (max-width: 480px) {
  .product-card {
    border-radius: 12px !important;
  }

  .product-card__image {
    height: 150px !important;
    min-height: 0 !important;
  }

  .product-card__content {
    padding: 12px !important;
  }
}