body {
  width: 100%;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #555454;
  background-color: #fffdfd;
  font-family: "Libre Franklin", sans-serif;
}

h2 {
  text-transform: uppercase;
}

/* header/nav bar */
header {
  width: 100%;
  background-color: #202020;
  padding: 20px 50px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__svg--button {
  cursor: pointer;
  fill: #fffdfd;
}
.header__svg--button:hover {
  fill: #bcbcbd;
}

#header__img {
  width: 150px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav__sidebarMenu {
  background-color: #fafafa;
  padding: 25px;
  box-sizing: border-box;
  height: 100%;
  position: fixed;
  top: 119px;
  font-size: 16px;
  overflow: none;
  left: -100%;
  box-shadow: 7px 20px 14px -15px rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  justify-content: space-between;
  align-items: center;
  overflow-y: auto;
}
.nav__sidebarMenu.show-nav {
  left: 0;
}
.nav__sidebarMenu .sidebarMenu-icons {
  display: flex;
  flex-direction: column;
}
.nav__sidebarMenu a {
  margin: 8px;
  text-decoration: none;
  color: #333;
  fill: #333;
  margin: 10px 0px;
}
.nav__sidebarMenu a:hover {
  color: #000000;
  fill: #000000;
  background-color: #fffdfd;
}

.cart__counter {
  position: absolute;
  color: #fffdfd;
  background-color: #0257a7;
  top: 38px;
  right: 41px;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  text-align: center;
  align-items: center;
}

/* Banner */
.banner {
  background-image: url("../img/nike-banner.png");
  padding: 40px 0;
}
.banner h2, .banner #banner__description {
  text-align: center;
  color: #fffdfd;
  font-size: 1.6em;
  font-family: "Libre Franklin", sans-serif;
  letter-spacing: 2px;
}
.banner h2 {
  text-transform: uppercase;
  font-weight: bold;
}

/* Products */
.article-title {
  padding-left: 76px;
  font-family: "Roboto", sans-serif;
  color: #202020;
}

.clothes, .sneakers {
  padding: 20px;
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.clothes .clothes__article--button, .sneakers .clothes__article--button {
  margin: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clothes .clothes__img, .sneakers .clothes__img {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
}
.clothes .clothes__title, .sneakers .clothes__title {
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
  margin: 0;
}
.clothes .clothes__price, .sneakers .clothes__price {
  font-weight: 500;
  font-size: 1.2em;
  color: #555454;
  letter-spacing: 0;
}
.clothes .clothes__add-cart--button, .sneakers .clothes__add-cart--button {
  font-size: 1.2em;
  padding: 5px;
  margin: 0;
  color: #202020;
  cursor: pointer;
  text-align: center;
}
.clothes .clothes__add-cart--button:hover, .sneakers .clothes__add-cart--button:hover {
  background-color: #202020;
  fill: #fffdfd;
  color: #fffdfd;
  transition: 0.09s ease;
}

/* Cart */
.cart {
  background-color: #fafafa;
  padding: 25px;
  box-sizing: border-box;
  height: 100%;
  position: fixed;
  top: 119px;
  font-size: 16px;
  overflow: none;
  right: -100%;
  box-shadow: -7px 20px 14px -15px rgb(0, 0, 0);
  width: 360px;
  transition: all 0.25s ease;
  overflow-y: auto;
  max-height: 90vh;
}
.cart.show {
  right: 0;
}
.cart i:hover {
  fill: #bcbcbd;
}
.cart .cart__product-container {
  width: 100%;
}
.cart h2 {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 25px 0;
  box-sizing: border-box;
}
.cart div {
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart img {
  width: 60px;
}
.cart div p:nth-child(2) {
  font-weight: 700;
}
.cart div i {
  width: 20px;
  cursor: pointer;
}
.cart .delete-icon {
  width: 100%;
}
.cart .cart__total {
  justify-content: center;
}
.cart p {
  font-size: 13px;
  margin: 0 5px;
}
.cart .cart__items-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer */
footer {
  background-color: #ececec;
}

.footer__top-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.footer__top-container .footer__newsletter fieldset {
  border: 0;
  display: flex;
  flex-direction: column;
}
.footer__top-container .footer__newsletter fieldset input {
  margin: 3px;
}
.footer__top-container .footer__newsletter fieldset #submit-button {
  font-size: 1.2em;
  padding: 5px;
  margin: 0;
  color: #202020;
  cursor: pointer;
  text-align: center;
  margin: 4px auto;
  font-size: 12px;
}
.footer__top-container .footer__newsletter fieldset #submit-button:hover {
  background-color: #202020;
  fill: #fffdfd;
  color: #fffdfd;
  transition: 0.09s ease;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__privacy {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer__privacy--text-item {
  margin: 15px;
}

/* Media */
@media (max-width: 768px) {
  header {
    padding: 15px;
  }
  header #header__img {
    width: 70px;
  }
  .clothes {
    grid-template-columns: repeat(auto-fit) minmax(200px, 1fr);
  }
  .clothes .clothes__img {
    width: 150px;
  }
  .cart {
    width: 400px;
    top: 80px;
  }
  html {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .banner {
    padding: 30px 0;
  }
  .banner h2 {
    font-size: 16px;
  }
  .banner #banner-letters {
    font-size: 18px;
  }
  .clothes {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .clothes .clothes__img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
  }
  .clothes .clothes__title, .clothes .clothes__price {
    padding: 0 10px;
    margin: 0;
  }
  .cart {
    width: 100%;
    box-shadow: none;
  }
  .cart #cart__title {
    padding: 15px 0;
  }
  .cart .cart__product-container {
    flex-direction: column;
    align-items: center;
  }
  .cart .cart__img {
    width: 100px;
  }
  .footer__privacy {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=styles.css.map */