.product_list_item {
    background-color: #fff;
    border: 0.1rem solid #eaeaea;
    height: 100%;
    padding-top: 2.2rem;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

.product-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 1;
}

.product-label.new {
    background-color: #4B0082;
}

.product-label.discontinued {
    background-color: #DC3545;
}

.product-label.coming-soon {
    background-color: #007bff;
}

.data_wrap {
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 10px;
}

.data_wrap p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #a9a9a9;
}

.data_wrap p span {
    font-weight: 700;
    color: var(--dark_blue);
}

.data_wrap h4 {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.product_list_item .img_wrap {
    overflow: hidden;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 25px;
}

.product_list_item img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
}

.product_list_item > .content_wrap > .title {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0.8rem;
    height: 10rem;
    text-align: center;
    padding: 0px 10px;
    overflow-y: auto;
}

.product_list_item .more_button {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    font-size: 1.5rem;
    color: var(--dark_blue);
    border: 0.2rem solid var(--dark_blue);
    border-radius: 0.5rem;
    font-weight: 400;
    padding: .7rem 1.35rem;
}
.product_list_item .more_button:hover {
    background-color: var(--dark_blue);
    color: #fff;
}
.product_list_item:hover img {
    transform: scale(1.15);
}


@media (max-width: 768px){
    .product-label
    {
        font-size: 10px;
        padding: 3px 7px;
    }
}