.book-meta-display {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.book-header-section {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    align-items: flex-start;
}

.book-cover-image {
    flex-shrink: 0;
}

.book-cover-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.book-cover-img:hover {
    transform: translateY(-5px);
}

.book-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-author-name h3 {
    font-size: 2em;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
    font-weight: 300;
}

.book-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.status-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.status-want-to-read {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.status-currently-reading {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.status-read {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.book-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.rating-stars {
    font-size: 1.4em;
    line-height: 1;
}

.rating-number {
    color: #666;
    font-weight: 600;
    font-size: 1em;
}

.favorite-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.book-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.book-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-weight: 700;
    color: #555;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #2c3e50;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .book-meta-display {
        padding: 25px;
    }

    .book-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .book-cover-img {
        width: 180px;
    }

    .book-author-name h3 {
        font-size: 1.5em;
    }

    .book-badges {
        justify-content: center;
    }

    .book-details-grid {
        grid-template-columns: 1fr;
    }
}
