.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.button {
  background: var(--sage);
  color: #fff;
}

.button:hover {
  background: #d78a57;
}

.button-secondary {
  background: #d78a57;
  color: #fff;
}

.button-secondary:hover {
  background: var(--sage);
}

.button-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
