/* تنسيق عام لقسم المنتجات */
.products-section {
  padding: 40px 20px;
  background: #fff;
}

.products-section h2 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

/* شبكة المنتجات */
.products-section .product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 20px !important;
}

/* كارت المنتج */
.products-section .product-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.products-section .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* صورة المنتج */
.products-section .product-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* اسم المنتج */
.products-section .product-item .product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
}

/* السعر */
.products-section .product-item .price {
  font-size: 16px;
  margin: 8px 0;
}

/* السعر القديم */
.products-section .product-item .price del {
  color: #999;
  margin-right: 6px;
}

/* السعر الجديد */
.products-section .product-item .price ins {
  color: red;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

/* زر إضافة للسلة */
.products-section .product-item .add-to-cart {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: black;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.products-section .product-item .add-to-cart:hover {
  background: #333;
}