.new-price-container {
        display: flex;
        align-items: flex-start;
        margin: 1rem 0;
        width: 100%;
        max-width: 450px;
    }

    .pay-way-logos {
        display: flex;
        gap: 5px;
    }
    .new-price-pay-logo {
        height: 20px;
        width: auto;
    }

    .pay-now-label,.pay-over-time-label {
        font-size: 15px;
    }


    .compare-at-price .etrans-money {
        font-size: 14px;
    }

    .compare-at-price {
        color: #898989;
        text-decoration: line-through;
        font-size: 16px !important;
        font-weight: normal !important;
    }

    .badge {
        border-radius: 6px;
        background: #ff5d5d;
        font-weight: normal;
        color: #fff;
            font-size: 16px;
                text-align: center;
                padding: 3px;
    }

    .price-row {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 0.25rem;
    }

    .current-price {
        font-size: 26px;
        font-weight: 600;
    }

    .current-price-hidden {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .current-price-hidden.show {
        opacity: 1;
        visibility: visible;
    }

    .badge-hidden {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .badge-hidden.show {
        opacity: 1;
        visibility: visible;
    }


    .current-price.transition-style {
        transition:
            font-size 0.3s ease,
            font-weight 0.3s ease,
            color 0.3s ease,
            text-decoration 0.3s ease;
    }

    .divider-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 600;
        padding: 5px 1.3rem 0 1.3rem;
        font-size: 1rem;
    }

    .divider-text-line {
        width: 1.5px;
        height: 43px;
        background-color: #000;
    }

    .installment-price {
        font-size: 26px;
        font-weight: 600;
    }

    .installment-details {
        font-size: 14px;
        margin-bottom: 3px;
    }

    button.link {
        font-size: 14px;
    }

    @media (max-width:767px) {
        .pay-now-label,.pay-over-time-label {
            font-size: 14px;
        }
        .current-price {
            font-size: 24px;
            font-weight: bold;
        }
        .installment-price {
            font-size: 24px;
            font-weight: bold;
        }
        .badge {
            font-size: 12px;
        }
        .divider-text-line {
            height: 42px;
        }
        .divider-text {
            padding: 4px 1.3rem 0px 1.3rem;
        }
    }



    .klarna-button-container {
        height: 23px;
        display: flex;
        align-items: center;
    }


.klarna-button-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
}

    .loading-spinner {
        width: 16px;
        height: 16px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #3676ff;
        border-radius: 50%;
        animation: spin 1.6s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }