/* G4 :: g4-cobro - toast post-venta */

.g4-toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 320px;
    max-width: 480px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.g4-toast.show { transform: translateX(-50%) translateY(0); }
.g4-toast-success { border-left: 5px solid #10b981; }
.g4-toast-warning { border-left: 5px solid #f59e0b; }
.g4-toast-error { border-left: 5px solid #ef4444; }

.g4-toast-icon { font-size: 2rem; line-height: 1; }
.g4-toast-body { flex: 1; }
.g4-toast-title {
    font-weight: 800;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.2;
}
.g4-toast-sub {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

@media (max-width: 600px) {
    .g4-toast {
        min-width: auto;
        width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        transform: translateY(-150%);
    }
    .g4-toast.show { transform: translateY(0); }
}
