.search-container {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
}

#searchInput {
  padding: 10px;
  width: 300px;
  border: 4px solid yellow;
  border-radius: 5px;
  font-size: 16px;
}


a{
  color: unset;
  text-decoration: none;
}
.container{
  width: 900px;
  margin: auto;
  max-width: 90vw;
  text-align: center;
  padding-top: 10px;
}
.title{
  font-size: xx-large;
  padding: 20px 0;
  color: white;
  width: 100%;
  text-align: center;
}
.listProduct .item img{
  width: 90%;
}
.listProduct{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.listProduct .item{
  background-color: #ffffffa1;
  padding: 20px;
  border-radius: 20px;
}
.listProduct .item h3{
  font-size: large;
  margin-top: 20px;
  color: black;
  letter-spacing: 3px;
}
.listProduct .item .price{
  letter-spacing: 7px;
  font-size: small;
  color: black;
}












/* detail page */

.detail{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  text-align: left;
  color: rgb(255, 255, 255);
}
.detail .image img{
  width: 100%;
}
.detail .image{
  position: relative;
}
.detail .image::before{
  position: absolute;
  width: 300px;
  height: 300px;
  content: '';
  z-index: -1;
color: white;
  left: calc(50% - 150px);
  top: 50px;

}
.detail .name{
  width: 100%;
  text-align: center;
  font-size: xxx-large;
  letter-spacing: 4px;
  padding: 40px 0 0 0;
  margin: 0 0 10px 0;
}

.price-share {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.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{
  background-color: #eee;
  border: none;
  padding: 15px 30px;
  border-radius: 20px;
  font-family: Poppins;
  font-size: large;
}
.detail .buttons svg{
  width: 15px;
}
.detail .buttons span{
  background-color: #555454;
  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;
}
/* // ipad */
@media only screen and (max-width: 992px) {
  .listProduct{
      grid-template-columns: repeat(3, 1fr);
  }
  .detail{
      grid-template-columns:  40% 1fr;
  }
}


/* mobile */
@media only screen and (max-width: 768px) {
  .listProduct{
      grid-template-columns: repeat(2, 1fr);
  }
  .detail{
      text-align: center;
      grid-template-columns: 1fr;
  }
  .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;
  }
}











.footer1 {
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .social-media-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
    gap: 20px
    ;
  }
  .social-media-list li a {
    color: white;
    font-size: 30px;
    
  }
  .footer1 .footer-left h3 {
    margin: 0;
    font-size: 24px;
  }
  
  .footer1 .footer-right .media1 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .footer1 .footer-right .media1 li {
    margin-right: 10px;
  }
  
  .footer1 .footer-right .media1 li:last-child {
    margin-right: 0;
  }
  
  .footer1 .footer-right .media1 li a {
    color: #fff;
  }
  
  .footer1 .footer-right .media1 li a:hover {
    color: #ccc;
  }
  
  @media screen and (max-width: 460px) {
    .footer1 {
      display: flex;
      gap: 30px;
      flex-direction: column;
    }
   }



