.shop-books-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}

.book-card {
  background: #fffbea;
  border: 1.5px solid #ffe082;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(255, 214, 107, 0.09);
  width: calc((100% - 64px) / 3); /* 3 карточки в ряд, 2 gap по 32px */
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 18px 16px;
  margin-bottom: 18px;
  transition: box-shadow 0.22s, transform 0.19s, border-color 0.18s;
}

.book-card:hover {
  box-shadow: 0 8px 32px rgba(255, 214, 107, 0.13);
  border-color: #f7b801;
  transform: translateY(-4px) scale(1.025);
}

.book-card-cover {
  width: 110px;
  height: 156px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px #ffe08233;
  background: #eee;
  display: block;
}

.book-card-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #2674c7;
  margin: 10px 0 3px 0;
  text-align: center;
}

.book-card-author {
  color: #888;
  font-size: 0.99em;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 400;
}

.book-card-desc {
  font-size: 1.01em;
  color: #444;
  text-align: center;
  margin-bottom: 18px;
  min-height: 54px;
  line-height: 1.45;
  flex-grow: 1;
}

.book-card-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.shop-btn {
  background: #2674c7;
  color: #fff; /* !!! ключевой фикс !!! */
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s;
  text-decoration: none;
  box-shadow: 0 1px 6px #2674c733;
  display: inline-block;
}

.shop-btn:hover, .shop-btn:focus {
  background: #1256a3;
  color: #fff;
  text-decoration: none;
}

/* 2 колонки на планшете */
@media (max-width: 1100px) {
  .book-card { width: calc((100% - 32px) / 2); }
  .shop-books-list { gap: 18px; }
}
/* 1 колонка на мобиле */
@media (max-width: 700px) {
  .book-card { width: 100%; min-width: 0; }
  .shop-books-list { gap: 10px; }
}

.book-card .shop-btn {
  color: #fff !important;
}