.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info { display: none !important; }

#mytheme-toasts { position: fixed; right: 24px; bottom: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; }
.mytheme-toast { min-width: 280px; max-width: 420px; padding: 12px 14px; border-radius: 4px; color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.15); display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.mytheme-toast.success { background: var(--color-success); }
.mytheme-toast.error { background: var(--color-error); }
.mytheme-toast.info { background: var(--color-info); }
.mytheme-toast .body { flex: 1; }
.mytheme-toast .close { background: transparent; border: 0; color: #fff; cursor: pointer; font-size: 18px; line-height: 1; }

@media (max-width: 768px) {
    #mytheme-toasts {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: 24px;
        width: 90%;
        max-width: 360px;
    }

    .mytheme-toast {
        min-width: unset;
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
        align-items: center;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .mytheme-toast .close {
        padding: 4px;
        font-size: 16px;
    }
}
