/* ── Settings ── */
.settings-body {
  max-width: 680px;
}

.settings-h {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}

.s-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.s-section-title {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--light);
}

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

.s-row-label {
  font-size: 13px;
  font-weight: 500;
}

.s-row-desc {
  font-size: 12px;
  color: var(--faint);
  margin-top: 1px;
}

.s-row-label.danger {
  color: var(--red);
}

.s-input {
  width: 100%;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  font-family: var(--font);
  box-sizing: border-box;
}

.s-input:focus {
  border-color: var(--olive);
}

/* ── Establishments ── */
.etab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--light);
}

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

.etab-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.etab-icon.active {
  background: var(--olive-bg);
  border-color: var(--olive-border);
}

.etab-name {
  font-size: 13px;
  font-weight: 600;
}

.etab-meta {
  font-size: 12px;
  color: var(--faint);
}

.etab-active-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--olive);
}

.add-etab-form {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--off);
  display: none;
}

.relance-select {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  outline: none;
}

.relance-select:focus {
  border-color: var(--olive);
}

/* ── Pricing page (in app) ── */
.pricing-body {
  max-width: 900px;
}

.pricing-h {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 40px;
}
