.pp-rush-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pp-rush-modal.is-open { display: flex; }
.pp-rush-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.pp-rush-modal__dialog {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    box-sizing: border-box;
    background: #fff;
    color: #1d2327;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.pp-rush-modal__dialog h2 { margin: 0 0 12px; }
.pp-rush-modal__fee {
    margin: 18px 0;
    padding: 14px 16px;
    background: #f6f7f7;
    border-left: 4px solid #d63638;
}

.pp-rush-confirm-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 16px 0;
    line-height: 1.45;
    cursor: pointer;
}

.pp-rush-confirm-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
}

.pp-rush-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 22px;
}

.pp-rush-modal__error {
    min-height: 1.4em;
    margin: 12px 0 0;
    color: #b32d2e;
    font-weight: 600;
}

html.pp-rush-modal-open,
html.pp-rush-modal-open body { overflow: hidden; }

@media (max-width: 600px) {
    .pp-rush-modal { padding: 14px; }
    .pp-rush-modal__dialog { padding: 22px 18px; }
    .pp-rush-modal__actions { flex-direction: column-reverse; }
    .pp-rush-modal__actions .button { width: 100%; text-align: center; }
}
