#product-purchase-modal-source {
    display: none;
}

.purchase-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 0, 55, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.purchase-modal {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 32px 32px;
    box-shadow: 0 20px 60px rgba(15, 0, 55, 0.25);
}

.purchase-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #0F0037;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.purchase-modal__close:hover {
    background: rgba(15, 0, 55, 0.08);
}

.purchase-modal__body {
    display: block;
}
