/* https://jeehgames.com/wp-content/uploads/hm_custom_css_js/custom.css?ver=1773099925.1784585071 */
(function(){// Target all product images inside product-image containers const selectors=['.product-image img','.product-image > a > div > img','.products .product img.wp-post-image','.products .product .product-image img'];const images=document.querySelectorAll(selectors.join(', '));images.forEach(img=>{// Fix the image itself img.style.width='100%';img.style.height='300px';img.style.objectFit='contain';img.style.objectPosition='center';img.style.backgroundColor='#fff';// Fix the parent container too const parentDiv=img.closest('.product-image') || img.parentElement;if (parentDiv){parentDiv.style.height='300px';parentDiv.style.overflow='hidden';parentDiv.style.display='flex';parentDiv.style.alignItems='center';parentDiv.style.justifyContent='center'}});console.log(`Fixed ${images.length}product images`)})();