דילוג לתוכן document.addEventListener('DOMContentLoaded', function () {
const products = document.querySelectorAll('.product'); // בחר את כל המוצרים
products.forEach(function (product) {
const sizeElement = product.querySelector('.pa_מצעים-מידות'); // בחר את המאפיין של המידה
if (sizeElement) {
const sizeText = sizeElement.textContent.trim();
const sizeLabel = document.createElement('p');
sizeLabel.classList.add('product-sizes');
sizeLabel.style.fontSize = '14px';
sizeLabel.style.color = '#555';
sizeLabel.style.margin = '5px 0';
sizeLabel.textContent = 'גדלים זמינים: ' + sizeText;
product.appendChild(sizeLabel); // הוסף את המידות אחרי המוצר
}
});
});