body {
    
    overflow-x: hidden;
    font-size: 15px;
}
.container {
    
    
   
    transition: transform 2s;
}
header img {
    width: 60px;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .iconCart{
position: relative;
z-index: 1;
}
header .totalQuantity {
    position: absolute;
    top: 0;
    right: 0;
    font-size: x-large;
    background-color:red;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(20px);
}

/** Cart**/
.cart{
    color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background-color: #0e0f11;
    display: grid;
    grid-template-rows: 50px 1fr 50px;
    gap: 20px;
    transition: right 1s;
}

.cart h2 {
    color: orangered;
    padding: 20px;
    margin: 0;
}

.cart .listCart .item {
    display: grid;
    grid-template-columns: 50px 1fr 70px;
    align-items: center;
   
    gap: 50px;
    
}
.cart .listCart img {
    width: 100%;
    height: 70px;
    object-fit: cover;
   
}
.cart .listCart .item .name {
    font-weight: bold;
}
.cart .listCart .item .quantity {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
    margin-right: -20px;
    
}
.quantity {
   
   
}
.cart .listCart .item span {
    display: block;
    width: 50px;
    text-align: center;
}
.cart .listCart {
    padding: 20px;
    overflow: auto;
}
.cart .listCart::-webkit-scrollbar{
    width: 0;
}
.cart .buttons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
}
.cart .buttons div {
    background-color: #e8bc0e;
    display:flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}
.cart .buttons a {
    color: #fff;
}
.cart .buttons .checkout{
    background-color:orangered;
}

.listProduct {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 20px;
}