.cart{
  display: flex;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 3px;
  width: 80px;
}

.cart p{
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background-color: gray;
  color: white;
  margin-top: 15px;
}
.container{
  display: flex;
  width: 70%;
  margin-bottom: 30px;

}
#root{
  width: 100%;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr); */
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
    margin-top: 100px;
}
.sidebar{
    margin-top: 100px;
  width: 100%;
  border-radius: 5px;
  background-color: rgb(211, 210, 210);
  margin-left: 20px;
  padding: 15px;
  text-align: center;
  
}
.head{
  background-color: gray;
  border-radius: 3px;
  height: 40px;
  padding: 30px 0;
  /* font-weight: 400; */
  margin-bottom: 20px;
  color: white;
  display: flex;
  align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;


}
.foot{
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
  padding: 10px 0px;
  border-top: 1px solid black;
}
.box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid black;
  border-radius: 5px;
  padding: 15px;
  width: 300px;
}
.product-title {
    /* width: ; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-box{
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.images{
  max-width: 90%;
  max-height: 90%;
  object-fit: cover;
  object-position: center;
}
.bottom{
  margin-top: 20px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
  height: 110px;
}
h2{
  font-size: 20px;
  color: red;
}
button{
  width: 100%;
  position: relative;
  border: none;
  border-radius: 5px;
  background-color: gray;
  padding: 7px 25px;
  cursor: pointer;
  color: white;
}
button:hover{
  background-color: black;
}
.cart-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: white;
  border-bottom: 1px solid black;
  border-radius: 3px;
  margin: 10px 10px;
}

.cart-item .cart-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item h2 {
  margin-left: auto;
  margin-right: 50px;
}

.row-img{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rowimg{
  max-width: 43px;
  max-height: 43px;
  border-radius: 50%;
}
.fa-trash:hover{
  cursor: pointer;
  color: black;
}

#count{
  color: white;
}