/**
 * Mobile wallet handoff
 * =====================
 * "Open in wallet app" block. Shown only on phones without an in-browser wallet.
 */

.mw-box {
    max-width: 30rem;
    margin: 1rem auto;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--color-border-default);
    border-radius: 12px;
    background: var(--color-bg-secondary);
    text-align: left;
}

.mw-title {
    margin: 0 0 .5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.mw-note {
    margin: 0 0 1rem;
    color: var(--color-text-secondary);
    font-size: .93rem;
    line-height: 1.55;
}

.mw-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: .95rem 1rem;
    margin-bottom: .6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.02rem;
    background: var(--color-gradient);
    color: var(--color-on-accent);
}

/* Secondary wallet: must not compete with the primary button. */
.mw-btn-alt {
    background: transparent;
    border: 1px solid var(--color-border-default);
    color: var(--color-text-primary);
    font-weight: 500;
}

.mw-hint {
    margin: .8rem 0 0;
    color: var(--color-text-tertiary);
    font-size: .84rem;
    line-height: 1.5;
}

/* URL field: fallback when the Clipboard API is unavailable. */
.mw-url {
    width: 100%;
    margin: .5rem 0;
    padding: .55rem .7rem;
    border: 1px solid var(--line, #333);
    border-radius: .5rem;
    background: var(--bg-alt, #111);
    color: var(--fg, #eee);
    font-size: .9rem;
}
