/* Base layout, typography and transitions */
html, body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  color: rgb(40,40,40);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 400;
  margin: 0;
}

section, header, footer, main {
  display: block;
  position: static;
  width: 100%;
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: auto;
  visibility: visible;
}

* {
  box-sizing: border-box;
}

.btn, .link, .card, .menu-toggle, .product-image {
  transition: transform .2s ease, opacity .2s ease;
}
