.trending-product-rating{ 
    display: flex;
    flex-direction: row;
}

.trending-product, .trending-product-data{
    display: flex;
    flex-direction: column;
}

.trending{
    padding: 0 15px;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}


.trending-products{
    display: flex;
    flex-direction: row;
}

.trending-product {
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    width: 25%;
}

.trending-product-name{
    text-transform: capitalize;
    color: #333;
    font-size: 15px;
    width: 100%;
    float: left;
    line-height: 20px;
    font-weight: 500;
    font-family: Roboto Slab, sans-serif;
    text-align: center;
}

.trending-product-name:hover{
    color: #AF9666;
    transition: all 0.4s ease-in-out;
}

.trending-product-price{
    font-size: 16px;
    color: #C61932;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
}

.trending-product-rating{ 
    color: #111;
}

.trending-product-data { 
    padding: 15px 0;
    align-items: center;
}

.trending-product-display { 
    position: relative;
    overflow: hidden;
}



.buttons-on-hover{ 
    position: absolute;
    bottom: 20px;
    right: -50px;
    transition: all 0.4s ease-in-out;
}

.buttons-on-hover i { 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #333;
    color: #fff;
    margin-bottom: 5px;
    height: 50px;
    width: 48px;
}

.trending-product-display:hover .buttons-on-hover { 
    right: 20px;
    transition: all 0.4 ease-in-out;
}

.buttons-on-hover i:hover {
    background-color: #AF9666;
}

.etiquette {
    background-color: #C61932;
    height: 48px;
    width: 48px;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-product {
    padding: 0 15px;
}

@media only screen and (max-width: 1024px),
    screen and (max-device-width: 1024px){


        .trending-products {
            overflow: hidden;
        }

        .trending-product {
            min-width: 33%;
        }
        .trending-product {
            min-width: 50%;
            padding: 0 15px;
        }
    


    }

    
    
@media only screen 
    and (max-device-width: 768px), 
    only screen and (max-device-width: 768px), 
    only screen and (max-width: 768px){
        

        .trending-product {
            min-width: 50%;
            padding: 0 15px;
        }
    
    }