body{ margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: white;
}
#bar{ 
  
  display: inline-block;
  width: 20%;
  padding-top: 50px;
  background-color: white;
  height: 100px

}
#logo{
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 100px;
}
#links a{ 
  margin-left: 20px;
  margin-right: 50px;
  text-decoration: none;
  font-weight: 850px;
  color: #000000;

}
#links a:hover {
 border-left: 5px solid #f7b733;
 color: #f7b733;
}
.button1 {
  background-color:#000000;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 20px 40px;
  margin-bottom: 40px;
  font-size: 16px;
  transition: 1s;
}

.button1:hover {
  background-color: #f7b733;
}
.button2 {
  background-color:#000000;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 20px 40px;
  margin-bottom: 40px;
  font-size: 16px;
  transition: 1s;
  
}

.button2:hover {
  background-color: #f7b733;
}

h1{
font-weight: 300;
}
 .cart-container {
width: 40%;
margin-top:100;
margin-left: 30;
}
main{
  display: flex;
  width: 100%;
} 
.cart-items {
  width: 85%;
  border-collapse: collapse;
}
.total{
  background-color: #f7b733;
  margin:auto
}
.cart-items th{
  background-color:rgba(128, 128, 128, 0.064);
}

.cart-items th, .cart-items td {
  padding: 5px;
  border-bottom: 1px solid #4538385e;
  text-align: center;
}

.item-info {
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-info img{

  transition: 1s;
}
.item-info img:hover {
  transform: scale(.75);
}
.total {
  background-color: #fff;
  padding: 30px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.total h2 {
  margin-bottom: 20px;
}

.total p {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.total button {
  background-color: #f8b500;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}
