@import "./products.css";
@import "./header.css";
@import "./newsletter.css";
@import "./cart.css";

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  color: #000;
}

#promo-bar {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  #promo-bar {
    display: none;
  }
}
