document.addEventListener("DOMContentLoaded", function() {
// প্রোডাক্ট কার্ডগুলোর স্টাইল ঠিক করার জন্য
const cards = document.querySelectorAll('.product-card, .single-product, [class*="product"]');
cards.forEach(card => {
card.style.display = 'flex';
card.style.flexDirection = 'column';
card.style.justifyContent = 'space-between';
});
// প্রোডাক্টের ছবিগুলোর উচ্চতা ফিক্স করার জন্য
const images = document.querySelectorAll('.product-card img, .single-product img, [class*="product"] img');
images.forEach(img => {
img.style.height = '20px';
img.style.objectFit = 'cover';
});
});