/* ── Order review (checkout) ── */
#screen-checkout { background: var(--bg); }

.success-wrap { padding: 24px 20px 100px; }
.suc-title    { font-size: 20px; font-weight: 700; margin-bottom: 16px; text-align: center; }

.order-summary-block,
.order-delivery-block {
    background: var(--sec);
    border-radius: var(--r);
    padding: 0 16px;
    margin-bottom: 12px;
}
.order-delivery-block { margin-bottom: 24px; }

.order-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--brd);
    font-size: 14px;
}
.order-item-name  { flex: 1; color: var(--text); }
.order-item-qty   { color: var(--hint); white-space: nowrap; }
.order-item-price { font-weight: 600; white-space: nowrap; }

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 16px;
}
.suc-total-inline { color: var(--btn); }

.delivery-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--brd);
}
.delivery-row:last-child { border-bottom: none; }
.dlv-label { color: var(--hint); }

/* ── Button spacing ── */
.co-cancel-btn { margin-top: 4px; margin-bottom: 10px; }
.pay-link      { margin-bottom: 10px; }

.pay-err-msg {
    color: var(--hint);
    font-size: 13px;
    text-align: center;
    margin: 4px 0 4px;
}
.pay-retry {
    display: block;
    color: var(--btn);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 8px;
}
.paid-badge { color: var(--success); font-weight: 700; font-size: 17px; margin-top: 16px; text-align: center; }

/* ── Done screen ── */
.done-wrap  { padding: 80px 24px 100px; text-align: center; }
.done-icon  { font-size: 72px; margin-bottom: 24px; }
.done-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.done-sub   { font-size: 15px; color: var(--hint); margin-bottom: 32px; line-height: 1.6; }

.iban-note {
    font-size: 14px;
    color: var(--hint);
    background: rgba(10, 132, 255, 0.08);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.5;
}
