/* ===== قسم Books ===== */
.books-section {
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px 0;
  background: #fde0e0;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Banner */
.books-banner {
  text-align: center;
  margin-bottom: 50px;
}

.books-banner h2 {
  font-size: 38px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.books-banner p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.books-banner .shop-now {
  background: #ff4d6d; /* نفس لون أزرار Add-to-Cart */
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.books-banner .shop-now:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* شبكة المنتجات */
.books-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* بطاقة الكتاب */
.books-card {
  background: #fff; /* نفس لون بطاقات الأقسام الأخرى */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.books-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* صورة الكتاب */
.books-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.books-card:hover img {
  transform: scale(1.05);
}

/* معلومات الكتاب */
.books-card .product-info {
  padding: 15px;
}

.books-card .product-info h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.books-card .product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  min-height: 38px;
}

/* السعر */
.books-card .product-price {
  font-size: 16px;
  font-weight: bold;
  color: #ff4d6d; /* نفس لون Add-to-Cart */
  margin-bottom: 10px;
}

/* زر الإضافة إلى السلة */
.books-card .add-to-cart {
  margin-top: auto;
  padding: 12px 20px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.books-card .add-to-cart:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* ===== Responsive Tablet & Mobile - Books Section ===== */

/* تابلت كبير (768px وما أقل) */
@media (max-width: 768px) {
  .books-banner h2 {
    font-size: 32px; /* أكبر قليلًا ليتناسق مع الأقسام الأخرى */
  }
  .books-banner p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .books-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; /* زيادة المسافة لتناسب الشاشات المتوسطة */
  }
  .books-card img {
    height: 200px; /* ارتفاع أكبر متناسق مع المنتجات الأخرى */
  }
}

/* موبايل صغير (480px وما أقل) */
@media (max-width: 480px) {
  .books-banner h2 {
    font-size: 26px;
  }
  .books-banner p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .books-products {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .books-card img {
    height: 160px; /* متناسق مع باقي الكروت */
  }
}
