.payment-account-information {
    max-width: 540px;
    border: 1px solid var(--gray-12);
    border-radius: var(--radius);
    background: var(--gray-0);
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.06);
    direction: rtl;
}

.payment-account-information .card-body {
    padding: 20px;
}

.payment-account-information__title {
    margin: 0;
    color: var(--secondary);
    font-size: 17px;
    font-weight: 700;
}

.payment-account-information__divider {
    height: 1px;
    margin: 14px 0 4px;
    background: var(--gray-12);
}

.payment-account-information__row {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-12);
}

.payment-account-information__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.payment-account-information__label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-2);
    font-size: 13px;
    font-weight: 500;
}

.payment-account-information__value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.payment-account-information__value {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--secondary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
}

.payment-account-information__copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 40px;
    padding: 7px 10px;
    border: 1px solid var(--gray-12);
    border-radius: 10px;
    color: var(--secondary);
    background: var(--gray-0);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
    width: 64px !important;
}

.payment-account-information__copy:hover {
    border-color: var(--tertiary);
    color: var(--tertiary);
    background: var(--s-tertiary);
}

.payment-account-information__copy:focus-visible {
    outline: 2px solid var(--tertiary);
    outline-offset: 2px;
}

.payment-account-information__copy.is-copied {
    border-color: var(--success);
    color: var(--success);
    background: var(--s-success);
}

.payment-account-information__copy .iconsax {
    font-size: 17px;
    line-height: 1;
}

.checkout .total-box .payment-account-information {
    margin-top: 0;
    border: 1px solid var(--gray-12);
    border-radius: var(--radius);
    background: var(--gray-0);
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.06);
}

.checkout .total-box .payment-account-information .card-body {
    padding: 20px;
}

@media (max-width: 575.98px) {
    .payment-account-information {
        width: 100%;
        max-width: none;
        border-radius: 12px;
    }

    .payment-account-information .card-body,
    .checkout .total-box .payment-account-information .card-body {
        padding: 16px;
    }

    .payment-account-information__row {
        padding: 14px 0;
    }

    .payment-account-information__value {
        font-size: 14px;
    }

    .payment-account-information__copy {
        padding: 7px 8px;
    }

    .payment-account-information__copy-text {
        display: none;
    }
}
