/* Quantity Badge Styles */
.quantity-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-badge i {
    font-size: 1rem;
}

.quantity-badge strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.quantity-badge .sold-count {
    margin-left: 0.5rem;
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Status badge for sold_out */
.status-badge.sold_out {
    background-color: #6b7280;
    color: white;
}
