.xcart-product-card {
    display: block;
    margin: .5em;
    text-align: center;
    text-decoration: none;
    color: #333;
    border: 2px solid #66ccff;
    position: relative;
}

.xcart-product-card__img {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background: no-repeat center;
    background-size: contain;
    margin-top: 21px;
}

.xcart-product-card__title {
    margin: 8px 4px;
    max-height: 46px;
}

.xcart-product-card__rating {
    margin: .5em;
}

.xcart-product-card__price {
    background-color: #66ccff;
    padding: 24px 12px 4px 12px;
    text-align: left;
    position: relative;
}

.xcart-product-card__price-currency,
.xcart-product-card__price-val {
    color: #fff;
    font-size: 18px;
}

.xcart-product-card__price-ico {
    display: inline-block;
    width: 24px;
    height: 24px;
    right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/assets/website/xcart/img/buy_buy.png');
    position: absolute;
}

.xcart-product-card__sale {
    display: block;
    width: 60px;
    height: 44px;
    background: #ff6666;
    color: #fff;
    text-align: center;
    line-height: 42px;
    font-size: 20px;
    position: absolute;
    z-index: 1;
    top: 15px;
    zoom: .75;
}
.xcart-product-card__sale:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    z-index: 100;
    border: 2px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 24px solid #ff6666;
    border-right: 12px solid transparent;
    border-left: 30px solid transparent;
}
.xcart-product-card__sale:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0%;
    left: 100%;
    border: 1px solid transparent;
    border-top: 3px solid #ff6666;
    border-bottom: 20px solid transparent;
    border-right: 2px solid transparent;
    border-left: 10px solid #ff6666;
}

.xcart-product-card__price-ico {
    right: 10px;
    top: 15px;
}
.xcart-product-card__price-val-old,
.xcart-product-card__price-currency-old {
    font-size: 12px;
    text-decoration: line-through;
}

.xcart-product-card__txt {
    color: #fff;
    top: 6px;
    position: absolute;
    left: 8px;
}

.v3__homepage .xcart-product-card__txt {
    left: 12px;
}

@media (min-width: 768px) {
    .xcart-product-card__price-val-old,
    .xcart-product-card__price-currency-old {
        font-size: 14px;
    }

    .xcart-product-card__price-ico {
        right: 12px;
    }

    .xcart-product-card__title {
        max-height: auto;
    }
}

@media (min-width: 1100px) {
    .xcart-product-card__title {
        margin: 10px 16px 3px;
        max-height: 46px;
        height: 46px;
    }

    .xcart-product-card__price-currency,
    .xcart-product-card__price-val {
        color: #fff;
        font-size: 22px;
    }

    .xcart-product-card__price-ico {
        display: inline-block;
        width: 32px;
        height: 32px;
        right: 20px;
    }

    .xcart-product-card__img {
        transform: scale(.85);
        transition: transform .3s;
    }

    .xcart-product-card:hover .xcart-product-card__img {
        transform: scale(1);
    }

    .xcart-product-card__sale {
        zoom: 1;
    }

    .xcart-product-card__price-val-old,
    .xcart-product-card__price-currency-old {
        font-size: 16px;
    }
}
