@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
#cartDiv{
    height: auto;
    width: 100%;
   
}

#initial-bag{
    color: #832729;
    margin: 100px auto;
   
    display: grid;
    justify-content: center;
    
}
#emptyCart{
    font-size: 1.625rem;
    font-weight: bolder;
    
}
#CartBag{
    margin-left: 45px;
}
#Continue-Shopping{
    font-size: 1.125rem;
    color: #832729;
    border: solid #832729;
    border-radius: 7px;
    padding: 7%;
    margin-left: 40px;
}

/* js part */
.cartImage{
    height: 200px;
    width: 200px;
}
.imgDivCart{
    height: 200px;
   
}
.cart-list{
    display: grid;
    
    justify-content: center;
    width: 100%;
  
}
.cartImage{
    border-radius: 10%;
}
.cardCart{
    
    display: flex;
    gap: 5%;
    width: 1000px;
    height: 250px;
    align-items: center;
    justify-content: space-around;
  
}
.detailCart{
    width: 500px;
    
}
.cartBtnDiv{
 display: flex;
 gap: 4%;
}
.titleCart{
    text-overflow: clip;
    white-space: inherit;
    overflow: hidden;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bolder;
    color: #832729;
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: 0;
}
.cartPrice{
    /* font-size: 20px; */
    font-weight: bolder;
    font-size: x-large;
}
.lineOnCart{
    border-bottom: 1.2px solid rgb(159, 158, 158);
    width: 100%;
}
.lineOnDownImg{
    border-bottom: 1.2px solid rgb(160, 159, 159);
    width: 100%;
}
.cartWeight{
    color: grey;
}
.deleteBtnImg {
    height: 1rem;
}
.wishlistBtnImg{
    height: 15px;
}
.cartDownImg{
    width: 95%;
    height: 200px;
    margin: 2%;
}
.removeBtnCart{ 
    font-weight: bolder;
    font-size: large;
    border: none;
    border-radius: 10px;
    padding: 1%;
    background-color: white;
}
.wishlistBtnCart{
    font-weight: bolder;
    font-size: large;
    border-radius: 10px;
    padding: 1%;
    border: none;
    background-color: white;
}
.cartTotalSticky{
    height: 100px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    position: fixed;
    bottom: 0; 
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2rem;
    font-weight: bolder;
    color: #832729;
    font-family: "Nunito Sans", sans-serif;
}
.checkOutButton{
    font-size: 1rem;
    font-weight: 350;
    color: white;
    background-color: #832729;
    border-radius: 7px;
    border: none;
    padding: 0.8%;
    font-family: "Nunito Sans", sans-serif;
}
.borderLineBtn{
    font-size: larger;
}


/* meadia query */

@media all and (min-width: 375px) and (max-width: 667px) {
    .cartImage{
        height: 150px;
        width: 150px;
    }
    .imgDivCart{
        height: 150px;  
    }
    .cart-list{
        display: grid;  
        justify-content: center;
        width: 100%;   
    }
    .cartImage{
        border-radius: 10%;
    }
    .cardCart{  
        display: flex;
        gap: 2%;
        width: 400px;
        height: 250px;  
    }
    .detailCart{
        width: 250px; 
    }
    .cartBtnDiv{
     display: flex;
     gap: 1.5%;
    }
    .titleCart{ 
        font-size: 1.1rem;
    }
    .cartPrice{
        font-size: large;
    }
    .removeBtnCart{    
        font-size: small; 
    }
    .wishlistBtnCart{ 
        font-size: small; 
    }
    .cartDownImg{
        width: 100%;
        height: 150px;
        margin: 1%;
        
    }
    .cartTotalSticky{
       
        font-size: 1.1rem; 
    }
    .checkOutButton{
        font-size: 0.8rem;   
    }
}