.more-books-section {
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
}

/* Grille principale forçant les 8 éléments en ligne sur grand écran */
.books-showcase-row-eight {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.book-card-item-mini-inline {
    text-align: center;
    background: #fff;
    position: relative;
    padding: 5px;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 310px;
}
.book-badge-grid-mini {
    display: block;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 4px;
    margin-bottom: 8px;
    text-align: center;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.badge-gray { background-color: #92a4bd; }
.badge-blue { background-color: #0044ff; }
.badge-burgundy { background-color: #79102c; }
.badge-black { background-color: #1a1a1a; }

.book-cover-wrap-mini-inline { 
    height: 130px; 
    background: #eee; 
    margin-bottom: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.06); 
    overflow: hidden; 
    border-radius: 2px; 
}
.book-cover-wrap-mini-inline img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.book-item-title-mini-inline {
    color: #333; font-size: 11px; font-weight: bold; text-transform: uppercase; line-height: 1.3; margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 28px;
}
.book-item-price-mini { 
    color: #e2355e; 
    font-size: 11px; 
    font-weight: bold; 
    margin: 2px 0; 
}
.book-details-link-wrap-mini { 
    margin: 4px 0; 
}
.book-details-link-wrap-mini .link-book-details { 
    font-size: 10px; 
}

.btn-preorder-mini-inline { 
    background: #f0ad4e; 
    color: #fff; 
    border: none; 
    padding: 5px 4px; 
    width: 100%; 
    font-size: 11px; 
    font-weight: bold; 
    border-radius: 3px; 
    cursor: pointer; 
    transition: background 0.3s; 
}
.btn-preorder-mini-inline:hover { 
    background: #d69e30; 
}
.bottom-orange-divider { 
    border: 0; 
    height: 1px; 
    background-color: #f0ad4e; 
    margin-top: 30px; 
}

.books-scroll-wrapper { 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
}
.books-scroll-wrapper::-webkit-scrollbar { 
    display: none; 
}

/* MASQUAGE STRICT DES FLÈCHES DE NAVIGATION SUR PC / ORDINATEUR */
.nav-arrow-mobile {
    display: none !important; /* Totalement invisible sur grand écran */
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(240, 173, 78, 0.9);
    color: white;
    border: none;
    width: 36px; 
    height: 36px; 
    border-radius: 50%;
    font-size: 16px; 
    z-index: 15; 
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* APPARITION DES FLÈCHES ET ADAPTATION UNIQUEMENT SUR FORMAT MOBILE / TABLETTE */
@media (max-width: 1100px) {
    .books-showcase-row-eight { 
        display: flex; 
        padding-bottom: 15px; 
        gap: 15px; 
    }
    .book-card-item-mini-inline { 
        flex: 0 0 140px; 
        scroll-snap-align: start; 
    }
    .nav-arrow-mobile {
        display: flex !important; /* Devient actif et s'affiche uniquement sous 1100px */
        align-items: center;
        justify-content: center;
    }
    .arrow-left-mob { left: -5px; }
    .arrow-right-mob { right: -5px; }
}
