﻿/* wwwroot/css/bestselling.css */
.bestselling-section {
    margin: 40px 0;
    direction: rtl;
}

    .bestselling-section h2 {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: bold;
    }

.bestselling-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

    .bestselling-slider::-webkit-scrollbar {
        height: 8px;
    }

    .bestselling-slider::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

.book-item {
    min-width: 200px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

    .book-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .book-item h3 {
        font-size: 16px;
        margin: 10px 0 5px;
    }

    .book-item p {
        font-size: 14px;
        color: #666;
    }

    .book-item .price {
        display: block;
        margin-top: 10px;
        font-weight: bold;
        color: #2c3e50;
    }
