.popular-products__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.popular-product {
    display: flex;
    padding-right: 12px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.popular-product:hover {
    background: #F2F6FD;
}

.popular-product__image {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
}

.popular-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-product__info {
    flex: 1;
    min-width: 0;
}

.popular-product__info {
    display: flex;
    padding-right: 12px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    }

.popular-product__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    flex: 1 0 0;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.popular-product__category {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.popular-product__category-link {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.popular-product__category-link:hover {
    color: #666;
}

.popular-product__price-block {
    flex-shrink: 0;
    text-align: right;
}

.popular-product__price-current {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.popular-product__price-current--discount {
    color: #d32f2f;
}

.popular-product__price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
}

.popular-product__actions {
    flex-shrink: 0;
    width: 75px;
}

.popular-product__buy-btn {
    border-radius: 4px;
    background: #192F7C;
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 auto;
    width: fit-content;
}

.popular-product__buy-btn:hover {
    background: #5D6DA3;
}

.popular-product__buy-btn svg {
    flex-shrink: 0;
    color: white;
}

.popular-product__buy-btn.added svg {
    display: none;
}

.popular-product__buy-btn span {
    color: #ffffff;
    font-size: 20px;
}

.popular-product__subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    padding: 0 12px;
    background: #ffc107;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    box-sizing: border-box;
}

.popular-product__subscribe-btn:hover {
    background: #e0a800;
}

@media (max-width: 768px) {
    .popular-product {
        flex-wrap: wrap;
    }

    .popular-product__info {
        flex: 1 1 calc(100% - 81px);
    }

    .popular-product__price-block {
        width: 100%;
        text-align: left;
        margin-left: 81px;
    }

    .popular-product__actions {
        width: 40%;
        margin-left: 10px;
    }
}

.popular-product_added {
    line-height: 21px;
    width: 22px;
    color: #fff;
}

.popular-product__price-current {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-align: left;
}

.popular-product__price-current--discount {
    color: #d32f2f;
}

.popular-product__price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .popular-product__price-block {
        width: 20%;
        text-align: left;
        margin-left: 10%;
    }

    .popular-product__price-current {
        justify-content: flex-start;
    }
}
