/**
 * Toast global (ej. "Copiado", "Agregado a favoritos")
 * Uso: window.grupoMexicoToast('Mensaje');
 */

.gm-toast-container {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 10000;
}

.gm-toast {
    padding: 10px 20px;
    background: var(--ink-heading-2, #1a1a1a);
    color: var(--ink-inverse, #fff);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gm-toast.gm-toast--visible {
    opacity: 1;
    transform: translateY(0);
}
