.books-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.book-card {
  flex: 1 1 18%; /* allows 5 per row on large screens */
  max-width: 200px;
  text-align: center;
}

.book-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.book-card img:hover {
  transform: scale(1.03);
}

.book-card-title {
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}	  
	  
.book-detail-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.book-detail-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.book-detail-image-column {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-detail-img-responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.book-detail-text-column {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.book-detail-title-orange {
  font-size: 26px;
  color: #FF8350;
  font-weight: bold;
  margin-bottom: 20px;
}

.book-detail-button-group {
  margin: 10px 0;
}

.book-detail-button {
  background-color: #FF8350;
  color: white;
  padding: 10px 16px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s ease;
}

.book-detail-button:hover {
  background-color: #e76a2e;
}

.book-detail-note {
  font-size: 12px;
  margin-top: 12px;
  color: #555;
}	  
	  
.book-detail-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.book-detail-card {
  flex: 1 1 30%;
  max-width: 300px;
  text-align: center;
}

.book-detail-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.book-detail-card img:hover {
  transform: scale(1.05);
}

.book-detail-card p {
  margin-top: 10px;
}	  
