.product-item {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    height: 100%;
}

.product-item__img {
    position: relative;
    line-height: 0;
    overflow: hidden;
    border-radius: 4px;
}

.product-item__img::after {
    content: "";
    display: block;
    padding-top: 58.6080586081%;
}

.product-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item__img:hover img {
    transform: scale(1.05);
}

.product-item__img .discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-red);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
}

.product-item__content {
    padding: 10px 0 0;
}

.product-item__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    min-height: 40px;
    line-height: 1.4;

}

.product-item__title a {
    color: #000;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 17px;
}

.product-item__title a:hover {
    color: var(--color-orange);
}

.product-item__desc {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    min-height: 60px;
    word-wrap: break-word;
}

.product-item__desc ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.product-item__desc ul li {
    margin-bottom: 3px;
    list-style: disc;
}

.product-item__price {
    margin-bottom: 10px;
    position: relative;
    background: #fff;
    padding: 9px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-weight: 600;
}

.product-item__price .price-current {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-red);
}

.product-item__price .price-old {
    font-size: 14px;
    color: #8d9093;
    text-decoration: line-through;
}

.product-item__price .badge-hot {
    height: 20px;
    width: auto;
    /* position: absolute; */
    /* right: 5px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

.product-item__vendor {display: flex;align-items: center;justify-content: center;gap: 5px;font-size: 15px;}

.product-item__vendor strong {
    color: var(--color-blue);
}

.product-item__vendor img {
    width: 19px;
    height: 19px;
}

@media (max-width: 768px) {
    .product-item__price {
        /* flex-direction: column; */
    }

    .product-item__price .badge-hot {
        right: -5px;
        top: -8px;
        transform: none;
    }

    .product-item__vendor {
        font-size: 15px;
    }

    .product-item__img::after {
        padding-top: 80%;
    }
}