/*
 * Ui engine — minimal CSS reset.
 *
 * Provides a consistent baseline for apps that don't load Tailwind's
 * Preflight. Apps using Tailwind can skip this file — Preflight covers
 * the same ground.
 *
 * Load before tokens and components:
 *
 *   stylesheet_link_tag "ui/reset", "ui/base", "ui/themes/customer", "ui/components"
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-paragraph);
  font-size: var(--font-size-16);
  line-height: var(--line-height-26);
  color: var(--color-text-neutral-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}
