/* ============================================
   Trending / Bestseller / Back-in-Stock Styles
   ============================================ */

/* Sold count badge (green, for bestsellers) */
.sold-badge {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.sold-badge i {
    margin-right: 3px;
}

/* Back-in-stock badge (blue) */
.back-in-stock-badge {
    display: inline-block;
    background-color: #0c65af;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.back-in-stock-badge i {
    margin-right: 3px;
}

/* Shop label under product name */
.shop-label {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    margin-bottom: 6px;
}
