@import 'sass/reset&bg.css';
.container {
  width: 90%;
  height: 100vh;
  margin: 0 auto;
}

.products-list {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  grid-template-rows: repeat(3, 400px);
  grid-gap: 40px;
}
@media screen and (max-width: 1280px) {
  .products-list {
    grid-template-columns: repeat(3, minmax(230px, 1fr));
  }
}
@media screen and (max-width: 950px) {
  .products-list {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media screen and (max-width: 610px) {
  .products-list {
    grid-template-rows: repeat(3, 300px);
  }
}
@media screen and (max-width: 530px) {
  .products-list {
    grid-template-columns: minmax(200px, 1fr);
  }
}

.product-unit {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #707070;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 610px) {
  .product-unit {
    height: 100%;
  }
}
.product-unit .product-photo {
  height: 55%;
  background-color: #fff;
}
.product-unit .product-photo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  position: relative;
  left: 50%;
  padding-top: 10%;
  transform: translateX(-50%);
}
@media screen and (max-width: 450px) {
  .product-unit .product-photo img {
    padding-bottom: 30%;
  }
}
.product-unit .product-specificities {
  position: relative;
}
@media screen and (max-width: 610px) {
  .product-unit .product-specificities {
    top: -15px;
  }
}
.product-unit .product-specificities div {
  margin-bottom: 10px;
}
.product-unit .product-specificities .product-name h2 {
  font-size: 1.1rem;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 670px) {
  .product-unit .product-specificities .product-name h2 {
    font-size: 1rem;
  }
}
.product-unit .product-specificities .reference, .product-unit .product-specificities .marquage {
  font-size: 0.9rem;
  text-align: center;
}
.product-unit .btn-see-more {
  display: flex;
  position: relative;
  left: 50%;
  height: 35px;
  transform: translateX(-50%);
  bottom: 15px;
  align-items: center;
  justify-content: center;
  width: 60%;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  background-color: #FC8A07;
  border-radius: 25px;
  transition: 0.3s background-color ease-in-out;
  padding: 5px 4px;
}
.product-unit .btn-see-more:hover {
  background-color: #ec8108;
}
@media screen and (max-width: 1505px) {
  .product-unit .btn-see-more {
    width: 65%;
  }
}
@media screen and (max-width: 610px) {
  .product-unit .btn-see-more {
    height: 25px;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 530px) {
  .product-unit .btn-see-more {
    height: 30px;
    font-size: 1.1rem;
    width: 180px;
  }
}
@media screen and (max-width: 400px) {
  .product-unit .btn-see-more {
    height: 25px;
    font-size: 1.1rem;
    width: 150px;
  }
}

.btns-pagination {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  top: 50px;
  padding-bottom: 20px;
}
.btns-pagination .pages-numeros {
  position: absolute;
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

#btn-next {
  position: relative;
  margin-left: auto;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  font-size: 1.1rem;
  background-color: #FC8A07;
  transition: 0.3s background-color ease-in-out;
}
.btn a {
  text-decoration: none;
  color: #FFF;
}
.btn:hover {
  background-color: #ec8108;
}

.btn-prev-next {
  width: 200px;
  border-radius: 25px;
  padding-bottom: 3px;
}

.btn-number {
  width: 35px;
  border-radius: 50%;
}

/*# sourceMappingURL=productList.css.map */
