/* ===== تنسيق صفحة عرض المنتجات (سلة - ثيم رائد) ===== */

/* حاوية صفحة المنتجات */
.page-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

/* العنوان الرئيس للصفحة */
.page-products .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Cairo', sans-serif;
  color: #333;
}

/* شبكة عرض المنتجات */
.page-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

/* تنسيق بطاقة المنتج */
.page-products .product-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* صورة المنتج داخل البطاقة */
.page-products .product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* تنسيق معلومات المنتج داخل البطاقة */
.page-products .product-card .product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* اسم المنتج */
.page-products .product-card .product-info .product-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

/* السعر */
.page-products .product-card .product-info .product-price {
  font-size: 1.4rem;
  color: #e60000;
  font-weight: bold;
  margin-top: auto;
}

/* زر إضافة إلى السلة */
.page-products .product-card .product-info .add-to-cart-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  border-radius: 5px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-products .product-card .product-info .add-to-cart-btn:hover {
  background-color: #0056b3;
}

/* تنسيق الفوتر (الخاتمة) */
footer.site-footer {
  background-color: #f7f7f7;
  padding: 40px 20px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

footer.site-footer a {
  color: #007bff;
  text-decoration: none;
}

footer.site-footer a:hover {
  text-decoration: underline;
}

/* استجابة للأجهزة الصغيرة (الهاتف المحمول) */
@media (max-width: 768px) {
  .page-products {
    padding: 15px;
  }

  /* تعديل شبكة المنتجات لعرضها بشكل مناسب على الشاشات الصغيرة */
  .page-products .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }

  .page-products .product-card img {
    height: 200px;
  }

  .page-products .section-title {
    font-size: 2rem;
  }
}