
/* =========================================================
   Fake Payment / Checkout
========================================================= */
.fake-payment-body {
    min-height: 100vh;
    background: #f6f8fa;
    color: #1a1f36;
}

.fake-checkout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.fake-checkout-left {
    padding: 70px;
    background: #f7f3ef;
    border-right: 1px solid #ddd;
}

.fake-checkout-left h1 {
    margin: 0 0 10px;
    font-size: 28px;
}

.fake-checkout-left > p,
.payment-summary small,
.demo-note {
    color: #697386;
}

.payment-summary {
    margin-top: 80px;
}

.payment-summary h2 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
}

.payment-summary p {
    font-size: 18px;
    margin-bottom: 8px;
}

.fake-checkout-right {
    max-width: 520px;
    width: 100%;
    padding: 70px 40px;
}

.fake-checkout-right h2 {
    margin: 0 0 30px;
}

.fake-checkout-right label {
    display: block;
    margin: 18px 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #3c4257;
}

.fake-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fake-row input:first-child {
    border-radius: 8px 0 0 8px;
}

.fake-row input:last-child {
    border-radius: 0 8px 8px 0;
    border-left: 0;
}

.fake-pay-button {
    display: block;
    margin-top: 28px;
    border-radius: 10px;
    background: #635bff;
    color: white;
}

.demo-note {
    margin-top: 18px;
    font-size: 13px;
    text-align: center;
}

.wallet-button {
    display: block;
    margin-bottom: 12px;
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.apple-wallet {
    background: #000;
    color: white;
}

.google-wallet {
    background: white;
    color: #202124;
    border: 1px solid #d8dee4;
}

.checkout-divider {
    margin: 24px 0;
    text-align: center;
    border-top: 1px solid #d8dee4;
}

.checkout-divider span {
    position: relative;
    top: -10px;
    padding: 0 12px;
    background: #f6f8fa;
    color: #697386;
    font-size: 13px;
}

/* =========================================================
   QR Summary / Fake QR
========================================================= */
.qr-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--rose);
    color: var(--deep-brown);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.qr-summary {
    margin-bottom: 22px;
}

.qr-summary strong {
    display: block;
    font-size: 48px;
}

.qr-summary p,
.qr-summary small,
.qr-help {
    color: #73554a;
}

.fake-qr {
    width: 230px;
    height: 230px;
    margin: 0 auto 20px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(173, 122, 99, 0.18);
}

.fake-qr div {
    background: var(--espresso);
    border-radius: 5px;
}

.fake-qr div:nth-child(2),
.fake-qr div:nth-child(5),
.fake-qr div:nth-child(7),
.fake-qr div:nth-child(13),
.fake-qr div:nth-child(16),
.fake-qr div:nth-child(19),
.fake-qr div:nth-child(24) {
    background: transparent;
}

/* =========================================================
   Terminal Payment Screen
========================================================= */
.terminal-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at center, rgba(213, 182, 95, 0.2), transparent 35%),
        #15100e;
}

.phone-frame {
    width: min(390px, 92vw);
    min-height: 760px;
    padding: 18px;
    border-radius: 54px;
    background: #050505;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.phone-speaker {
    width: 110px;
    height: 8px;
    margin: 8px auto 18px;
    border-radius: 999px;
    background: #222;
}

.terminal-screen {
    min-height: 690px;
    padding: 28px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--cream), var(--nude));
    text-align: center;
}

.terminal-screen h1 {
    margin: 20px 0 8px;
    font-family: Georgia, serif;
    font-size: 48px;
    color: var(--deep-brown);
}

.tap-card {
    margin: 34px 0;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 253, 251, 0.85);
}

.tap-card span,
.tap-card small {
    display: block;
    color: #73554a;
}

.tap-card strong {
    display: block;
    margin: 8px 0;
    font-size: 54px;
}

.tap-circle {
    width: 190px;
    height: 190px;
    margin: 30px auto;
    border-radius: 50%;
    border: 3px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-brown);
    font-weight: 900;
}