.slider-section {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 2px solid #000303;
  display: inline-block;
  padding-bottom: 8px;
}

.book-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* Kartların yüksekliği eşitlensin */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.book-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 calc(20% - 24px); /* Esnek genişlik */
  min-width: 180px;
  max-width: 220px; /* Gerekirse sınır koy */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.book-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(9, 161, 231, 0.808);
}

.book-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.book-info {
  margin-top: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.book-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.book-author {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.rating {
  color: #2d6285;
  font-size: 16px;
  margin-bottom: 6px;
}

.price {
  font-size: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.new-price {
  color: #084e7c;
  font-weight: bold;
  margin-bottom: 7px;
}

/* Öne çıkan kitap için özel stil */
.featured {
  border: 2px solid #0e9ec2;
  box-shadow: 0 6px 18px rgba(5, 98, 126, 0.39);
}

.book-info .add-to-cart {
  margin-top: auto;
  /* Butonu en alta iter */
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
  .book-card {
    width: calc(25% - 24px);
    /* 4 kart */
  }
}

@media (max-width: 992px) {
  .book-card {
    width: calc(33.33% - 24px);
    /* 3 kart */
  }
}

@media (max-width: 797px) {
  .book-card {

    width: calc(50% - 24px);
    /* 2 kart */
  }

  .slider-section {
    margin-top: 135px;
  }
}

@media (max-width: 783px) {
  .book-card {

    width: calc(50% - 24px);
    /* 2 kart */
  }

  .slider-section {
    margin-top: 150px;
  }
}

@media (max-width: 480px) {
  .book-card {
    width: 100%;
    /* 1 kart */
  }

  .slider-section {
    margin-top: 180px;
  }
}


.add-to-cart {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background-color: #c3360b;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.add-to-cart:hover {
  background-color: #0e9ec2;
  color: rgba(0, 0, 0, 0.531);
}