/* оплата частями — иконки на карточке и странице товара */
.installment-icons{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}
.installment-icon{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(28, 28, 28, .08);
}
.installment-icon img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.installment-icon__count{
    position: absolute;
    right: -7px;
    bottom: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F7F7F8;
    border: 1px solid #E3E3E3;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #1C1C1C;
}

/* страница товара — чуть крупнее */
.single-product .installment-icon{
    width: 44px;
    height: 44px;
}
.single-product .installment-icon img{
    width: 26px;
    height: 26px;
}
