body{
  margin: 0;
  font-family: Poppins;
}
a{
  color: unset;
  text-decoration: none;
}
.container{
  width: 1100px;
  margin: auto;
  max-width: 90vw;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 3rem;
}
.title{
  font-size: xx-large;
  padding: 20px 0;
}

.listProduct .item img{
  /* width: 90%;
  filter: drop-shadow(0 50px 20px #0009); */
  width: auto;
  /* max-width: 280px; */
  /* max-width: 180px; */
  max-height: 280px;
  height: auto;
  /* filter: drop-shadow(0 50px 20px #000); */
}

.listProduct{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.listProduct .item{
  background-color: #FFF;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px hsla(206, 4%, 4%, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listProduct .item h2{
  font-weight: 500;
  font-size: large;
  justify-content: center;
  width: 80%;
  font-size: 1.25rem;
  margin: 1rem 0;
  /* letter-spacing: .5px; */
}
.listProduct .item .price{
  letter-spacing: 7px;
  font-size: small;
}
/* detail page */

.detail{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  text-align: left;
  margin-bottom: 2rem;
}


/* .detail .image img{
  width: 90%;
} */
.detail .image{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail .image::before{
  position: absolute;
  width: 300px;
  height: 300px;
  content: '';
  /* background-color: #94817733; */
  z-index: -1;
  border-radius: 190px 100px 170px 180px;
  left: calc(50% - 150px);
  top: 50px;

}
.detail .name{
  font-size: xxx-large;
  padding: 20px 0 0 0;
  margin: 0 0 10px 0;
}
.detail .price{
  font-weight: bold;
  font-size: x-large;
  letter-spacing: 7px;
  margin-bottom: 20px;
}
.detail .buttons{
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.detail .buttons button{
  display: flex;
  align-items: center;
  background-color: #eee;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  font-family: Poppins;
  font-size: large;
  box-shadow: 0 5px 10px #2F2F2F77;
  transition: .4s;
}

.detail .buttons button:hover{
  transform: translateY(-12px);
}


.detail .buttons svg{
  width: 15px;
}
.detail .buttons span{
  background-color: orange;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 20px;
}
.detail .buttons button:nth-child(2){
  background-color: #2F2F2F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  box-shadow: 0 10px 20px #2F2F2F77;
}

.detail .description{
  /* font-weight: 300; */
  line-height: 1.5;
  font-size: 1.15rem;
  color: black;
  text-align: justify;
}

.detail .description1{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
  text-align: left;
}

.description1{
  display: flex;
  width: 100%;
  line-height: 1.5;
}

.max400px{
  max-height: 400px;
}

/* // ipad */
@media only screen and (max-width: 992px) {
  .listProduct{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }
  .detail{
      grid-template-columns:  40% 1fr;
  }
}


/* mobile */
@media only screen and (max-width: 768px) {
  .listProduct{
      grid-template-columns: repeat(1, 1fr);
  }

  .listProduct .item h2 {
    width: 80%;
  }
  .detail{
      text-align: center;
      grid-template-columns: 1fr;
  }

  .max400px{
    max-height: 280px;
  }
  /* .detail .image img{
      width: unset;
      height: 40vh;
  }  */
  .detail .name{
      font-size: x-large;
      margin: 0;

  }
  .detail .buttons button{
      font-size: small;
  }
  .detail .buttons{
      justify-content: center;
  }
}

.content .buttons{
  margin-top: 2rem;
}

.marleft2{
  margin-left: .5rem;
  font-size: 3rem;
}

.white{
  color: white;
}