/* 3D Coverflow Book Carousel CSS Styles */
.book-carousel-wrapper-495fbfa5 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-carousel-container-495fbfa5 {
    width: 100%;
    position: relative;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-carousel-track-495fbfa5 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.book-item-495fbfa5 {
    position: absolute;
    aspect-ratio: 2 / 3;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s ease;
    transform-style: preserve-3d;
    user-select: none;
}

.book-3d-wrapper-495fbfa5 {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-radius: 4px;
    transition: transform 0.4s ease;
}

/* Hardcover side spine/thickness simulation */
.book-side-spine-495fbfa5 {
    position: absolute;
    width: 16px;
    height: 100%;
    left: -16px;
    top: 0;
    background-color: var(--spine-color, #4a3319);
    background-image: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.4) 100%);
    transform-origin: right center;
    transform: rotateY(-90deg);
    border-radius: 3px 0 0 3px;
}

.book-cover-495fbfa5 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 4px 4px 0;
    background: #eae6df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-495fbfa5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Realistic sheen reflection on book */
.book-overlay-sheen-495fbfa5 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 25%, transparent 26%, transparent 100%);
    pointer-events: none;
}

/* Information Box below */
.book-info-495fbfa5 {
    margin-top: 35px;
    text-align: center;
    max-width: 400px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.book-info-495fbfa5.active-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.book-info-title-495fbfa5 {
    font-size: 24px;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.book-info-author-495fbfa5 {
    font-size: 15px;
    color: #666;
    margin: 0 0 16px 0;
    font-style: italic;
}

.book-btn-495fbfa5 {
    display: inline-block;
    padding: 10px 24px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-btn-495fbfa5:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.05);
}

/* Nav Controls styling */
.book-nav-controls-495fbfa5 {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.book-nav-btn-495fbfa5 {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.book-nav-btn-495fbfa5:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.book-nav-btn-495fbfa5 i {
    font-size: 16px;
}
