body{
    background-color: #0F0F0F;
}
.nav-icons a~a{
    fill: #FFB800;
}
.cart-section{
    background-color: #0F0F0F;
    padding: 100px 20px;
    text-align: center;
}
.cart-container{
    padding: 0 0 50px;
    display: flex;
}
.your-cart{
    padding: 0px 0px 100px;
    background-color: #0F0F0F;
    text-align: center;
    letter-spacing: 10px;
    font-size: 40px;
    font-weight: 600;
}
.remove-button button{
    background-color: transparent;
    color: #FFFFFF;
    font: inherit;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

table{
    width: 100%;
    border-collapse: collapse;
}
table, thead, th, tbody, tr, td{
    border-bottom: 1px solid #3f3d3d;
    padding: 15px 30px;
}
th{
    font-weight: 300;
    font-size: 20px;
}
.cart-img{
    width: 300px;
    height:300px;
}
.cart-img img{
    width: 100%;
    border-radius: 10px;
}
.cart-title{
   font-size: 20px;
}
.item-total{
    color:#FFB800;
    font-size: 16px;
}

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.btn {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    cursor: pointer;
}
  
.number {
    width: 50px;
    height: 30px;
    text-align: center;
}

.item-price{
    font-size: 16px;
}
.checkout-container{
    display: flex;
    flex-direction: row;
    justify-content: end;
    padding: 0 50px 50px;;
}
.checkout-button{
    background-color: #D1AB47;
    color: #0F0F0F;
    font: inherit;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 8px 60px;
    cursor: pointer;
    width: 100%;
    height:100%;

}
.checkout-button:hover{
    background-color: #9b7a28;
    font-weight: 600;
}
.total-amount{
    font-weight: 500;
    padding: 50px;
    font-size: 20px;
}
.checkout{
    padding:50px;
}
.amount{
    color:#FFB800;
}
