
/* ====== تنسيق عام للمنتجات ====== */
.woocommerce ul.products li.product {
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ====== الصورة ====== */
.woocommerce ul.products li.product img {
  max-height: 100px;
  width: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

/* ====== اسم المنتج ====== */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 600;
  height: 38px;
  overflow: hidden;
  line-height: 1.3;
  margin-bottom: 6px;
}

/* ====== السعر ====== */
.woocommerce ul.products li.product .price {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-top: auto;
}

/* ====== جعل الشبكة 4 منتجات في الصف ====== */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 15px;
}

/* ====== استجابة للجوال: صفين ====== */
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
