/* خلفية البطاقة */
.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير عند مرور المؤشر */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* صورة المنتج */
.product-card img {
  border-radius: 10px;
  object-fit: cover;
  height: auto;
  width: 100%;
}

/* اسم المنتج */
.product-card .product-title {
  font-family: 'Cairo', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #333333
  margin: 8px 0;
  text-align: center;
}

/* السعر */
.product-card .price {
  color: #991b1b;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

/* زر الإضافة للسلة */
.add-to-cart-button {
  background-color: #7c1d1d;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: bold;
  display: block;
  margin: 10px auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #a83232;
}