/* ══════════════════════════════════════
   Settings Page
══════════════════════════════════════ */

.st-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 20px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.st-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.st-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-sans);
  transition: background 0.12s;
}
.st-row:hover { background: var(--surface2); }

.st-row-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-row-text { flex: 1; min-width: 0; }

.st-row-label {
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--ink);
}

.st-row-sub {
  font-size: var(--fs-12);
  color: var(--ink-mid);
  margin-top: 1px;
}

.st-row-arrow {
  font-size: var(--fs-18);
  color: var(--ink-mid);
  flex-shrink: 0;
}

.st-option-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-sans);
  transition: background 0.12s;
}
.st-option-row:hover { background: var(--surface2); }

.st-check {
  font-size: var(--fs-16);
  color: var(--accent);
  flex-shrink: 0;
}

.st-about {
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.st-about svg { flex-shrink: 0; }

.st-about-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.st-coming-soon {
  padding: 48px 16px;
  text-align: center;
  font-size: var(--fs-14);
  color: var(--ink-mid);
}
.pd-icon-btn-danger:hover { border-color: var(--danger); color: var(--danger); }
