/* ══════════════════════════════════════════════════════════
   Currency system — auto-suggestion toast (Fase 3.2)
   The manual switcher UI lives in assets/css/lang-currency-switcher.css now
   (merged with the language switcher). Ver assets/js/currency.js.
════════════════════════════════════════════════════════════ */

/* ── Auto-suggestion toast — small, non-blocking, dismissible ── */

.rc-currency-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    padding: 14px 16px;
    background: var(--rc-ink);
    color: var(--rc-cream);
    font-family: var(--rc-font-sans);
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--rc-transition), transform var(--rc-transition);
}

.rc-currency-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-currency-toast__text {
    flex: 1;
}

.rc-currency-toast__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.rc-currency-toast__revert {
    background: var(--rc-gold);
    color: var(--rc-ink);
    border: none;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.rc-currency-toast__close {
    background: none;
    border: none;
    color: var(--rc-cream);
    opacity: 0.7;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}
