.book-detail {
    background: #f8f2f4;
    color: #332332;
}

.book-detail > .container,
.book-hero__inner {
    box-sizing: border-box;
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
    padding-inline: 0;
}

.book-hero {
    background: #efe1e7;
    border-bottom: 1px solid #e3cbd5;
}

.book-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: 72vh;
    padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.book-hero__copy {
    min-width: 0;
}

.book-kicker,
.book-section__label {
    margin: 0 0 0.8rem;
    color: #4d9c34;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.book-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #5b3156;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: 0.95;
}

.book-subtitle {
    max-width: 560px;
    margin: 1rem 0 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    color: #68405f;
}

.book-lead {
    max-width: 620px;
    margin: 1.5rem 0 0;
    font-size: 1.15rem;
    line-height: 1.75;
}

.book-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.book-btn--primary {
    background: #4d9c34;
    color: #fff;
}

.book-btn--secondary {
    border: 2px solid #6c3d63;
    color: #5b3156;
}

.book-btn--pending {
    background: #6c3d63;
    color: #fff;
}

.book-shop-note {
    max-width: 560px;
    margin: 1rem 0 0;
    color: #6b5665;
    line-height: 1.6;
}

.book-hero__cover {
    margin: 0;
    justify-self: center;
}

.book-hero__cover img {
    display: block;
    width: min(100%, 330px);
    height: auto;
    border-radius: 4px;
    box-shadow: 0 28px 56px rgba(48, 24, 46, 0.28);
}

.book-hero__cover figcaption {
    max-width: 330px;
    margin-top: 0.9rem;
    color: #6b5665;
    font-weight: 700;
    text-align: center;
}

.book-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.book-section h2,
.book-cta h2 {
    margin: 0;
    color: #5b3156;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.book-text p {
    margin: 0 0 1rem;
    font-size: 1.08rem;
    line-height: 1.75;
}

.book-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.book-fact {
    min-height: 126px;
    padding: 1.25rem;
    border: 1px solid #e3cbd5;
    border-radius: 8px;
    background: #fff;
}

.book-fact span,
.book-fact small {
    display: block;
    color: #6b5665;
}

.book-fact strong {
    display: block;
    margin: 0.4rem 0;
    color: #332332;
    font-size: 1.35rem;
}

.book-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.book-list li {
    padding: 1rem 1.1rem;
    border-left: 4px solid #4d9c34;
    border-radius: 6px;
    background: #fff;
    line-height: 1.55;
}

.book-cta {
    margin-top: 1rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 8px;
    background: #332332;
    color: #fff;
    text-align: center;
}

.book-cta h2 {
    color: #fff;
}

.book-cta p {
    max-width: 680px;
    margin: 1rem auto 1.5rem;
    line-height: 1.7;
}

.book-disclaimer {
    padding: 1.4rem 0 clamp(2.5rem, 6vw, 4rem);
    color: #6b5665;
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 760px) {
    .book-hero__inner,
    .book-section,
    .book-facts {
        grid-template-columns: 1fr;
    }

    .book-hero__inner {
        min-height: auto;
    }

    .book-hero__cover {
        order: -1;
        width: 100%;
    }

    .book-hero__cover img {
        width: min(100%, 300px);
        margin-inline: auto;
    }

    .book-hero h1 {
        font-size: clamp(2.05rem, 10vw, 2.85rem);
        overflow-wrap: break-word;
    }

    .book-subtitle,
    .book-lead,
    .book-section h2,
    .book-cta h2,
    .book-text,
    .book-list {
        min-width: 0;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .book-subtitle {
        font-size: 1rem;
        line-height: 1.45;
    }

    .book-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .book-section h2,
    .book-cta h2 {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
        line-height: 1.12;
    }

    .book-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
