/* Bestsellers sidebar -- thumbnail + name + price instead of plain numbered text */
.bestsellers-list .list-group-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
}
.bestsellers-rank {
    flex: 0 0 auto;
    width: 1.4em;
    font-weight: 700;
    color: #6c757d;
    text-align: center;
}
.bestsellers-thumb {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bestsellers-thumb img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.bestsellers-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.bestsellers-name {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bestsellers-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #036811;
}
