.product-contenaire{
    gap: 5px;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    height: auto;
justify-content: center;
margin-top: 100px;



}
.product {
    width: 235px;
    padding: 0.3rem;
    margin-top: 12px;
    margin-left: 10px;
    height: 333px;
    background: white;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 50px 30px -20px;
}
.product-top{

    width: 228px;
    margin-left: 3px;
    height: 225px;
    margin-top: 3px;
}
.product-top img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 10px;

}

.product-contenent{

    width: 100%;
    height: 100px;
    margin-top: 5px;
    margin-left: 5px;
}
.product-category{
    color: #0eac00;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.product-title{
    margin-top: 1px;
font-size: 16px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.product-rating{
    margin-top: 7px;
    margin-left: -5px;
    
}
.product-rating i{
    color: #FBBC04;
margin-left: 5px; 
}
.product-price{
    display: flex;
    align-items: center;
    column-gap: .5rem;
    margin-top: 7px;
}
.new-price {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #15A6DD;
    font-size: 18px;
}
.old-price{
    color: #ff0000;
    text-decoration: line-through;
    margin-top: 3px;

}


    /*            button product                    */







    
    .product-btn-group {
        display: flex;
        align-items: center;
        margin-left: 145px;
        margin-top: -35px;
    }
    
    .product-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7d7d80;
        cursor: pointer;
        background-color: #f2f2f2;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 50px 30px -20px;
        
        svg {
            width: 24px;
            height: 24px;
        }
    
        & + & {
            margin-left: 0.5rem;
        }
    }
    .product-btn:hover {
    color: #15A6DD;
    background-color: #fff;
    }












    /* Reset styles */
* {
    margin: 0;
    padding: 0;
   /* box-sizing: border-box; */
  }
  
  body {
    background-color: #f2f2f2;
  
  }
  
