
header .shopping{
    position: relative;
    text-align: right;
}
/*header .shopping img{
    width: 40px;
}*/
/*header .shopping span{
    background-color: red;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: -5px;
    left: 80%;
    padding: 3px 10px;
}*/
.list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 50px;
}
.card{
    position: fixed;
    top: 0;
    left: 100%;
    width: 500px;
    background-color: black;
    height: 100vh;
    transition: 0.5s;
}
.card h1{
    color: white;
    font-weight: 100;
    margin: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.card .checkout{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
/*
.card .pay{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: grid;
}
.card .pay div{
    background-color: rgb(0, 255, 255);
    width: 100px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}*/

.card .checkout div {
    background-color: yellow;
    width: 100px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.card .checkout div:nth-child(2){
    background-color: blueviolet;
    color: white;
}

.item{
    text-align: center;
}

.active .card{
    left: calc(100% - 500px);
}
.active .container{
    transform: translateX(-200px);
}
.list .item{
    text-align: center;
    
    padding: 20px;
    /*box-shadow: 0 50px 50px coral;*/
    letter-spacing: 1px;
}
.list .item img{
    width: 90%;
}
.list .item .tittle{
    font-weight: 600;
}
.list .item .price{
    margin: 10px;
}
.list .item button{
    background-color: #1C1F25;
    color: #fff;
    width: 100%;
    padding: 10px;
}
.card{
    position: fixed;
    top:0;
    left: 100%;
    width: 500px;
    background-color: #453E3B;
    height: 100vh;
    transition: 0.5s;
    z-index: 1;
}
.active .card{
    left: calc(100% - 500px);
}
.active .container{
   transform: translateX(-200px);
}
.card h1{
    color: #E8BC0E;
    font-weight: 100;
    margin: 0;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
}
.card .checkOut{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    z-index: 2;

}
.card .checkOut div{
    background-color: #E8BC0E;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}
.card .checkOut div:nth-child(2){
    background-color: #1C1F25;
    color: #fff;
    z-index: 2;
}
.listCard li{
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    color: #fff;
    row-gap: 10px;
    z-index: 2;
}
.listCard li div{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.listCard li img{
    width: 90%;
}
.listCard li button{
    background-color: #fff5;
    border: none;
    z-index: 2;
}
.listCard .count{
    margin: 0 10px;
}


