.Slide {
    overflow: auto;
    display: flex;
    padding-top: 10px;
    padding-bottom: 5px;
    justify-content: center;
}

.Category {
    height: 80px;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    float: right;
    height: 180px;
    width: 150px;
    transition: width 0.4s ease, transform 0.4s ease;
    margin-right: 10px;
    margin-left: 10px;
    padding: 10px;
    background: rgb(237, 237, 237);
    border-radius: 15px;
    position: relative;
}


.product:hover {
    width: 300px;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 130px;
    border-radius: 5px;

}

.Flex-img {
    display: flex;
    width: 100%;
}

.product p {
    font-size: 15px;
    float: left;
    padding-top: 10px;
    text-align: start;
}

.message {
    display: flex;
    align-items: center;
    margin-right: 5px;
    font-size: 12px;
    opacity: 0;
    padding: 5px;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 30px;
    right: 0;
    line-height: 25px;
    padding: 5px;
    box-sizing: border-box;
    color: #ffffff;
    background: #404040;
    border-radius: 10px;
    font-size: 14px;
    width: 150px;

}

.product:hover .message {
    opacity: 1;
    transform: translateY(0);
}



.flex-space-around {
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    flex-direction: row-reverse;
}



.discount {
    min-width: 50px;
    background-color: #ff4a4a;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 5px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;

}