/* Add custom Js code below */
document.addEventListener('DOMContentLoaded', function() {
const bestSellerOption = document.querySelector('#product-filter option[value="bestSell"]');
if (bestSellerOption) {
bestSellerOption.remove();
}
});
document.addEventListener('DOMContentLoaded', function() {
setTimeout(function() {
const tabbySection = document.querySelector('salla-installment');
const productDescription = document.querySelector('.product-single-top-description');
if (tabbySection && productDescription) {
productDescription.insertAdjacentElement('afterend', tabbySection);
}
}, 1000);
});