/* Settings Layout */
.settings-layout {
    max-width: 720px;
}

.settings-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.settings-section__title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.settings-section__desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-lg);
}

.settings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.settings-row:last-child {
    border-bottom: none;
}

.settings-row__label {
    font-size: var(--text-sm);
    font-weight: 500;
}

.settings-row__desc {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* Toggle Switch */
.toggle {
    width: 44px;
    height: 24px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: background var(--transition-fast);
    border: 1px solid var(--border-default);
}

.toggle--active {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
}

.toggle__knob {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: var(--radius-full);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform var(--transition-fast);
}

.toggle--active .toggle__knob {
    transform: translateX(20px);
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
}
