.button,
a.button {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;

  background: var(--accent, #e57a2f);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition:
    background-color 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 0.12s ease-out;
}

/* tekst binnen de knop altijd wit, geen extra box-styling */
.button a {
  color: #fff !important;
  text-decoration: none;
  background: none;
  padding: 0;
  border: 0;
  box-shadow: none;
}

/* hover / focus voor de knop */
.button:hover,
a.button:hover,
.button:focus,
a.button:focus,
.button:focus-within {
  background: var(--accent-strong, #d5681f);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

/* active / mousedown */
.button:active,
a.button:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* extra marge als het een paragraaf is */
p.button {
  margin-top: 0.25rem;
}
