/* Book Card Specific Styling */
/* Aspect ratio 266x240 (approximately 1.11:1) */

.book-cover-wrapper {
    position: relative;
    width: 100%;
    padding-top: 90.23%; /* (240 / 266) * 100% for 266x240 ratio */
    background: #e6f5ed;
    border-radius: 12px;
    overflow: hidden;
}

.book-cover-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 75%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.book-card:hover .book-cover-image {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.book-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.book-price {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #28a745 !important;
}

@media (max-width: 576px) {
    .book-cover-wrapper {
        padding-top: 95%; /* Slightly taller ratio on mobile */
    }

    .book-cover-image {
        max-width: 80%;
        max-height: 85%;
    }
}
