#product .iute-product-finance {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid #e9ebef;
    border-radius: 6px;
    background: #fafbfc;
    min-width: 0;
}
#product .iute-product-finance:empty {
    display: none;
}
#product .iute-product-finance:not(:has(.iute-product-finance-row)):has(> .iute-product-promo:empty) {
    display: none;
}
#product .iute-product-finance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
#product .iute-product-finance-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.4;
}
#product .iute-product-finance-caption img {
    width: 64px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}
#product .iute-product-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 40px;
    margin: 0;
    padding: 9px 14px;
    border: 1px solid #d8252c;
    border-radius: 4px;
    background: #fff;
    color: #b91c23;
    font: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: background .15s, color .15s;
}
#product .iute-product-checkout:hover {
    background: #d8252c;
    color: #fff;
}
#product .iute-product-checkout:focus-visible {
    outline: 2px solid #d8252c;
    outline-offset: 3px;
}
#product .iute-product-checkout:disabled {
    opacity: .6;
    cursor: wait;
}
#product .iute-product-promo:empty {
    display: none;
}
#product .iute-product-finance-row + .iute-product-promo:not(:empty) {
    margin-top: 12px;
}
@media (max-width: 575px) {
    #product .iute-product-finance-row {
        flex-wrap: wrap;
    }
    #product .iute-product-checkout {
        flex: 1 1 100%;
    }
}
