* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.favorite-item1 {
    position: relative;
}

.favorite-item1::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -9px;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    transition: 0.4s ease;
    background-color: rgb(249 168 212);
}

.favorite-item1:hover::after {
    transform: translateX(-50%);
    width: 180%;

}

.viewAllProducts::-webkit-scrollbar {
    background-color: rgb(240, 154, 168);
    width: 10px;
}

.viewAllProducts::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 20px;
    border: 1px solid rgb(244, 114, 182);
}

::-webkit-scrollbar{
    width: 6px;
}
::-webkit-scrollbar-thumb{
    background-color:rgb(240, 154, 168) ;
    border-radius: 20px;
    cursor: pointer;
}