body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.container-s {
  width: 1200px;
  max-width: 90vw;
  margin: auto;
  text-align: center;
  padding-top: 10px;
  transition: transform .5s;
  border: none;
  /*background-color: #eeeee9;*/
  padding: 10px;
  margin-top: 80px;
}

.icon-cart-s i {
  width: 30px;
}

.header-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: orange;
}

.header-s .tittle-s {
  font-size: 25px;
}

.header-s .icon-cart-s {
  position: relative;
  font-size: 25px;
}

.header-s .icon-cart-s span {
  display: inline;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  color: red;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -15px;
  font-size: 16px;
}

.listProduct-s .item img {
  width: 90%;
  filter: drop-shadow(0 50px 20px #0009);
}

.listProduct-s {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.listProduct-s .item {
  background-color: orange;
  padding: 20px;
  border-radius: 20px;
}

.listProduct-s .item h2 {
  font-weight: 500;
  font-size: large;
}

.listProduct-s .item .price {
  letter-spacing: 7px;
  font-size: small;
}

.listProduct-s .item button {
  background-color: #353432;
  color: #eee;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.cartTab {
  color: #eee;
  position: fixed;
  inset: 0 -400px 0 auto;
  display: grid;
  grid-template-rows: 70px 1fr 70px;
  z-index: 9999;
  /* Above other elements */
  overflow-y: auto;
  /* Distance from right edge */
  transition: .5s;
}

body.showcart .cartTab {
  width: 420px;
  max-height: 80vh;
  inset: 0 0 0 auto;
  margin-top: 8%;
  background-color: #353432;
  text-align: center;
  padding-right: 10px;
  padding-left: 10px;
  border: 2px solid orange;
  border-radius: 10px;
}

body.showcart .container {
  transform: translateX(-100px);
}

.cartTab h1 {
  padding: 20px;
  margin: 0;
  font-weight: 300;
  color: orange;
}

.cartTab .btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cartTab .btn button {
  background-color: #e8bc0e;
  border: none;
  border-radius: 10px;
  font-family: poppins;
  font-weight: 500;
  cursor: pointer;
  justify-content: space-between;
}

.cartTab .btn .close {
  background-color: #eee;
  color: orange;
}

.cartTab .listCart .item img {
  width: 100%;
  border-radius: 20px;
}

.cartTab .listCart .item {
  display: grid;
  grid-template-columns: 70px 150px 50px 1fr;
  gap: 10px;
  text-align: center;
  align-items: center;
}

.listCart .quantity span {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: transparent;
  color: orange;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.listCart .quantity span:nth-child(2) {
  background-color: transparent;
  color: #eee;
}

.listCart .item:nth-child(even) {
  background-color: #eee1;
}

.listCart {
  overflow: auto;
}

.listCart::-webkit-scrollbar {
  width: 0;
}

.shop-input-files {
  margin-top: 15px;
  border: 2px dashed #e8bc0e;
  padding: 0 auto;
  color: #e8bc0e;
}

.shop-input-files input {
  font-size: 15px;
  border-radius: 10px;
  margin: 10px;
  padding: 0 auto;
  color: #e8bc0e;
}

@media screen and (max-width: 992px) {
  .listProduct {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .listProduct {
    grid-template-columns: repeat(2, 1fr);
  }
}