/* ── Feedback ─────────────────────────────────────── */
.feedback-link-card {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.84) 100%);
  box-shadow: var(--shadow-sm);
}
.feedback-link-card__title {
  font-weight: 700;
  margin-bottom: 4px;
}
.feedback-link-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.feedback-link-card__btn,
.feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: var(--surface-soft);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 650;
  cursor: pointer;
}
.feedback-link-card__btn:hover,
.feedback-btn:hover {
  border-color: var(--surface-hover-border);
  background: var(--surface-hover-bg);
  color: var(--text);
}

.feedback-panel {
  max-width: 680px;
}
.feedback-panel__copy {
  margin: 8px 0 12px;
  color: var(--text-secondary);
}
.feedback-panel__qrcode-wrap {
  width: 220px;
  max-width: 100%;
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: #fff;
}
.feedback-panel__qrcode {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.feedback-panel__wechat,
.feedback-panel__tip {
  margin: 10px 0 0;
}
.feedback-panel__tip {
  color: var(--muted);
  font-size: 0.9rem;
}
.feedback-panel__actions {
  margin-top: 12px;
}
.feedback-template {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--surface-border);
  background: color-mix(in srgb, var(--bg) 80%, #fff 20%);
}
.feedback-template__title {
  font-weight: 650;
  margin-bottom: 8px;
}
.feedback-template__text {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
