.hm-confirm-toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%) translateY(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100vw - 32px);
    padding: 14px 20px 14px 16px;
    background: #ffffff;
    color: #222222;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    border-left: 4px solid #DD5F19;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.hm-confirm-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hm-confirm-toast__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #DD5F19;
}

.hm-confirm-toast__message {
    flex: 1;
    margin: 0;
}

.hm-confirm-toast__close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-left: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #777777;
    font-size: 18px;
    line-height: 1;
    border-radius: 4px;
}

.hm-confirm-toast__close:hover,
.hm-confirm-toast__close:focus {
    color: #222222;
    background: #f2f2f2;
    outline: none;
}

@media (max-width: 480px) {
    .hm-confirm-toast {
        font-size: 14px;
        padding: 12px 16px 12px 14px;
        bottom: 16px;
    }
}
