.gc-feedback-card {
  scroll-margin-top: 72px;
}

.gc-feedback-card h2 {
  margin-top: 0;
}

.gc-feedback-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}

.gc-feedback-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  background: var(--gc-input-bg);
  color: var(--gc-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.gc-feedback-option strong {
  font-size: 15px;
}

.gc-feedback-option-label {
  color: var(--gc-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gc-feedback-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 7px;
  padding: 9px 14px;
  border: 1px solid var(--gc-primary);
  border-radius: var(--gc-radius);
  color: var(--gc-primary);
  font: 600 13px/1.25 var(--gc-font);
  text-align: center;
  text-decoration: none;
}

.gc-feedback-email:hover {
  background: var(--gc-primary-soft);
  text-decoration: none;
}

.gc-feedback-email:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--gc-primary-soft);
}

.gc-feedback-field-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  color: var(--gc-text-dim);
  font-size: 11px;
  line-height: 1.45;
}

.gc-feedback-field-meta span:first-child {
  max-width: 560px;
}

.gc-feedback-privacy {
  color: var(--gc-text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.gc-feedback-optional {
  color: var(--gc-text-dim);
  font-size: 12px;
  font-weight: 400;
}

.gc-feedback-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gc-feedback-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gc-feedback-actions .gc-submit-btn,
.gc-feedback-actions .gc-feedback-email {
  min-width: 160px;
  margin-top: 0;
}

.gc-feedback-email--secondary {
  min-height: 44px;
}

.gc-feedback-actions .gc-submit-btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.gc-feedback-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--gc-text-muted);
  font-size: 12px;
}

.gc-feedback-status[data-state="error"] {
  color: var(--gc-danger, #d1242f);
}

.gc-feedback-status[data-state="success"] {
  color: var(--gc-success, #1a7f37);
  font-weight: 600;
}

@media (max-width: 520px) {
  .gc-feedback-options {
    grid-template-columns: 1fr;
  }

  .gc-feedback-field-meta {
    flex-direction: column;
    gap: 4px;
  }

  .gc-feedback-actions > * {
    width: 100%;
  }
}
