.preset-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--card);
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid var(--border-bright);
}

.preset-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.preset-chips {
    display: flex;
    gap: 6px;
    flex: 1;
    flex-wrap: wrap;
}

.preset-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    background: var(--card-hover);
    color: var(--text-muted);
    border: 1px solid transparent;
    font: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1.2;
}

.preset-chip:hover:not(.active) {
    background: var(--card-elev);
    color: var(--text);
}

.preset-chip.active {
    background: var(--blurple-soft);
    border-color: var(--blurple);
    color: #fff;
    box-shadow: 0 0 0 1px var(--blurple) inset;
}

.preset-chip .chip-name {
    font-size: 0.82rem;
    font-weight: 600;
}

.preset-chip .chip-size {
    font-size: 0.7rem;
    color: var(--text-soft);
    font-variant-numeric: tabular-nums;
}

.preset-chip.active .chip-size {
    color: var(--blurple);
}
