/* shared/base.css — global resets and truly universal rules only.
 *
 * Responsibility: CSS resets, base font stack, and any rule that must
 * apply identically across every theme and every restaurant.
 *
 * Must NOT contain: brand colors, theme-specific component styles, or
 * anything specific to a single theme — those belong in that theme's
 * own theme.css (using its own CSS custom properties for colors).
 */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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