body {

  font-family: Arial, sans-serif;
}

.home-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}


/* === КЛЮЧЕВОЕ === */
.swiper-slide {
  width: 120px; /* ← как на твоём скрине */
}

.book-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.book-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.book-title {
  font-size: 14px;
  font-weight: bold;
}

/* стрелки поверх */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
}