/* Kitap Detay Sayfası Stilleri */

:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --bg-color: #fdfbf7;
    --bg-light: #f5f1e8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

.book-detail-section {
    background: var(--white);
}

.book-detail-cover {
    text-align: center;
    position: sticky;
    top: 100px;
}

.book-detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    object-fit: contain;
    object-position: center;
    background: var(--bg-light);
    padding: 10px;
}

.book-detail-info {
    padding: 0 1rem;
}

.book-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.book-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.book-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.book-meta-item i {
    color: var(--secondary-color);
}

.book-detail-description {
    margin-top: 2rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle i {
    color: var(--secondary-color);
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.book-detail-actions {
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.related-books-section {
    background: var(--bg-light);
}

.book-preview-card a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.book-preview-card a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .book-detail-title {
        font-size: 2rem;
    }
    
    .book-detail-cover {
        position: static;
        margin-bottom: 2rem;
    }
    
    .book-detail-image {
        max-width: 100%;
    }
    
    .description-content {
        font-size: 1rem;
        padding: 1rem;
    }
}

