/* ═══════════════════════════════════════════
   Arkade Wallet Design System
   Neo-bank dark mode with glassmorphism
   Fonts: Geist / Geist Mono (Arkade brand)
   ═══════════════════════════════════════════ */

/* ── Geist Font Faces ──────────────────────── */
@font-face { font-family: 'Geist'; font-weight: 300; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Light.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-weight: 400; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-weight: 500; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-weight: 600; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-weight: 700; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Bold.woff2') format('woff2'); }
@font-face { font-family: 'Geist Mono'; font-weight: 400; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Geist Mono'; font-weight: 500; font-style: normal; font-display: swap;
    src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Medium.woff2') format('woff2'); }

:root {
    /* Arkade brand */
    --arkade-purple: #391998;
    --arkade-purple-light: #7043f4;
    --arkade-green: #60b18a;
    --arkade-orange: #e69b39;
    --arkade-teal: #0087b4;
    --arkade-red: #e05252;

    /* Surfaces */
    --bg-primary: #101010;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --bg-input: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-tertiary: rgba(255, 255, 255, 0.35);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);

    /* Typography — Arkade brand fonts */
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
}

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

html, body, #app {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    height: 100%;
}

/* ── App Shell ──────────────────────────── */
.app-shell {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.app-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

/* ── Animated Mesh Gradient Hero ────────── */
.hero-gradient {
    position: relative;
    padding: 48px 20px 32px;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: -60%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(57, 25, 152, 0.55), transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(112, 67, 244, 0.35), transparent 60%),
        radial-gradient(ellipse 70% 50% at 60% 80%, rgba(96, 177, 138, 0.2), transparent 65%);
    animation: meshShift 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes meshShift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-5%, 3%) scale(1.05); }
    66% { transform: translate(3%, -5%) scale(0.98); }
    100% { transform: translate(-2%, 2%) scale(1.02); }
}

.hero-gradient > * { position: relative; z-index: 1; }

/* ── Ambient Zone ───────────────────────── */
.ambient-zone {
    position: relative;
}

.ambient-zone::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -20%;
    right: -20%;
    height: 200px;
    background:
        radial-gradient(ellipse 80% 100% at 30% 0%, rgba(57, 25, 152, 0.12), transparent 70%),
        radial-gradient(ellipse 60% 100% at 70% 0%, rgba(112, 67, 244, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.ambient-zone > * { position: relative; z-index: 1; }

/* ── Glass Card with Floating Orb ───────── */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease;
}

.glass-card:hover { background: var(--bg-card-hover); }

.glass-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 67, 244, 0.12), transparent 70%);
    top: -30px;
    right: -20px;
    pointer-events: none;
}

/* ── Balance ────────────────────────────── */
.balance-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1;
}

.balance-unit {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 6px;
}

/* ── Action Buttons (Circular) ──────────── */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
}

.action-btn-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.action-btn-circle:hover {
    background: rgba(112, 67, 244, 0.2);
    border-color: rgba(112, 67, 244, 0.3);
    transform: translateY(-2px);
}

.action-btn span {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── Bottom Navigation ──────────────────── */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    background: rgba(16, 16, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item.active, .nav-item:hover { color: var(--arkade-purple-light); }
.nav-item.active svg { stroke: var(--arkade-purple-light); }

/* ── Section Headers ────────────────────── */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
}

.section-link {
    font-size: 13px;
    color: var(--arkade-purple-light);
    text-decoration: none;
}

/* ── Card Row (Horizontal Scroll) ───────── */
.card-row {
    display: flex;
    gap: 12px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card-row::-webkit-scrollbar { display: none; }

.card-row > .glass-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

/* ── Transaction List ───────────────────── */
.tx-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.15s;
}

.tx-item:hover { background: rgba(255, 255, 255, 0.02); }

.tx-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.tx-icon.receive { background: rgba(96, 177, 138, 0.15); color: var(--arkade-green); }
.tx-icon.send { background: rgba(230, 155, 57, 0.15); color: var(--arkade-orange); }
.tx-icon.swap { background: rgba(0, 135, 180, 0.15); color: var(--arkade-teal); }

.tx-details { flex: 1; min-width: 0; }

.tx-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tx-meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.tx-amount {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-mono);
    text-align: right;
}

.tx-amount.positive { color: var(--arkade-green); }
.tx-amount.negative { color: var(--text-primary); }

/* ── Form Elements ──────────────────────── */
.input-field {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.input-field:focus {
    border-color: rgba(112, 67, 244, 0.4);
}

.input-field::placeholder { color: var(--text-tertiary); }

.input-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--arkade-purple-light);
    color: white;
}

.btn-primary:hover {
    background: #8558ff;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.btn-full { width: 100%; }

.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Amount Input (Big Display) ─────────── */
.amount-display {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -2px;
    text-align: center;
    padding: 20px 0;
    font-family: var(--font-sans);
    color: var(--text-primary);
}

.amount-display.empty { color: var(--text-tertiary); }

/* ── Numpad ─────────────────────────────── */
.numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 20px;
}

.numpad-key {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.numpad-key:active { background: rgba(255, 255, 255, 0.1); }

.numpad-key.empty { background: transparent; cursor: default; }

/* ── QR Code Container ──────────────────── */
.qr-container {
    background: white;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 220px;
    height: 220px;
    box-shadow: 0 0 40px rgba(112, 67, 244, 0.15), 0 0 80px rgba(112, 67, 244, 0.05);
}

.qr-container svg {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* ── Address Display ────────────────────── */
.address-display {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
    word-break: break-all;
    padding: 12px 16px;
    background: var(--bg-input);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    line-height: 1.6;
}

/* ── Pill / Tag ─────────────────────────── */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-success { background: rgba(96, 177, 138, 0.15); color: var(--arkade-green); }
.pill-warning { background: rgba(230, 155, 57, 0.15); color: var(--arkade-orange); }
.pill-info { background: rgba(0, 135, 180, 0.15); color: var(--arkade-teal); }
.pill-danger { background: rgba(224, 82, 82, 0.15); color: var(--arkade-red); }

/* ── Page Headers ───────────────────────── */
.page-header {
    padding: 16px 20px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title {
    font-size: 20px;
    font-weight: 600;
}

.back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.back-btn:hover { background: rgba(255, 255, 255, 0.1); }

/* ── Method Cards (Receive) ─────────────── */
.method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.method-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: -20px;
    right: -10px;
    pointer-events: none;
    opacity: 0.5;
}

.method-card.ark::after { background: radial-gradient(circle, rgba(112, 67, 244, 0.15), transparent 70%); }
.method-card.onchain::after { background: radial-gradient(circle, rgba(230, 155, 57, 0.15), transparent 70%); }
.method-card.lightning::after { background: radial-gradient(circle, rgba(0, 135, 180, 0.15), transparent 70%); }

.method-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

.method-card.selected {
    border-color: var(--arkade-purple-light);
    background: rgba(112, 67, 244, 0.08);
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.method-icon.ark { background: rgba(112, 67, 244, 0.15); color: var(--arkade-purple-light); }
.method-icon.onchain { background: rgba(230, 155, 57, 0.15); color: var(--arkade-orange); }
.method-icon.lightning { background: rgba(0, 135, 180, 0.15); color: var(--arkade-teal); }

.method-info { flex: 1; }
.method-name { font-size: 14px; font-weight: 600; }
.method-desc { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ── Swap Progress ──────────────────────── */
.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    position: relative;
}

.progress-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 42px;
    bottom: 0;
    width: 1px;
    background: var(--border-subtle);
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.step-dot.done { background: rgba(96, 177, 138, 0.2); color: var(--arkade-green); }
.step-dot.active { background: rgba(112, 67, 244, 0.2); color: var(--arkade-purple-light); animation: pulse 2s infinite; }
.step-dot.pending { background: rgba(255, 255, 255, 0.06); color: var(--text-tertiary); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(112, 67, 244, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(112, 67, 244, 0); }
}

.step-info { flex: 1; }
.step-label { font-size: 14px; font-weight: 500; }
.step-meta { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ── Empty State ────────────────────────── */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state p { color: var(--text-secondary); font-size: 14px; }
.empty-state p + p { font-size: 12px; margin-top: 4px; }

/* ── Utility Classes ────────────────────── */
.mono { font-family: var(--font-mono); }
.text-secondary { color: var(--text-secondary); }
.text-green { color: var(--arkade-green); }
.text-purple { color: var(--arkade-purple-light); }
.text-orange { color: var(--arkade-orange); }
.text-center { text-align: center; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-12 { gap: 12px; }
.flex-col { display: flex; flex-direction: column; }

/* ── Loading Skeleton ───────────────────── */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── Grain Texture Overlay ──────────────── */
.app-shell::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ── Toast / Notification ───────────────── */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
    animation: slideDown 0.3s ease;
}

.toast-success { background: rgba(96, 177, 138, 0.9); color: white; }
.toast-error { background: rgba(224, 82, 82, 0.9); color: white; }

@keyframes slideDown {
    from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ── Balance Carousel ──────────────────────── */
.balance-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 0 20px;
}

.balance-carousel::-webkit-scrollbar { display: none; }

.balance-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    text-align: center;
    min-width: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--arkade-purple-light);
    width: 18px;
    border-radius: 3px;
}

/* ── Receive Method Tabs ───────────────────── */
.receive-tabs {
    display: flex;
    gap: 4px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 20px;
}

.receive-tab {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.receive-tab.active {
    background: rgba(112, 67, 244, 0.15);
    color: var(--arkade-purple-light);
}

/* ── Amount Input Inline ───────────────────── */
.amount-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 16px;
}

.amount-input-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    min-width: 0;
}

.amount-input-row input::placeholder { color: var(--text-tertiary); }

/* ── Mnemonic Word Grid ───────────────────── */
.mnemonic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mnemonic-word {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 10px;
}

.mnemonic-index {
    font-size: 10px;
    color: var(--text-tertiary);
    font-weight: 600;
    min-width: 16px;
}

.mnemonic-text {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-mono);
}

/* ── Amount Display Input ─────────────────── */
.amount-display-input {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -2px;
    text-align: center;
    padding: 20px 0;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    -moz-appearance: textfield;
}

.amount-display-input::-webkit-outer-spin-button,
.amount-display-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-display-input::placeholder {
    color: var(--text-tertiary);
}

/* ── Detail Row (List Pages) ──────────────── */
.detail-row {
    margin-bottom: 10px;
}

.detail-label {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 13px;
    color: var(--text-primary);
}

.amount-input-row .unit {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}
