/* ============================
   الحل المثيل - نسخة مستقرة
   ============================ */

/* شكل الكارت */
[data-product-card] {
  border: 1px solid #eee !important;
  border-radius: 10px !important;
  padding: 10px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* توحيد حجم الصورة */
[data-product-card] img {
  width: 100% !important;
  height: 200px !important;
  max-height: 200px !important;
  object-fit: contain !important;
}

/* عدد الأعمدة */
[data-grid] {
  display: grid !important;
  gap: 16px !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 992px) {
  [data-grid] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
  [data-grid] { grid-template-columns: repeat(2, 1fr) !important; }
}

/* الخط */
[data-product-card] h3 {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

/* إخفاء زر تبديل الشكل */
[aria-label="اختر تخطيط الشبكة"] {
  display: none !important;
}

/* زر أضف للسلة أزرق، وثابت بالأسفل دايم (حل مشكلة عدم التناسق) */
[data-product-card] button[data-add-to-cart] {
  background-color: #273682 !important;
  border-color: #273682 !important;
  color: #ffffff !important;
  margin-top: auto !important;
}
[data-product-card] button[data-add-to-cart]:hover {
  background-color: #1c2861 !important;
  border-color: #1c2861 !important;
}