
svg{
    width: 30px;
}

.icon-header{
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.icon-cart{
    padding-left: 20px;
    position: relative;
}
.icon-cart span{
    position: absolute;
    background-color: #ff6a32;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -20px;
}
.title{
    font-size: xx-large;
}

.listProduct .item img
{
  width: 100%;
  /* filter: drop-shadow(0 50px 20px #0009); */
  padding-bottom: 10px;
  height: 250px;
}

.listProduct{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.listProduct .item{
    border: 2px solid #ff6a32;
    padding: 20px;
    border-radius: 20px;
}
.listProduct .item h2{
    color: #ff6a32;
    font-weight: 900;
    font-size: large;
}
.listProduct .item .price{
    letter-spacing: 2px;
    font-size: small;
}
.listProduct .item button{
    border: 1px solid #ff6a32;
    color: #ff6a32;
    background: #fff;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 20px;
}

.listProduct .item button:hover{
    background: #ff6a32;
    color: #fff;
}

/* cart */
.cartTab{
    width: 400px;
    background-color: #050505;
    color: #eee;
    position: fixed;
    top: 60px;
    right: -400px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: .5s;
    z-index: 1;
}
body.showCart .cartTab{
    right: 0;
}
/* body.showCart .container{
    transform: translateX(100px);
} */
.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab button{
    background-color: #ff6a32;
    color: #fff;
    border: none;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
}
.cartTab .close{
    color: #050505;
    background-color: #eee;
}
.listCart .item img{
    width: 100%;
    height: 50px;
}

.deleteIcon:hover {
    cursor: pointer;
}

.listCart .item{
    display: grid;
    grid-template-columns: 50px 70px 70px 100px 60px; /* Adjusted grid template columns */
    gap: 10px; /* Adjust the gap as needed */
    text-align: center;
    align-items: center;
    padding-top: 20px;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    color: #555;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
    cursor: auto;
}
.listCart .item:nth-child(even){
    background-color: #eee1;
}
.listCart{
    overflow: auto;
}
.listCart::-webkit-scrollbar{
    width: 0;
}
@media only screen and (max-width: 992px) {
    .listProduct{
        grid-template-columns: repeat(3, 1fr);
    }
}


/* mobile */
@media only screen and (max-width: 768px) {
    .listProduct{
        grid-template-columns: repeat(1, 1fr);
    }
}
