/* Custom styles for books page */

/* Book cover styling - suitable for vertical book covers */
.shop .shop__single-thumb img {
  width: 100% !important;
  height: 350px !important;
  object-fit: cover !important;
  border-radius: 8px;
}

/* Adjust book card dimensions for book covers */
.shop .shop__single-thumb {
  padding: 20px !important;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the download button more prominent */
.shop .shop__single .btn--primary {
  padding: 12px 30px !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Adjust book title styling */
.shop .shop__single-content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shop .shop__single-thumb img {
    height: 280px !important;
  }

  .shop .shop__single-thumb {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .shop .shop__single-thumb img {
    height: 250px !important;
  }

  .shop .shop__single-thumb {
    min-height: 290px;
  }
}
