/* ============================================================
   RESET — Goose Creek Auto & Radiator
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  min-height: 44px;
}

ul {
  list-style: none;
}

input, textarea {
  font: inherit;
}

input[type=submit], a.btn, .btn {
  min-height: 44px;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}