html, body.ngp-monitor-body {
    margin: 0 !important;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.20), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #111827 46%, #020617 100%);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
}

.ngp-monitor-shell {
    min-height: 100vh;
    padding: 42px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.ngp-monitor-card {
    width: 100%;
    max-width: 760px;
    background: rgba(255,255,255,0.98);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.55);
}

.ngp-brand {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.ngp-brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(34,197,94,0.35);
    flex: 0 0 auto;
}

.ngp-brand h1 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    color: #0f172a;
}

.ngp-brand p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 16px;
}

.ngp-order-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 22px;
}

.ngp-order-box strong {
    font-size: 16px;
    color: #0f172a;
}

.ngp-order-box span {
    font-size: 22px;
    font-weight: 900;
    color: #16a34a;
}

.ngp-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.ngp-step {
    padding: 13px 10px;
    border-radius: 15px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
}

.ngp-step.ngp-done {
    background: #dcfce7;
    color: #166534;
}

.ngp-step.ngp-active {
    background: #dbeafe;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.ngp-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px;
    margin: 16px 0;
}

.ngp-panel h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f172a;
}

.ngp-panel p {
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}

.ngp-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.ngp-panel li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px;
    color: #334155;
    font-weight: 700;
}

.ngp-panel li:before {
    content: "✓ ";
    color: #16a34a;
    font-weight: 900;
}

.ngp-secure {
    background: linear-gradient(135deg, #ecfdf5, #f8fafc);
    border-color: #bbf7d0;
}

.ngp-primary-button {
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #0346c9 0%, #0f6fff 46%, #12b7ff 100%);
    color: #fff;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(15, 111, 255, 0.38), 0 0 0 1px rgba(255,255,255,0.18) inset;
    margin-top: 12px;
}

.ngp-primary-button:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}

.ngp-small {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    margin: 18px 0 0;
    font-weight: 800;
}

@media (max-width: 700px) {
    .ngp-monitor-shell {
        padding: 18px 12px;
        align-items: flex-start;
    }

    .ngp-monitor-card {
        padding: 22px;
        border-radius: 22px;
    }

    .ngp-brand {
        align-items: flex-start;
    }

    .ngp-brand h1 {
        font-size: 24px;
    }

    .ngp-progress {
        grid-template-columns: 1fr;
    }

    .ngp-panel ul {
        grid-template-columns: 1fr;
    }

    .ngp-order-box {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}


.ngp-payment-status {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
}

.ngp-payment-status.ngp-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.ngp-payment-status.ngp-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


.ngp-ready-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
    color: #14532d;
    margin-bottom: 6px;
}

.ngp-ready-copy {
    font-size: 14px;
    line-height: 1.45;
    color: #166534;
    font-weight: 800;
    margin-bottom: 12px;
}

.ngp-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    text-align: left;
}

.ngp-detail-grid > div {
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(34,197,94,0.22);
    border-radius: 12px;
    padding: 10px 12px;
    min-width: 0;
}

.ngp-detail-grid span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 950;
    margin-bottom: 3px;
}

.ngp-detail-grid strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
    overflow-wrap: anywhere;
}

@media (max-width: 700px) {
    .ngp-detail-grid {
        grid-template-columns: 1fr;
    }
}


.ngp-checkout-box {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 16px;
    margin: 10px 0;
}

.ngp-checkout-box strong {
    display: block;
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 8px;
}

.ngp-checkout-box p {
    margin: 8px 0;
    color: #475569;
    line-height: 1.45;
}

.ngp-checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 12px 0;
}

.ngp-checkout-grid span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 9px 10px;
    font-weight: 700;
    color: #334155;
}

.ngp-checkout-next {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    margin-top: 12px;
}

.ngp-checkout-next ol {
    margin: 8px 0 0 20px;
    padding: 0;
}

.ngp-checkout-safe {
    font-weight: 800;
    color: #166534 !important;
}

.ngp-estimate {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 900;
    text-align: center;
    margin: -4px 0 20px;
}

.ngp-monitoring {
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border-color: #bfdbfe;
}
/* Checkout cleanup + compact monitor layout */
.ngp-monitor-card-compact {
    max-width: 960px;
    padding: 28px;
}

.ngp-brand-compact {
    margin-bottom: 18px;
}

.ngp-brand-compact h1 {
    font-size: 27px;
}

.ngp-brand-compact p {
    font-size: 15px;
}

.ngp-order-box-compact {
    margin-bottom: 14px;
    padding: 15px 18px;
}

.ngp-estimate-compact {
    margin: 0 0 16px;
    padding: 10px 12px;
    font-size: 13px;
}

.ngp-progress-compact {
    margin-bottom: 16px;
}

.ngp-progress-compact .ngp-step {
    padding: 11px 8px;
    font-size: 12px;
}

.ngp-info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 14px;
}

.ngp-info-strip span {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 9px 10px;
    color: #334155;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.ngp-panel-compact {
    padding: 18px;
    margin: 12px 0;
}

.ngp-panel-compact h2 {
    font-size: 18px;
}

.ngp-panel-compact p {
    font-size: 14px;
    margin: 8px 0;
}

.ngp-panel-compact ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.ngp-panel-compact li {
    padding: 10px;
    font-size: 13px;
}
.ngp-ready-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
    color: #14532d;
    margin-bottom: 6px;
}

.ngp-ready-copy {
    font-size: 14px;
    line-height: 1.45;
    color: #166534;
    font-weight: 800;
    margin-bottom: 12px;
}

.ngp-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    text-align: left;
}

.ngp-detail-grid > div {
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(34,197,94,0.22);
    border-radius: 12px;
    padding: 10px 12px;
    min-width: 0;
}

.ngp-detail-grid span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 950;
    margin-bottom: 3px;
}

.ngp-detail-grid strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
    overflow-wrap: anywhere;
}

@media (max-width: 700px) {
    .ngp-detail-grid {
        grid-template-columns: 1fr;
    }
}


.ngp-checkout-box {
    padding: 14px 15px;
    font-size: 13px;
}

.ngp-checkout-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 7px;
}

.ngp-checkout-head strong {
    margin: 0;
    font-size: 15px;
}

.ngp-checkout-head span {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.ngp-checkout-lead {
    font-size: 13px;
    margin: 6px 0 10px !important;
}

.ngp-checkout-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 10px 0;
}

.ngp-checkout-grid-compact span {
    padding: 8px 9px;
    font-size: 12px;
    line-height: 1.25;
}

.ngp-checkout-safe {
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 0 !important;
}

@media (max-width: 700px) {
    .ngp-monitor-card-compact {
        padding: 20px;
    }

    .ngp-info-strip,
    .ngp-checkout-grid-compact,
    .ngp-panel-compact ul {
        grid-template-columns: 1fr;
    }

    .ngp-checkout-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Embedded branded checkout */
.ngp-embedded-checkout {
    margin-top: 18px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.ngp-embedded-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-bottom: 1px solid #dbeafe;
    color: #0f172a;
}

.ngp-embedded-head strong {
    font-size: 14px;
    font-weight: 900;
}

.ngp-embedded-head a {
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    color: #2563eb;
}

#ngp-checkout-frame {
    display: block;
    width: 100%;
    min-height: 760px;
    border: 0;
    background: #ffffff;
}

.ngp-frame-note {
    margin: 0;
    padding: 10px 14px 13px;
    font-size: 12px;
    line-height: 1.35;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 700px) {
    #ngp-checkout-frame {
        min-height: 760px;
    }

    .ngp-embedded-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

.ngp-payment-status.ngp-processing {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.ngp-payment-status.ngp-waiting {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.ngp-waiting-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.ngp-waiting-copy {
    font-size: 14px;
    line-height: 1.45;
    color: #1d4ed8;
    font-weight: 900;
    margin-bottom: 6px;
}

.ngp-waiting-subcopy {
    font-size: 12px;
    line-height: 1.45;
    color: #475569;
    font-weight: 800;
}

/* Payment monitor escape/change-method controls */
.ngp-payment-action-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(210px, .75fr);
    gap: 12px;
    align-items: stretch;
    margin: 16px 0 20px;
}
.ngp-secondary-button,
.ngp-muted-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 18px;
    font-weight: 900;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.15;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}
.ngp-secondary-button strong,
.ngp-muted-button strong,
.ngp-secondary-button small,
.ngp-muted-button small {
    display: block;
}
.ngp-secondary-button small,
.ngp-muted-button small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 850;
    opacity: .82;
}
.ngp-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255,255,255,.82);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.52);
    font-size: 18px;
    font-weight: 950;
}
.ngp-secondary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #0f6fff 0%, #0346c9 100%);
    border: 1px solid rgba(37, 99, 235, .45);
}
.ngp-muted-button {
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}
.ngp-secondary-button:hover,
.ngp-muted-button:hover,
.ngp-change-method-link:hover {
    filter: brightness(.985);
    text-decoration: none;
    transform: translateY(-1px);
}
.ngp-embedded-actions {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.ngp-embedded-actions a,
.ngp-change-method-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dbeafe;
    box-sizing: border-box;
    font-weight: 900;
}
.ngp-change-method-link {
    color: #1d4ed8 !important;
}
@media (max-width: 700px) {
    .ngp-payment-action-strip {
        grid-template-columns: 1fr;
    }
    .ngp-secondary-button,
    .ngp-muted-button {
        width: 100%;
    }
    .ngp-embedded-actions {
        width: 100%;
        justify-content: stretch;
    }
    .ngp-embedded-actions a {
        flex: 1 1 auto;
    }
}

/* NextGate Demo Store */
.ngp-demo-store { max-width: 1180px; margin: 0 auto; padding: 28px 18px 44px; font-family: inherit; color: #0f172a; }
.ngp-demo-store-hero { border-radius: 30px; padding: 42px; background: radial-gradient(circle at top left, rgba(99,102,241,.18), transparent 38%), linear-gradient(135deg, #111827, #1e293b); color: #fff; box-shadow: 0 24px 70px rgba(15,23,42,.24); }
.ngp-demo-store-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.ngp-demo-store-hero h1 { color: #fff; margin: 18px 0 10px; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; }
.ngp-demo-store-hero p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 820px; margin: 0 0 22px; line-height: 1.6; }
.ngp-demo-store-trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ngp-demo-store-trust-row span { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); color: #fff; font-weight: 700; font-size: 13px; }
.ngp-demo-store-shell { display: grid; grid-template-columns: 300px 1fr; gap: 22px; margin-top: 24px; }
.ngp-demo-store-sidebar { display: grid; gap: 16px; align-content: start; }
.ngp-demo-merchant-card, .ngp-demo-feature-list, .ngp-demo-product-card, .ngp-demo-store-footer-note { border: 1px solid #e2e8f0; border-radius: 24px; background: #fff; box-shadow: 0 16px 38px rgba(15,23,42,.07); }
.ngp-demo-merchant-card { padding: 22px; }
.ngp-demo-merchant-icon { width: 48px; height: 48px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: #eef2ff; font-size: 24px; margin-bottom: 12px; }
.ngp-demo-merchant-card strong { display: block; font-size: 18px; margin-bottom: 8px; }
.ngp-demo-merchant-card p { color: #64748b; margin: 0; line-height: 1.55; }
.ngp-demo-feature-list { padding: 20px; display: grid; gap: 9px; }
.ngp-demo-feature-list strong { margin-bottom: 3px; }
.ngp-demo-feature-list span { padding: 10px 12px; border-radius: 14px; background: #f8fafc; color: #334155; font-weight: 700; }
.ngp-demo-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ngp-demo-product-card { overflow: hidden; display: flex; flex-direction: column; }
.ngp-demo-product-art { min-height: 150px; display: flex; align-items: center; justify-content: center; font-size: 58px; background: radial-gradient(circle at center, #eef2ff, #f8fafc); }
.ngp-demo-product-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ngp-demo-product-pill { align-self: flex-start; border-radius: 999px; background: #ecfeff; color: #155e75; padding: 6px 10px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.ngp-demo-product-card h2 { font-size: 21px; margin: 0; line-height: 1.2; }
.ngp-demo-product-card p { color: #64748b; margin: 0; line-height: 1.5; }
.ngp-demo-product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; }
.ngp-demo-product-footer strong { font-size: 24px; }
.ngp-demo-buy-button { display: inline-flex; align-items: center; justify-content: center; padding: 11px 14px; border-radius: 14px; background: #4f46e5; color: #fff !important; text-decoration: none; font-weight: 800; box-shadow: 0 12px 26px rgba(79,70,229,.25); }
.ngp-demo-missing-product { color: #92400e; font-weight: 700; font-size: 12px; }
.ngp-demo-store-footer-note { margin-top: 22px; padding: 16px 18px; color: #475569; background: #f8fafc; }
.ngp-demo-store-disabled { max-width: 760px; margin: 24px auto; padding: 18px; border-radius: 16px; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; }
@media (max-width: 1000px) {
    .ngp-demo-store-shell { grid-template-columns: 1fr; }
    .ngp-demo-product-grid { grid-template-columns: 1fr; }
    .ngp-demo-store-hero { padding: 30px 22px; }
}

/* NextGate public demo showcase storefront */
.ngp-demo-site { max-width: 1240px; margin: 0 auto; padding: 22px 18px 52px; color: #0f172a; font-family: inherit; }
.ngp-demo-site * { box-sizing: border-box; }
.ngp-demo-site-nav { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding: 14px 16px; border: 1px solid rgba(226,232,240,.9); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 18px 45px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.ngp-demo-site-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #0f172a; }
.ngp-demo-site-logo span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(135deg, #0f172a, #4f46e5); color: #fff; font-weight: 900; }
.ngp-demo-site-logo strong { font-size: 16px; }
.ngp-demo-site-nav nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.ngp-demo-site-nav nav a, .ngp-demo-nav-cart { color: #334155; text-decoration: none; font-weight: 800; padding: 10px 12px; border-radius: 999px; }
.ngp-demo-site-nav nav a:hover, .ngp-demo-nav-cart:hover { background: #f1f5f9; color: #0f172a; }
.ngp-demo-nav-cart { background: #eef2ff; color: #3730a3 !important; }
.ngp-demo-hero { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); gap: 22px; align-items: stretch; border-radius: 34px; padding: clamp(28px, 5vw, 56px); background: radial-gradient(circle at 15% 20%, rgba(99,102,241,.28), transparent 30%), radial-gradient(circle at 85% 10%, rgba(14,165,233,.18), transparent 34%), linear-gradient(135deg, #0f172a 0%, #1e293b 58%, #312e81 100%); color: #fff; box-shadow: 0 32px 90px rgba(15,23,42,.28); overflow: hidden; }
.ngp-demo-hero-copy h1 { color: #fff; margin: 18px 0 14px; font-size: clamp(38px, 6vw, 72px); line-height: .96; letter-spacing: -.045em; }
.ngp-demo-hero-copy p { color: rgba(255,255,255,.8); max-width: 780px; margin: 0 0 22px; font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }
.ngp-demo-store-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 900; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.ngp-demo-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.ngp-demo-primary-cta, .ngp-demo-secondary-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 18px; border-radius: 16px; text-decoration: none; font-weight: 900; }
.ngp-demo-primary-cta { background: #fff; color: #111827 !important; box-shadow: 0 18px 38px rgba(255,255,255,.14); }
.ngp-demo-secondary-cta { background: rgba(255,255,255,.1); color: #fff !important; border: 1px solid rgba(255,255,255,.18); }
.ngp-demo-store-trust-row, .ngp-demo-category-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.ngp-demo-store-trust-row span { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); color: #fff; font-weight: 800; font-size: 13px; }
.ngp-demo-hero-card { display: grid; align-content: center; gap: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.1); padding: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.ngp-demo-hero-card-icon { width: 64px; height: 64px; border-radius: 22px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.14); font-size: 32px; }
.ngp-demo-hero-card strong { font-size: 24px; color: #fff; }
.ngp-demo-hero-card p { color: rgba(255,255,255,.78); margin: 0; line-height: 1.6; }
.ngp-demo-mini-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.ngp-demo-mini-metrics span { border-radius: 16px; padding: 12px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-weight: 800; font-size: 12px; }
.ngp-demo-mini-metrics b { display: block; color: #fff; font-size: 20px; }
.ngp-demo-category-strip { margin: 18px 0 28px; padding: 12px; border: 1px solid #e2e8f0; border-radius: 22px; background: #fff; box-shadow: 0 18px 44px rgba(15,23,42,.06); }
.ngp-demo-category-strip span { flex: 1; min-width: 150px; text-align: center; padding: 11px 12px; border-radius: 16px; background: #f8fafc; color: #334155; font-weight: 900; }
.ngp-demo-store-main { display: grid; gap: 26px; }
.ngp-demo-section-heading { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 18px; }
.ngp-demo-section-heading h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.035em; color: #0f172a; }
.ngp-demo-section-heading p { max-width: 430px; margin: 0; color: #64748b; line-height: 1.55; }
.ngp-demo-eyebrow { color: #4f46e5 !important; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 8px !important; }
.ngp-demo-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ngp-demo-product-card { border: 1px solid #e2e8f0; border-radius: 28px; background: #fff; box-shadow: 0 18px 44px rgba(15,23,42,.08); overflow: hidden; display: flex; flex-direction: column; min-height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.ngp-demo-product-card:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(15,23,42,.12); }
.ngp-demo-product-art { min-height: 170px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at center, #eef2ff, #f8fafc); }
.ngp-demo-product-art span { width: 92px; height: 92px; display: inline-flex; align-items: center; justify-content: center; border-radius: 30px; background: #fff; font-size: 48px; box-shadow: 0 18px 45px rgba(15,23,42,.1); }
.ngp-demo-product-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ngp-demo-product-pill { align-self: flex-start; border-radius: 999px; background: #ecfeff; color: #155e75; padding: 6px 10px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.ngp-demo-product-card h3, .ngp-demo-product-card h2 { font-size: 22px; margin: 0; line-height: 1.18; color: #0f172a; }
.ngp-demo-product-card p { color: #64748b; margin: 0; line-height: 1.55; }
.ngp-demo-product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; }
.ngp-demo-product-footer strong { font-size: 26px; color: #0f172a; }
.ngp-demo-buy-button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 15px; border-radius: 15px; background: #4f46e5; color: #fff !important; text-decoration: none; font-weight: 900; box-shadow: 0 14px 28px rgba(79,70,229,.25); }
.ngp-demo-missing-product { color: #92400e; font-weight: 800; font-size: 12px; }
.ngp-demo-checkout-story { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ngp-demo-story-card { border: 1px solid #e2e8f0; border-radius: 24px; background: linear-gradient(180deg, #fff, #f8fafc); padding: 20px; box-shadow: 0 16px 38px rgba(15,23,42,.06); }
.ngp-demo-story-card span { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: #eef2ff; color: #3730a3; font-weight: 900; margin-bottom: 14px; }
.ngp-demo-story-card strong { display: block; font-size: 16px; margin-bottom: 8px; color: #0f172a; }
.ngp-demo-story-card p { color: #64748b; line-height: 1.5; margin: 0; }
.ngp-demo-site-footer { margin-top: 26px; display: flex; justify-content: space-between; gap: 18px; align-items: center; border-radius: 26px; padding: 22px; background: #0f172a; color: #fff; }
.ngp-demo-site-footer p { color: rgba(255,255,255,.72); margin: 6px 0 0; }
.ngp-demo-site-footer a { color: #0f172a !important; background: #fff; text-decoration: none; border-radius: 14px; padding: 12px 16px; font-weight: 900; white-space: nowrap; }
.ngp-demo-style-boutique .ngp-demo-hero { background: radial-gradient(circle at 15% 20%, rgba(244,114,182,.22), transparent 30%), linear-gradient(135deg, #3b0764, #831843); }
.ngp-demo-style-premium .ngp-demo-hero { background: radial-gradient(circle at 15% 20%, rgba(251,191,36,.18), transparent 30%), linear-gradient(135deg, #111827, #292524); }
.ngp-demo-store-disabled { max-width: 760px; margin: 24px auto; padding: 18px; border-radius: 16px; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; }
@media (max-width: 980px) {
    .ngp-demo-site-nav { position: relative; align-items: flex-start; flex-direction: column; }
    .ngp-demo-hero { grid-template-columns: 1fr; }
    .ngp-demo-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ngp-demo-checkout-story { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ngp-demo-section-heading { display: grid; }
}
@media (max-width: 640px) {
    .ngp-demo-site { padding: 14px 10px 36px; }
    .ngp-demo-hero { border-radius: 24px; padding: 26px 18px; }
    .ngp-demo-product-grid, .ngp-demo-checkout-story { grid-template-columns: 1fr; }
    .ngp-demo-mini-metrics { grid-template-columns: 1fr; }
    .ngp-demo-site-footer { align-items: flex-start; flex-direction: column; }
}

/* Buyer-facing checkout payment badges */
.ngp-brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin: 10px 0 12px;
}

.ngp-pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 9px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: #0f172a;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ngp-pay-logo-visa {
    color: #1e3a8a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ngp-pay-logo-mastercard {
    color: #7c2d12;
}

.ngp-pay-logo-wallet {
    color: #111827;
}

.ngp-pay-logo-cashapp {
    color: #047857;
}

.ngp-pay-logo-paypal {
    color: #1d4ed8;
}

.ngp-pay-logo-trust {
    color: #0369a1;
}

.ngp-pay-logo-coinbase {
    color: #2563eb;
}

.ngp-card-checkout-box .ngp-checkout-lead,
.ngp-crypto-checkout-box .ngp-checkout-lead {
    color: #334155;
}

@media (max-width: 700px) {
    .ngp-brand-strip {
        gap: 6px;
    }

    .ngp-pay-logo {
        flex: 1 1 calc(50% - 6px);
        min-width: 118px;
    }
}

/* Demo store polish: stronger sales-demo presentation without changing checkout logic */
.ngp-demo-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 18px;
    padding: 12px 16px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    color: #334155;
    text-align: center;
}

.ngp-demo-announcement span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ngp-demo-announcement strong {
    color: #0f172a;
}

.ngp-demo-announcement a {
    color: #3730a3;
    font-weight: 900;
    text-decoration: none;
}

.ngp-demo-checkout-preview {
    display: grid;
    gap: 8px;
}

.ngp-demo-checkout-preview div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
}

.ngp-demo-checkout-preview span {
    color: rgba(255, 255, 255, .74);
    font-weight: 800;
    font-size: 12px;
}

.ngp-demo-checkout-preview strong {
    color: #fff;
    font-size: 14px;
    text-align: right;
}

.ngp-demo-payment-showcase {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 20px;
    align-items: center;
    margin: 0 0 28px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #eef2ff 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.ngp-demo-payment-showcase h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3.2vw, 38px);
    letter-spacing: -.035em;
    line-height: 1.05;
}

.ngp-demo-payment-chip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.ngp-demo-payment-chip-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 13px;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.ngp-demo-product-card:focus-within {
    outline: 3px solid rgba(79, 70, 229, .22);
    outline-offset: 3px;
}

@media (max-width: 780px) {
    .ngp-demo-announcement {
        border-radius: 22px;
        justify-content: flex-start;
        text-align: left;
    }

    .ngp-demo-payment-showcase {
        grid-template-columns: 1fr;
    }

    .ngp-demo-payment-chip-row {
        justify-content: flex-start;
    }
}


.ngp-crypto-lane-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.ngp-crypto-lane-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    border: 1px solid #dbeafe;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 18px;
    padding: 14px;
    position: relative;
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease, transform .16s ease;
    min-height: 132px;
}

.ngp-crypto-lane-card:hover,
.ngp-crypto-lane-card:focus-within {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .12);
    transform: translateY(-1px);
}

.ngp-crypto-lane-card:has(input[type="radio"]:checked) {
    border-color: #16a34a;
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
    box-shadow: 0 16px 34px rgba(22, 163, 74, .16);
}

.ngp-crypto-lane-card input[type="radio"] {
    position: absolute;
    top: 12px;
    right: 12px;
}

.ngp-crypto-lane-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 21px;
    font-weight: 950;
    box-shadow: inset 0 0 0 1px #dbeafe;
}

.ngp-crypto-lane-card:has(input[type="radio"]:checked) .ngp-crypto-lane-icon {
    background: #dcfce7;
    color: #166534;
    box-shadow: inset 0 0 0 1px #bbf7d0;
}

.ngp-crypto-lane-body {
    min-width: 0;
    padding-right: 22px;
}

.ngp-crypto-lane-main {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 6px;
}

.ngp-crypto-lane-main strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.25;
}

.ngp-crypto-lane-main em {
    font-style: normal;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 8px;
    line-height: 1;
}

.ngp-crypto-lane-copy {
    display: block;
    color: #334155;
    font-size: 12px;
    line-height: 1.38;
    font-weight: 800;
}

.ngp-crypto-lane-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.ngp-crypto-lane-meta span {
    display: inline-flex;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 999px;
    padding: 4px 8px;
    color: #475569;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 850;
}

.ngp-smart-payment-note,
.ngp-selected-lane-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 14px;
    margin: 14px 0;
}

.ngp-smart-payment-note {
    display: grid;
    gap: 5px;
}

.ngp-smart-payment-note strong {
    margin: 0;
    font-size: 14px;
    color: #0f172a;
}

.ngp-smart-payment-note span {
    color: #475569;
    line-height: 1.45;
    font-size: 13px;
    font-weight: 750;
}

.ngp-selected-lane-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #166534;
    font-weight: 950;
    font-size: 20px;
    flex: 0 0 auto;
}

.ngp-selected-lane-card strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    margin: 0 0 3px;
}

.ngp-selected-lane-card small {
    color: #475569;
    line-height: 1.4;
    font-weight: 800;
}

@media (max-width: 640px) {
    .ngp-crypto-lane-card {
        padding-right: 10px;
    }
}
