body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    background: url('/images/background.jpg') center/cover no-repeat fixed;
    background-color: #27130E;
    color: #f8f1e4;
    overflow-x: hidden;
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 19, 14, 0.7);
    pointer-events: none;
    z-index: 1;
}

.book-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.book-cover {
    max-width: 400px;
    width: 90%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    margin-bottom: 30px;
}

.book-title {
    font-size: 2.5rem;
    text-align: center;
    color: #C3A16D;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.book-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #C3A16D;
    opacity: 0.8;
}

.book-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.book-button {
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(195, 161, 109, 0.2);
    border: 2px solid #C3A16D;
    color: #C3A16D;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.book-button:hover {
    background-color: rgba(195, 161, 109, 0.3);
}

.order-button {
    grid-column: 1 / -1;
    background-color: #C3A16D;
    color: #27130E;
    padding: 14px 28px;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    box-sizing: border-box;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.order-button:hover {
    background-color: #C3A16D;
    color: #27130E;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.order-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.order-button:hover::after {
    transform: translateX(100%);
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.review {
    background-color: rgba(195, 161, 109, 0.1);
    border: 1px solid rgba(195, 161, 109, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}

.stars {
    color: #C3A16D;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quote {
    font-style: italic;
    margin-bottom: 10px;
}

.author {
    font-weight: bold;
    color: #C3A16D;
}

@media (max-width: 768px) {
    .book-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
    }

    .book-button:not(.order-button) {
        grid-column: 1;
    }

    .order-button {
        margin-top: 30px;
        width: 100%;
    }

    .reviews {
        grid-template-columns: 1fr; /* keep your existing review responsiveness */
    }
}
