.mall-payment-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mall-payment-modal.is-visible {
    pointer-events: auto;
    opacity: 1;
}

.mall-payment-modal__mask {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.mall-payment-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    padding: 24px 20px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.mall-payment-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.mall-payment-modal__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    text-align: center;
}

.mall-payment-modal__loading {
    padding: 36px 0;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.mall-payment-modal__qr-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.mall-payment-modal__qr {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.mall-payment-modal__hint {
    margin: 0 0 8px;
    text-align: center;
    color: #374151;
    font-size: 14px;
}

.mall-payment-modal__order {
    margin: 0 0 8px;
    text-align: center;
    color: #6b7280;
    font-size: 12px;
    word-break: break-all;
}

.mall-payment-modal__status {
    margin: 0;
    text-align: center;
    color: #2563eb;
    font-size: 13px;
}
