var bar = document.createElement("div");
bar.id = "promo-bar";
bar.innerHTML = '⚡ Darmowy Paczkomat od 99 zł ⚡✖';
bar.style.cssText = `
background: #1f2937;
color: #ffffff;
padding: 12px 20px;
text-align: center;
font-size: 15px;
font-weight: 500;
border-bottom: 2px solid #3b82f6;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
`;
document.body.prepend(bar);