function addShippingBorder() {
if (document.getElementById('flowermad-shipping-border-style')) return;
var style = document.createElement('style');
style.id = 'flowermad-shipping-border-style';
style.innerHTML = `
.ec-cart-next__step.ec-cart-next__step--shipping {
border: 2px solid #EC247E !important;
border-radius: 8px !important;
padding: 12px !important;
}
`;
document.head.appendChild(style);
}
// يحاول فورًا
addShippingBorder();
// ويستمر يتابع أي تغيير في الصفحة (لأن Ecwid بيحمل المحتوى ديناميكيًا)
var observer = new MutationObserver(function() {
addShippingBorder();
});
observer.observe(document.body, { childList: true, subtree: true });