.article-product-card {
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px auto;
    padding: 12px;

    background: #fdfdfd;
    border: 1px solid #e8e8e8;
    border-radius: 5px;

    transition: border-color .2s ease;
}

.article-product-card:hover {
    border-color: #d2d2d2;
}


/* Image */

.article-product-card__image {
    position: relative;

    width: 82px;
    height: 82px;
    flex: 0 0 82px;

    border-radius: 5px;
    overflow: hidden;

    background: #f5f5f5;
}

.article-product-card__image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}


/* Content */

.article-product-card__content {
    flex: 1;
    min-width: 0;
}


/* Category */

.article-product-card__top {
    margin-bottom: 3px;
}

.article-product-card__category {
    color: #888;
    font-size: 11px;
}


/* Title */

.article-product-card__title {
    margin: 0 0 3px;
    padding: 0;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.article-product-card__title a {
    color: #111;
    text-decoration: none;
}


/* Description */

.article-product-card__description {
    margin: 0;

    color: #888;
    font-size: 12px;
    line-height: 1.6;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Bottom */

.article-product-card__bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    margin-right: auto;
}


/* Price */

.article-product-card__price {
    white-space: nowrap;

    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.article-product-card__price del {
    display: block;

    color: #aaa;
    font-size: 10px;
    font-weight: 400;
}

.article-product-card__price ins {
    text-decoration: none;
}


/* Button */

.article-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 1px 20px;

    background: #111;
    color: #fff !important;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;

    white-space: nowrap;

    transition: opacity .2s ease;
}

.article-product-card__button:hover {
    opacity: .8;
}

.article-product-card__button span {
    display: none;
}


/* Meta */

.article-product-card__meta {
    display: none;
}

.article-product-card__badge {
    display: none;
}

.article-product-card__discount {
    position: absolute;

    top: 6px;
    right: 6px;

    padding: 3px 5px;

    background: #111;
    color: #fff;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 700;
}


/* Mobile */

@media (max-width: 600px) {

    .article-product-card {
        gap: 11px;
        padding: 9px;

        border-radius: 5px;
    }

    .article-product-card__image {
        width: 64px;
        height: 64px;
        flex-basis: 64px;

        border-radius: 5px;
    }

    .article-product-card__title {
        font-size: 13px;
    }

    .article-product-card__description {
        font-size: 10px;
    }

    .article-product-card__bottom {
        gap: 7px;
    }

    .article-product-card__price {
        font-size: 12px;
    }

    .article-product-card__button {
        padding: 0 15px;
        font-size: 12px !important;
    }
}