body{
  margin: 0;
}
.container{
  box-sizing: border-box;
  transition: transform .5s;
}

.button {
  background-color: white;
  color: black;
  border-radius: 5px;
  font-family: Arial, Helvetica, sans-serif;
  border: 2px solid black;
  padding: 18px 80px;
  margin: 0px;
  cursor: pointer;
  font-weight: bold;
}

.button:hover {
  transition: ease-in-out 0.4s;
  background-color: black;
  color: white;
}
.svg {
  color: black;
  width: 25px;
  height: 25px;
}

.gallery-section {
  display: flex;
  height: 500px;
  width: auto;
}
.img1 {
  box-sizing: border-box;
  padding: 40px;
  height: 100%; 
  object-fit: cover; 
  z-index: 10;
}


.img2{
  box-sizing: border-box;
  border-left: 150px solid beige;
  left: 100px;
  right: 0;
  width: calc(100% - 100px);
  height: 100%; 
  object-fit: cover;
  position: absolute;
  z-index: 10;
}



#collectioncontainer {
  box-sizing: border-box;
  background-color: white;
  width: 50vw;
  padding: 30px;
  height: 100%;
  font-family: 'Brush Script MT', cursive;
  font-size: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promocontainer {
  padding-top: 100px;
  background-color: white;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.stackcolor {
  position: relative;
  background-color: white;
  width: 80vw;
  height: 100%;
  z-index: 1;
}

.divider {
  background-color: beige;
  width: 100%;
  height: 80px;
  font-weight: bold;
  font-size: 20px;
  font-family: futura;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-cart span{
  position: absolute;
  font-family: futura;
  background-color: rgb(255, 236, 202);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: black;
  font-size: 12px;
  right: 15px;
  top: 10px;
}

.listProduct .item img{
  width: 90%;
  filter: drop-shadow(0 50px 20px #0009);
}
.listProduct{
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.listProduct .item{
  background-color: #EEEEE6;
  padding: 20px;
  border-radius: 20px;
}
.listProduct .item h2{
  font-weight: 500;
  font-size: large;
}
.listProduct .item .price{
  letter-spacing: 7px;
  font-size: small;
}
.listProduct .item button{
  background-color: #353432;
  color: #eee;
  border: none;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 20px;
}

/* cart */
.cartTab{
  width: 400px;
  background-color: #353432;
  color: #eee;
  position: fixed;
  top: 0;
  right: -400px;
  bottom: 0;
  display: grid;
  grid-template-rows: 70px 1fr 70px;
  transition: .5s;
}
body.showCart .cartTab{
  right: 0;
}
body.showCart .container{
  transform: translateX(-250px);
}
.cartTab h1{
  padding: 20px;
  margin: 0;
  font-weight: 300;
}
.cartTab .btn{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cartTab button{
  background-color: #E8BC0E;
  border: none;
  font-family: Poppins;
  font-weight: 500;
  cursor: pointer;
}
.cartTab .close{
  background-color: #eee;
}
.listCart .item img{
  width: 100%;
}
.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: #eee;
  border-radius: 50%;
  color: #555;
  cursor: pointer;
}
.listCart .quantity span:nth-child(2){
  background-color: transparent;
  color: #eee;
  cursor: auto;
}
.listCart .item:nth-child(even){
  background-color: #eee1;
}
.listCart{
  overflow: auto;
}
.listCart::-webkit-scrollbar{
  width: 0;
}



@media only screen and (max-width: 992px) {

  .promocontainer{
    padding-top: 100px;
  }

  .listProduct{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobile */
@media only screen and (max-width: 768px) {
  .promocontainer{
    padding-top: 70px;
      
  }
  .listProduct{
    grid-template-columns: repeat(2, 1fr);
  }
}