.category-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: -10px 0 24px;
}

.category-pill {
    border: 1px solid var(--border);
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.category-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.category-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 800;
}

.address-box,
.address-form {
    display: grid;
    gap: 10px;
}

.address-form {
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    margin-bottom: 16px;
}

.badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.badge.ok { background: #dcfce7; color: #166534; }
.badge.warn { background: #fef3c7; color: #92400e; }
.badge.danger { background: #fee2e2; color: #991b1b; }
.badge.info { background: #dbeafe; color: #1e40af; }

@media (max-width: 900px) {
    .address-form {
        grid-template-columns: 1fr;
    }
}
