*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container-fluid{
    background-color: #eef1f6;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content:space-between;
}
.logo{
    height: 70px;
    width: 260px;
    margin-left: 60px;
    cursor: pointer;
}
/* //////////////////////////////////////////////////////////////////////// login */
.form-login{
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color:  #eef1f6;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgb(153, 149, 149);

}
.loginp{
    margin-top: 12px;
}
/* ///////////////////////////////////////////////////////////////////////////// register */

.form-register{
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color:  #eef1f6;
    padding: 20px 20px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 1px 1px 5px rgb(153, 149, 149);
}
.col2{
    margin-left: -16px;
}
.label-re{
    margin-bottom: 5px;
    font-size: 14px;
}
label{
    font-size: 15px;
}
/* ////////////////////////////////////////////////////////////////////// user info */
.user-info  ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.user-info  ul  li{
    margin-left: 25px;
    margin-top: 20px;
}
.username{
    margin-top: 15px;
}
.badge-icon{
    color:rgb(66, 137, 243);
    font-size: 16px;
}
.badge-icon:hover{
    color:rgb(60, 121, 212) ;
}
.badge{
    color: rgb(66, 137, 243);
    margin-left: -8px;
}
.view-all-pro:hover{
    opacity: 0.5;
}
.user-btn{
    font-size: 13px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 0px;
}
.big-cart-user{
    width: 154px;
    min-width: 154px;
    max-width: 154px;
    position: absolute;
    margin-top: 15px;
    margin-left: -20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding-top: 10px;
    display: none;
    overflow: hidden;
    flex-shrink: 0;
}
.fa-cart-shopping{
    cursor: pointer;
}
.divcart{
    background-color: rgb(227, 233, 232);
    color: rgb(0, 0, 0);
    padding: 5px;
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.name-chose{
    font-size: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.price-chose{
    color: rgb(75, 75, 75);
}
.big-cart-user  a{
    text-decoration: none;
    display: block;
    text-align: center;
    color: #424242;
    border: 1px solid #e7e7e7;
    padding: 5px;
    text-transform: capitalize;
}
/* //////////////////////////////////////////////////////////////////// section 1 */
.container-search{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    margin-top: 20px;
}
.container-search  select{
    padding: 2px  7px;
    border: 1px solid  #ddd;
    border-radius: 5px;
    width: 240px;
    font-size: 15px;
    color: #575757;
}
.container-search  select:focus{
    outline: none;
}

/* //////////////// */
.container-search  input{
    width: 540px;
    padding: 2px  13px;
    border: 1px solid  #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #6e6e6e;
}
.container-search  input:focus{
    outline: none;
}
.btn-search{
    padding: 4px  18px;
}
/* ///////////////////////////////////////////////////////////////////////////// product */
.product{
    width: 80%;
    margin: auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}
.card-product:hover{
    transform: scale(1.02);
    transition: 0.1s;
    border: 1px solid rgb(191, 191, 226);
    box-shadow: 1px 1px 4px rgb(172, 172, 172);
}
.card-img-top{
    height: 200px;
}
.card-body{
    margin: auto;
}
.action-product{
    margin-top: 5px;
}
.btn-addacrt{
    margin-left: 5px;
    margin-top: -5px;
    font-size: 13px;
}
.fa-heart{
    cursor: pointer;
}
.card-title{
    font-size: 18px;
}
.card-text{
    font-size: 13px;
    color: #424242;
}
/* //////////////////////////////////////////////////////////////////////////////// count  */
.quantity{
    display: flex;
    margin-top: -8px;
}
.decrease{
    border: 1px solid #a5a5a5;
    padding:2px 7px;
    border-radius: 5px;
    color: #a5a5a5;
}
.decrease:hover{
    background-color: #494949;
    color: white;
}
.increase{
    border: 1px solid #a5a5a5;
    padding:2px 7px;
    border-radius: 5px;
    color: #a5a5a5;
}
.increase:hover{
    background-color: #494949;
    color: white;
}
.qty{
    margin: 0px 5px;
    margin-top: 3px;
}
/* ////////////////////////////////////////////////////////////////// */
.allproduct{
    width: 70%;
    margin: auto;
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 50px;
}
.cartin-product{
    display: flex;
    border: 1px solid #ddd;
    padding: 10px 5px;
    margin-top:-20px ;
}
.cartin-product:hover{
    border: 1px solid rgba(236, 64, 64, 1);
    box-shadow: 1px 1px 4px rgb(172, 172, 172);

}
.image{
    width: 150px;
    height: 140px;
    border-radius: 10px;
    align-self: center;
}
.cartin-info{
    display:flex ;
    flex-direction: column;
    margin-left: 10px;
}
.cartin-title{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 17px;
    margin: 5px 0px;
}
.cartin-category{
    font-size: 13px;
    color: #424242;
    margin: 5px 0px;
}
.cartin-price{
    font-size: 13px;
    color: #424242;
    margin: 0px 0px;
}
.cartin-action{
    display: flex;
    justify-content: space-between;
}
.quantityin{
    height: 30px;
    margin-top: 10px;
}
.cartin-btn{
    margin-left: 40px;
    font-size: 14px;
    height: 37px;
    margin-top: 7px;
}
/* ///////////////////////////////////////////////////////////////fav cart */
.fav-product{
    width: 75%;
    margin: auto;
    display: flex;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    column-gap: 8px;
    margin-top: 30px;
}
.CardFav:hover{
    border: 1px solid rgba(236, 64, 64, 1);
    transform: scale(1.02);
    transition: 0.1s;
    box-shadow: 1px 1px 4px rgb(172, 172, 172);
}
.fav-haed{
    display:block;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
}
.line{
   width: 150px;
   height: 2px;
   background-color: red;
   margin: auto;
   transition: 0.4s;
}
.fav-haed:hover  .line{
    transform: scaleX(1.2);
}
.card{
    text-align: center;
    margin-bottom: 20px;
}
.div-head{
    margin-top: 110px;
}
/* ////////////////////////////////////////// */

.totalPrice{
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-top: 50px;
    color: rgb(71, 71, 71);
}