.nh-home-contact-toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 300;
    max-width: min(22rem, calc(100vw - 2rem));
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nh-home-contact-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nh-home-contact-toast.is-leaving {
    opacity: 0;
    transform: translateY(8px);
}

.nh-home-contact-toast__inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(145, 0, 10, 0.18);
    background: #fff;
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.28);
}

.nh-home-contact-toast__icon {
    flex-shrink: 0;
    color: #91000a;
    font-size: 1.35rem;
}

.nh-home-contact-toast__body {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #1a1c1c;
}

#nhHomeContactError:not(.hidden) {
    display: block;
}
