.font-poppins {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

.font-inter {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-primary {
  background-color: #f4a938;
  color: #1e293b;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease, box-shadow 150ms ease,
    transform 100ms ease;
}

.btn-primary:hover {
  background-color: #ca8a04;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.12);
}

.btn-secondary {
  background-color: transparent;
  color: #1e293b;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
