
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --mint-bg:      #ecfdf5;
            --mint-soft:    #d1fae5;
            --mint-line:    #a7f3d0;
            --mint-dash:    #86efac;
            --accent:       #047857;
            --accent-mid:   #059669;
            --accent-light: #10b981;
            --accent-glow:  #6ee7b7;
            --slip:         #fffffe;
            --slip-2:       #f7fef9;
            --text:         #064e3b;
            --text-2:       #115e59;
            --text-3:       #6b8a84;
            --warn-bg:      #fffbeb;
            --warn-line:    #fde68a;
            --warn-text:    #92400e;
            --danger:       #ef4444;
            --success:      #059669;
            --r-slip:       18px;
            --r-sm:         10px;
            --r-xs:         8px;
            --shadow-slip:  0 2px 0 #d1fae5, 0 8px 28px rgba(4, 120, 87, .08);
            --ease:         cubic-bezier(.22, 1, .36, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            min-height: 100dvh;
            background: var(--mint-bg);
            color: var(--text);
            font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: radial-gradient(ellipse 80% 40% at 50% -5%, rgba(110, 231, 183, .35), transparent 55%);
            pointer-events: none;
            z-index: 0;
        }

        .hidden { display: none !important; }

        .ico {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ico svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ── Shell ── */
        .receiptShell {
            position: relative;
            z-index: 1;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 14px 14px calc(20px + env(safe-area-inset-bottom));
        }

        .slipWrap {
            width: 100%;
            max-width: 440px;
            animation: slipIn .5s var(--ease) both;
        }

        /* ── Header strip ── */
        .slipHeader {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
            padding: 0 2px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .brandMark {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 12px rgba(4, 120, 87, .28);
        }

        .brandMark .ico { width: 17px; height: 17px; }

        .brandName {
            font-size: 29px;
            font-weight: 800;
            font-style: italic;
            letter-spacing: -.065em;
            color: var(--accent);
            line-height: .92;
            transform: translateY(-1px);
        }

        .headerActions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .securePill {
            display: none;
            align-items: center;
            gap: 5px;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--slip);
            border: 1px dashed var(--mint-dash);
            color: var(--text-2);
            font-size: 11px;
            font-weight: 700;
        }

        .securePill .ico { width: 12px; height: 12px; color: var(--accent-mid); }

        .lang {
            display: inline-flex;
            padding: 2px;
            border-radius: 999px;
            background: var(--slip);
            border: 1px dashed var(--mint-dash);
        }

        .lang a {
            min-width: 34px;
            padding: 6px 9px;
            border-radius: 999px;
            color: var(--text-3);
            font-size: 11px;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            transition: all .2s var(--ease);
        }

        .lang a[aria-current="true"] {
            background: var(--accent);
            color: #fff;
        }

        /* ── Step chips ── */
        .stepChips {
            display: flex;
            gap: 6px;
            margin-bottom: 0;
            padding: 10px 12px;
            background: var(--slip);
            border: 1px dashed var(--mint-line);
            border-bottom: none;
            border-radius: var(--r-slip) var(--r-slip) 0 0;
        }

        .chip {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            padding: 8px 4px;
            border-radius: var(--r-xs);
            border: 1px dashed transparent;
            transition: all .25s var(--ease);
        }

        .chipDot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--mint-bg);
            color: var(--text-3);
            border: 1.5px dashed var(--mint-line);
            transition: all .25s var(--ease);
        }

        .chipDot .ico { width: 13px; height: 13px; }

        .chipLabel {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: var(--text-3);
            line-height: 1;
        }

        .chip.isActive {
            background: rgba(236, 253, 245, .7);
            border-color: var(--mint-dash);
        }

        .chip.isActive .chipDot {
            background: var(--accent);
            color: #fff;
            border-style: solid;
            border-color: var(--accent);
            box-shadow: 0 3px 10px rgba(4, 120, 87, .25);
        }

        .chip.isActive .chipLabel { color: var(--accent); }

        .chip.isDone .chipDot {
            background: var(--mint-soft);
            color: var(--accent);
            border-color: var(--mint-dash);
            border-style: solid;
        }

        .chip.isDone .chipLabel { color: var(--text-2); }

        /* ── Perforation divider ── */
        .perforation {
            position: relative;
            height: 14px;
            background: var(--slip);
            border-left: 1px dashed var(--mint-line);
            border-right: 1px dashed var(--mint-line);
            overflow: hidden;
        }

        .perforation::after {
            content: '';
            position: absolute;
            left: 8px;
            right: 8px;
            top: 50%;
            height: 0;
            border-top: 1px dashed var(--mint-dash);
            transform: translateY(-50%);
        }

        /* ── Receipt body ── */
        .slipBody {
            background: var(--slip);
            border: 1px dashed var(--mint-line);
            border-top: none;
            border-radius: 0 0 var(--r-slip) var(--r-slip);
            box-shadow: var(--shadow-slip);
            overflow: hidden;
        }

        .slipMeta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 12px 16px;
            border-bottom: 1px dashed var(--mint-soft);
            background: var(--slip-2);
        }

        .slipMetaTitle {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--text-3);
        }

        .slipMetaTitle strong {
            display: block;
            margin-top: 2px;
            font-size: 13px;
            font-weight: 800;
            text-transform: none;
            letter-spacing: -.01em;
            color: var(--text);
        }

        .slipPanel {
            padding: 16px;
        }

        .slipGreeting {
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px dashed var(--mint-soft);
        }

        .slipGreeting h2 {
            font-size: 17px;
            font-weight: 800;
            letter-spacing: -.02em;
            line-height: 1.25;
            color: var(--text);
        }

        .slipGreeting p {
            margin-top: 4px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-3);
            line-height: 1.45;
        }

        /* ── Fields ── */
        .fieldLabel {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 7px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--text-3);
        }

        .fieldLabel .ico {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 12px;
            height: 12px;
            color: var(--accent-mid);
        }

        .selectBox { position: relative; }

        .selectBox .icoLeft {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: var(--accent-mid);
            pointer-events: none;
        }

        .selectBox .icoRight {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            color: var(--text-3);
            pointer-events: none;
        }

        .bankSelect {
            width: 100%;
            min-height: 48px;
            padding: 0 38px 0 38px;
            border: 1px dashed var(--mint-line);
            border-radius: var(--r-sm);
            background: var(--slip-2);
            color: var(--text);
            font: inherit;
            font-size: 14px;
            font-weight: 700;
            appearance: none;
            cursor: pointer;
            transition: border-color .2s, box-shadow .2s;
        }

        .bankSelect:focus {
            outline: 0;
            border-color: var(--accent-light);
            border-style: solid;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
        }

        .amountLine {
            margin-top: 12px;
            padding: 11px 12px;
            border-radius: var(--r-sm);
            border: 1px dashed var(--mint-dash);
            background: var(--mint-bg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .amountLine small {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--text-3);
        }

        .amountLine strong {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -.03em;
            color: var(--accent);
            font-variant-numeric: tabular-nums;
        }

        .errorBox {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 10px;
            padding: 10px 12px;
            border-radius: var(--r-xs);
            background: #fef2f2;
            border: 1px dashed #fecaca;
            color: var(--danger);
            font-size: 12px;
            font-weight: 600;
        }

        .errorBox .ico { width: 16px; height: 16px; margin-top: 1px; }

        /* ── Account step: timer + amount + details ── */
        .accountMeta {
            display: grid;
            grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
            gap: 10px;
            margin-bottom: 14px;
            align-items: stretch;
        }

        .accountMeta .timerRow {
            margin-bottom: 0;
            padding: 10px;
            gap: 8px;
        }

        .accountMeta .timerOrb {
            width: 44px;
            height: 44px;
        }

        .accountMeta .timerMeta .statLabel {
            font-size: 9px;
            letter-spacing: .05em;
        }

        .accountMeta .timerStatus {
            font-size: 10px;
            line-height: 1.35;
        }

        .amountStat {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            text-align: right;
            padding: 14px 16px;
            border-radius: var(--r-sm);
            background: linear-gradient(135deg, var(--accent), var(--accent-mid));
            border: 1px solid var(--accent-light);
            color: #fff;
        }

        .amountStatLabel {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: rgba(255, 255, 255, .7);
        }

        .amountStatValue {
            margin-top: 4px;
            font-size: clamp(22px, 5.5vw, 28px);
            font-weight: 800;
            letter-spacing: -.03em;
            font-variant-numeric: tabular-nums;
            color: #fff;
            line-height: 1.05;
        }

        .timerRow {
            --timer-progress: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            padding: 12px;
            border-radius: var(--r-sm);
            border: 1px dashed var(--mint-dash);
            background: var(--mint-bg);
        }

        .timerOrb {
            position: relative;
            width: 52px;
            height: 52px;
            flex-shrink: 0;
        }

        .timerOrbAura {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16, 185, 129, .25) 0%, transparent 68%);
            opacity: calc(.3 + (1 - var(--timer-progress)) * .35);
            transition: opacity 1s linear;
            pointer-events: none;
        }

        .timerOrbRing {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px dashed rgba(4, 120, 87, .16);
            animation: timerOrbit 16s linear infinite;
            pointer-events: none;
        }

        .timerOrb svg {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .timerOrb circle {
            fill: none;
            stroke-width: 3.5;
        }

        .timerOrb .track { stroke: rgba(4, 120, 87, .1); }

        .timerOrb .arc {
            stroke: url(#timerArcGradient);
            stroke-linecap: round;
            transition: stroke-dashoffset 1s linear, stroke .35s ease;
        }

        .timerOrbHead {
            stroke: #fff;
            stroke-width: 2.5;
            filter: drop-shadow(0 0 3px rgba(110, 231, 183, .7));
            transition: stroke-dashoffset 1s linear, opacity .35s ease;
        }

        .timerOrbTime {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: -.04em;
            font-variant-numeric: tabular-nums;
            color: var(--accent);
            transition: color .35s ease;
        }

        .timerOrbExpiredIco {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: none;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
        }

        .timerOrbExpiredIco .ico { width: 18px; height: 18px; }

        .timerMeta { min-width: 0; flex: 1; }

        .timerMeta .statLabel {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: var(--text-3);
        }

        .timerMeta .statLabel .ico { width: 12px; height: 12px; }

        .timerStatus {
            display: block;
            margin-top: 3px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-3);
            line-height: 1.35;
            transition: color .35s ease;
        }

        .timerRow.isLow .timerOrbAura {
            background: radial-gradient(circle, rgba(245, 158, 11, .25) 0%, transparent 68%);
            animation: timerDrainPulse 1.8s ease-in-out infinite;
        }

        .timerRow.isLow .timerOrb .arc { stroke: url(#timerArcLow); }
        .timerRow.isLow .timerStatus { color: #b45309; }

        .timerRow.isUrgent .timerOrbAura {
            background: radial-gradient(circle, rgba(239, 68, 68, .28) 0%, transparent 68%);
            animation: timerDrainPulse 1s ease-in-out infinite;
        }

        .timerRow.isUrgent .timerOrbRing {
            border-color: rgba(239, 68, 68, .24);
            animation-duration: 6s;
        }

        .timerRow.isUrgent .timerOrb .arc { stroke: url(#timerArcUrgent); }
        .timerRow.isUrgent .timerOrbTime { color: #b91c1c; }
        .timerRow.isUrgent .timerStatus { color: #dc2626; font-weight: 700; }

        .timerRow.isExpired {
            background: #f8fafc;
            border-color: rgba(148, 163, 184, .28);
        }

        .timerRow.isExpired .timerOrbAura {
            animation: none;
            opacity: .22;
            background: radial-gradient(circle, rgba(148, 163, 184, .2) 0%, transparent 68%);
        }

        .timerRow.isExpired .timerOrbRing { animation: none; border-color: rgba(148, 163, 184, .22); }
        .timerRow.isExpired .timerOrb .arc { stroke: rgba(148, 163, 184, .26); opacity: .65; }
        .timerRow.isExpired .timerOrbTime { display: none; }
        .timerRow.isExpired .timerOrbExpiredIco { display: flex; }
        .timerRow.isExpired .timerStatus { color: #64748b; }

        @keyframes timerOrbit { to { transform: rotate(360deg); } }

        @keyframes timerDrainPulse {
            0%, 100% { transform: scale(1); opacity: .5; }
            50%      { transform: scale(1.06); opacity: 1; }
        }

        /* ── Detail lines (receipt rows) ── */
        .detailLine {
            padding: 11px 0;
            border-bottom: 1px dashed var(--mint-soft);
        }

        .detailLine:last-of-type { border-bottom: none; }

        .detailRow {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 8px;
            align-items: center;
            margin-top: 5px;
        }

        .detailValue {
            flex: 1;
            min-width: 0;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.4;
            overflow-wrap: anywhere;
            color: var(--text);
        }

        .detailValue[data-copy-value] {
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .detailValue.isIban {
            font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
            letter-spacing: .04em;
            color: var(--accent);
        }

        .copyBtn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            padding: 0;
            border: 1px dashed var(--mint-dash);
            border-radius: var(--r-xs);
            background: var(--slip);
            color: var(--accent);
            font: inherit;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
            transition: all .18s var(--ease);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .copyBtn .ico {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 13px;
            height: 13px;
        }

        .copyBtn .copyLabel { display: none; }

        .copyBtn:hover {
            background: var(--accent);
            color: #fff;
            border-style: solid;
            border-color: var(--accent);
        }

        .copyBtn.isCopied {
            background: var(--accent);
            border-color: var(--accent);
            border-style: solid;
            color: #fff;
        }

        .copyBtn.isCopied::after {
            content: attr(data-copied-label);
            position: absolute;
            right: 0;
            bottom: calc(100% + 7px);
            z-index: 5;
            padding: 5px 8px;
            border-radius: 6px;
            background: var(--text);
            box-shadow: 0 5px 14px rgba(15, 23, 42, .18);
            color: var(--slip);
            font-size: 10px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
            pointer-events: none;
        }

        .notice {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
            padding: 11px 12px;
            border-radius: var(--r-sm);
            background: var(--warn-bg);
            border: 1px dashed var(--warn-line);
            color: var(--warn-text);
            font-size: 12px;
            font-weight: 600;
            line-height: 1.45;
        }

        .notice .ico {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        /* ── CTA ── */
        .cta {
            margin-top: 16px;
            min-height: 50px;
            width: 100%;
            border: 0;
            border-radius: var(--r-sm);
            background: var(--accent);
            color: #fff;
            font: inherit;
            font-size: 15px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(4, 120, 87, .28);
            transition: transform .18s var(--ease), box-shadow .18s var(--ease), opacity .18s;
            letter-spacing: .01em;
        }

        .cta .ico { width: 18px; height: 18px; }

        .cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(4, 120, 87, .34);
        }

        .cta:active { transform: translateY(0); }

        .cta.isLoading {
            pointer-events: none;
            opacity: .85;
        }

        /* ── Confirmation ── */
        .successPanel {
            text-align: center;
            padding: 32px 20px 24px;
        }

        .successStamp {
            position: relative;
            width: 72px;
            height: 72px;
            margin: 0 auto;
            border-radius: 50%;
            background: var(--mint-soft);
            border: 2px dashed var(--accent-light);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: stampPop .55s var(--ease) both;
        }

        .successStamp .ico { width: 34px; height: 34px; stroke-width: 2.5; }

        .successPanel h2 {
            margin-top: 18px;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -.025em;
            line-height: 1.2;
            color: var(--text);
        }

        .successPanel > p {
            margin: 8px auto 0;
            max-width: 32ch;
            color: var(--text-3);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.5;
        }

        .redirectBar {
            margin: 20px auto 0;
            max-width: 240px;
        }

        .redirectBar small {
            display: block;
            margin-bottom: 6px;
            color: var(--text-3);
            font-size: 11px;
            font-weight: 600;
        }

        .redirectTrack {
            height: 3px;
            border-radius: 999px;
            background: var(--mint-soft);
            overflow: hidden;
        }

        .redirectFill {
            height: 100%;
            width: 0;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--accent-mid), var(--accent-light));
            animation: redirectProgress 3s linear forwards;
        }

        .returnBtn {
            margin: 18px auto 0;
            max-width: 280px;
        }

        /* ── Footer ── */
        .slipFooter {
            margin-top: 14px;
            padding: 10px 4px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            color: var(--text-3);
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .trustItem {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .trustItem .ico { width: 12px; height: 12px; color: var(--accent-mid); }

        .barcode {
            margin-top: 10px;
            height: 28px;
            background:
                repeating-linear-gradient(
                    90deg,
                    var(--accent) 0,
                    var(--accent) 2px,
                    transparent 2px,
                    transparent 5px,
                    var(--text-3) 5px,
                    var(--text-3) 6px,
                    transparent 6px,
                    transparent 10px
                );
            opacity: .35;
            border-radius: 2px;
        }

        /* ── Sticky CTA ── */
        .stickyCta {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 50;
            padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
            background: rgba(236, 253, 245, .92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px dashed var(--mint-dash);
            box-shadow: 0 -6px 24px rgba(4, 120, 87, .08);
        }

        .stickyCta .cta { margin: 0; }

        /* Account step: tighter vertical layout */
        [data-bank-transfer-checkout][data-step="account"] .receiptShell {
            padding-top: 10px;
            padding-bottom: calc(10px + env(safe-area-inset-bottom));
        }

        [data-bank-transfer-checkout][data-step="account"] .slipHeader { margin-bottom: 6px; }

        [data-bank-transfer-checkout][data-step="account"] .stepChips { padding: 5px 8px; }

        [data-bank-transfer-checkout][data-step="account"] .chip {
            padding: 4px 2px;
            gap: 3px;
        }

        [data-bank-transfer-checkout][data-step="account"] .chipDot {
            width: 24px;
            height: 24px;
        }

        [data-bank-transfer-checkout][data-step="account"] .perforation { height: 1px; }

        [data-bank-transfer-checkout][data-step="account"] .slipMeta { padding: 8px 18px; }

        [data-bank-transfer-checkout][data-step="account"] .slipPanel { padding: 10px 18px 12px; }

        [data-bank-transfer-checkout][data-step="account"] .accountMeta {
            gap: 8px;
            margin-bottom: 8px;
        }

        [data-bank-transfer-checkout][data-step="account"] .accountMeta .timerRow {
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-bottom: 0;
            padding: 8px;
        }

        [data-bank-transfer-checkout][data-step="account"] .amountStat { padding: 12px; }

        [data-bank-transfer-checkout][data-step="account"] .amountStatValue {
            font-size: clamp(20px, 5vw, 24px);
        }

        [data-bank-transfer-checkout][data-step="account"] .accountMeta .timerOrb {
            width: 48px;
            height: 48px;
        }

        [data-bank-transfer-checkout][data-step="account"] .detailLine { padding: 6px 0; }

        [data-bank-transfer-checkout][data-step="account"] .fieldLabel { margin-bottom: 3px; }

        [data-bank-transfer-checkout][data-step="account"] .detailRow {
            margin-top: 3px;
            gap: 6px;
        }

        [data-bank-transfer-checkout][data-step="account"] .notice {
            margin-top: 6px;
            padding: 8px 10px;
            gap: 8px;
            font-size: 11px;
            line-height: 1.35;
        }

        [data-bank-transfer-checkout][data-step="account"] .cta {
            margin-top: 8px;
            min-height: 44px;
            font-size: 14px;
        }

        [data-bank-transfer-checkout][data-step="account"] .slipFooter { display: none; }

        /* ── Animations ── */
        @keyframes slipIn {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes stampPop {
            0%   { opacity: 0; transform: scale(.6) rotate(-8deg); }
            70%  { opacity: 1; transform: scale(1.05) rotate(2deg); }
            100% { opacity: 1; transform: scale(1) rotate(0); }
        }

        @keyframes redirectProgress {
            from { width: 0; }
            to   { width: 100%; }
        }

        /* ── Responsive ── */
        @media (min-width: 480px) {
            .receiptShell { padding: 20px 20px calc(24px + env(safe-area-inset-bottom)); }
            .securePill { display: inline-flex; }
            .slipWrap { max-width: 460px; }
        }

        @media (max-width: 819px) {
            .hasStickyCta .receiptShell {
                padding-bottom: calc(76px + env(safe-area-inset-bottom));
            }

            .hasStickyCta .stickyCta { display: block; }

            .hasStickyCta .slipPanel .cta:not(.returnBtn) { display: none; }
        }

        @media (max-width: 480px) {
            .accountMeta .timerMeta { display: none; }

            .accountMeta .timerRow {
                justify-content: center;
                align-items: center;
            }

            .amountStatValue { font-size: clamp(18px, 4.5vw, 22px); }
        }

        @media (max-width: 380px) {
            .chipLabel { font-size: 8px; }
            .chipDot { width: 24px; height: 24px; }
        }
    