.header{
    display: flex;
    position: sticky;
    top: 0;
    justify-content: space-between;
    padding-bottom: 13px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    background-color: white;
    border-radius: 10px;
}
#left{
    padding-left: 70px;
    display: flex;
    align-items: center;
}
#left select{
    margin-left: 75px;
    border: none;
}
#right{
    padding-right: 50px;
    display: flex;
    align-items: center;
}
#right button{
    margin: 0 28px;
    border: none;
    background-color: white;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: bolder;
}

#btn-hover:hover{
    color: rgb(19, 143, 143);
}
.header2{
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
}
.header2 > div{
    width: 50%;
    margin:auto;
    padding: 12px;
    display: flex;
    justify-content: space-between;
}
.header2 > div a{
    text-decoration: none;
    color: black;
}
.header2 > div a:hover{
    text-decoration: none;
    color: rgb(33, 168, 141);
}
#cart-container{
    width: 50%;
    margin: auto;
    display: grid;
    margin-top: 70px;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

#cart-container > div p{
    padding: 0px;
    font-size: 16px;
    color: rgb(62, 62, 62);
}
#cart-container > div h4{
    padding: 0px;
    color: rgb(39, 39, 39);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
}
#cart-container > div img{
    width: 90%;
}
#cart-total{
    text-align: center;
    color: rgb(33, 33, 33);
}

#cart-container > div button{
    background-color: rgb(230, 47, 47);
    border-color: rgb(237, 192, 192);
    color: rgb(255, 255, 255);
    border-radius: 8px;
}
#cart-container > div button:hover{
    border-color: rgb(231, 164, 164);
    background-color: rgb(217, 99, 99);
}
#buy{
    width: 12%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 100px;
}
#buy button{
    width: 100%;
    height: 3.5vh;
    display: block;
    text-align: center;
    color: rgb(45, 44, 44);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background-color: rgb(43, 207, 207);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}
#buy button:hover{
    background-color: rgb(19, 82, 82);
    color: rgb(181, 178, 178);
}
