#products {
  position: relative;
  margin-top: 70px;
  text-align: center;
  margin-bottom: 70px;
}

#products a {
  color: rgb(36, 36, 36);
}

#title-products {
  margin-bottom: 0;
  font-family: bebasNeue;
  font-size: 40px;
}

#subtitle-products {
  font-family: montserrat;
  margin-top: 0;
  width: max-content;
  margin: 5px auto 50px auto;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 3px solid #01bf63;
}

#products-itens {
  width: 85%;
  margin: auto;
  display: flex;
  gap: 80px;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#products-itens a {
  display: block;
  width: 180px;
}

.prod-item {
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  width: 180px;
  height: 402px;
  position: relative;
}

.prod-item h2 {
  font-family: bebasLight;
  height: 60px;
}

.prod-item p {
  font-family: montserrat;
  height: 40px;
}

.prod-item img {
  width: 100%;
  transition: 250ms ease-in-out;
  height: 160px;
  object-fit: cover;
}

.prod-item:hover img {
  transform: scale(1.2);
}

#products-itens::-webkit-scrollbar {
  display: none;
}

.prod-item button {
  position: absolute;
  width: 100%;
  padding: 10px 0;
  left: 0;
  bottom: 0;
}

#prevProduct,
#nextProduct {
  font-family: "Courier New", Courier, monospace;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #01bf63;
  border: none;
  cursor: pointer;
  font-weight: bolder;
  font-size: 3rem;
  padding: 10px 15px;
  background-color: transparent;
}

#prevProduct {
  left: 15px;
}

#nextProduct {
  right: 15px;
}

.prod-btn:hover {
  transform: scale(1.2);
}

#showAllBtn {
  color: rgb(42, 42, 42);
  border: 2px solid rgb(42, 42, 42);
  background-color: transparent;
  font-size: 16px;
  margin-top: 50px;
  padding: 6px 30px;
  border-radius: 2px;
  cursor: pointer;
}

#showAllIco {
  transform: rotate(90deg);
}

.showProd #products-itens {
  flex-wrap: wrap;
  overflow-x: visible;
  gap: 40px;
  text-align: center;
  justify-content: center;
}

.showProd .prod-item {
  width: 180px;
  margin-top: 50px;
}

.showProd #prevProduct,
.showProd #nextProduct {
  display: none;
}
