/* New Launches Section */
.new-launches {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--cream), #fff);
    text-align: center;
}

.section-header h2 {
    font-size: 50px;
    font-weight: 800;
    color: #132C6E; /* Specified in prompt */
    line-height: 1.2;
}

.section-header h2 .highlight {
    color: #a855f7; /* Just a placeholder color for the '1' in New Launches */
    position: relative;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    margin: 15px 0 30px;
}

.view-all-btn {
    padding: 10px 25px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: transparent;
    font-family: var(--font-inter);
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50px;
}

.section-header {
    position: relative;
}

.books-carousel {
    position: relative;
    margin-top: 60px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.book-shelf {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: #fcd34d;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.books-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.book-item {
    background: white;
    border-radius: 5px 10px 10px 5px;
    box-shadow: -2px 5px 15px rgba(0,0,0,0.15);
    border-left: 5px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-item.small { width: 80px; height: 120px; }
.book-item.medium { width: 100px; height: 160px; }
.book-item.large { width: 130px; height: 200px; }
.book-item.xlarge { width: 180px; height: 260px; transform: scale(1.1); z-index: 5; box-shadow: -5px 10px 25px rgba(0,0,0,0.2); }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: white;
    border: none;
    font-size: 21px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: var(--orange);
}

