/* =========================================
   PRODUCT CARDS – IMAGE & CARD BACKGROUND
   Purpose:
   - White background for cards
   - White background for images
   - Proper image fitting (no black bg)
========================================= */

/* الكرت نفسه */
.product-card,
.products-grid .card,
.products-grid a {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  text-decoration: none;
}

/* منطقة الصورة */
.product-card__image,
.product-image,
.card-image {
  background: #ffffff; /* الخلفية البيضاء المطلوبة */
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* الصورة نفسها */
.product-card__image img,
.product-image img,
.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* الأهم: يمنع القص */
  background: #ffffff;   /* لو الصورة شفافة */
  display: block;
}

/* عنوان المنتج */
.product-card__title,
.product-title,
.card-title {
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #0b1a2b;
  background: #ffffff;
}

/* منع أي خلفية سوداء موروثة */
.product-card *,
.products-grid * {
  background-color: transparent;
}
