.wh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--wh-radius-pill, 980px);
  font-family: var(--wh-ff);
  font-size: var(--wh-text-base);
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.wh-btn--primary {
  background: var(--wh-brand, #6800cd);
  color: #fff;
}
.wh-btn--primary:hover { opacity: 0.92; text-decoration: none; color: #fff; }
.wh-btn--secondary {
  background: var(--wh-bg, #f2f2f7);
  color: var(--wh-label, #1c1c1e);
}
.wh-btn--lg { min-height: 48px; padding: 14px 28px; font-size: var(--wh-text-lg); }
.wh-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.wh-btn:focus-visible {
  outline: 2px solid var(--wh-brand, #6800cd);
  outline-offset: 2px;
}
