/* Write your styles here */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    box-sizing: border-box;
    margin: 0%;
    font-family: 'Inter', sans-serif;
}
header{
    width: 100%;
    background-color: black;
    color: white;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
    padding-bottom: 1%;
    position: sticky;
    top: 0;
    z-index: 1;
}
h1{
    margin: 2%;
    padding: 2%;
    text-align: center;
}
#navBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navitems{
    display: flex;
    gap: 30px;
    padding-left: 1%;
    padding-right: 1%;
}
#items{
  margin-top: 1px;
  display: flex;
  justify-content: start;
  gap: 2%;
  /* align-items: center; */
  flex-wrap: wrap;
  overflow-x: scroll;
  border: 2px solid black;

  width: 60%;
  height: 100vh;

}
.item{
    position: relative;
    margin-left: 1rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 40%;
    height: 380px;
    border: 2px solid black;
}

.image{
    width: 70px;
    height: 120px;
  }
  .imagedetails{
    display: flex;
    justify-content: space-between;
    margin: 2%;
  }
  
  .removebtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    color: white;
    background-color: black;
    cursor: pointer;
  }
  
a{
    text-decoration: none;
    color: white;
}

main{
    margin-top: 2%;
    margin-left: 1%;
    margin-right: 1%;
}

#mainsection{
    display: flex;
    justify-content: space-between;
}

#rightside h3{
    text-align: center;
    margin-top: 10%;
}

#rightside{
    margin: 2%;
    width: 30%;
    height: fit-content;
    background-color: black;
    color: white;
    border-radius: 5px;
}
.list{
    width: 100%;
}
.hide{
    display: none;
}

#total{
    text-align: start;
    margin: 1%;
    padding: 2%;
    line-height: 300%;

}
.listtitle{
    text-align: start;
    margin: 1%;
    padding: 2%;
}
.listprice{
    text-align: end;

}
#checkoubtn{

    padding: 5%;
    width: 100%;
    background-color: white;
    color: black;
    border-radius: 10px;
}