.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: var(--weight-bold);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge-primary {
    background: var(--primary-light);
    color: #7c2d12;
}

.badge-secondary {
    background: var(--secondary-light);
    color: #713f12;
}

.badge-success {
    background: #dcfce7;
    color: #14532d;
}

.badge-warning {
    background: #fef3c7;
    color: #78350f;
}

.badge-danger {
    background: #fee2e2;
    color: #7f1d1d;
}

.badge-info {
    background: #dbeafe;
    color: #1e3a8a;
}