/**
 * Bigfoot Directories - Badge Styles
 * Version: 1.1.0
 */

/* Status Badges */
.bf-badge-sold {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bf-badge-pending {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}

.bf-badge-expired {
    background: #6b7280;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}

/* Verified Badge */
.bf-badge-verified {
    background: #3b82f6;
    color: white;
    padding: 4px 10px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bf-badge-verified span:first-child {
    font-size: 14px;
    line-height: 1;
}

/* Badge Container */
.bf-listing-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Hover effects */
.bf-badge-sold:hover,
.bf-badge-pending:hover,
.bf-badge-expired:hover,
.bf-badge-verified:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}
