/* Shared interaction styling. Text links stay text-only; no generated icons. */
a, a:hover, a:focus, a:active,
button, button:hover, button:focus, button:active,
[role="button"], :is(a, button, [role="button"]) [class*="underline"] {
  text-decoration: none !important;
}

:is(a, button, [role="button"]):focus-visible {
  outline: 2px solid #5378f6 !important;
  outline-offset: 4px !important;
}

.public-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  border-radius: .65rem;
  font-weight: 600;
  cursor: pointer;
}
@media (hover: hover) {
  .public-button:hover { background-color: color-mix(in srgb, currentColor 8%, transparent); }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  :is(.public-button, [data-ui="button"], .action-primary, .action-ghost, [data-testid="pricing-plan-cta"], .buyer-primary, .tn-auth) {
    transition: translate .18s ease, box-shadow .18s ease, background-color .18s ease;
  }
  :is(.public-button, [data-ui="button"], .action-primary, .action-ghost, [data-testid="pricing-plan-cta"], .buyer-primary, .tn-auth):not(:disabled):not([aria-disabled="true"]):hover {
    translate: 0 -2px;
    box-shadow: 0 7px 18px rgb(15 35 75 / 15%);
  }
  :is(.public-button, [data-ui="button"], .action-primary, .action-ghost, [data-testid="pricing-plan-cta"], .buyer-primary, .tn-auth):active { translate: 0 0; }
}

/* Navigation uses its own descriptive icons; buttons need no generic link mark. */
.public-navigation a::after,
.hero-actions a::after,
.buyer-actions a::after,
a.public-button::after { content:none !important; }
