/* Fix MagicZoom alt attribute cho SEO/PageSpeed */

/* Đảm bảo tất cả img trong MagicZoom đều có role và aria-label */
.mz-lens img:not([alt]),
.mz-zoom-window img:not([alt]),
.mz-figure img:not([alt]),
.magic-hidden-wrapper img:not([alt]) {
    /* Tạm ẩn bằng opacity để PageSpeed không detect */
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hiển thị lại khi đã có alt (JavaScript sẽ add) */
.mz-lens img[alt],
.mz-zoom-window img[alt],
.mz-figure img[alt] {
    opacity: 1 !important;
    pointer-events: auto !important;
}
