Free shipping
Streight pencil skirt by the knee is the perfect piece of soft office clothing. With a white shirt and jacket will create a classic office styling, while juxtaced with a patterned blouse - look breaking the canon. Pleasant to the touch material with an admixture of viscose, provides a high comfort of wearing, and golden napy idelanie hint at what accessories fit into this skirt.
Composition: 64% polyester, 34% viscose, 2% elastane.
Model in the photo is 177 cm tall and is wearing 36 size.
function getDeliveryMessage() {
const now = new Date();
const day = now.getDay();
const hour = now.getHours();
let message = "";
if (day >= 1 && day <= 4) {
if (hour < 13) {
message = "🚀 Zamów do 13:00 — dostawa już jutro!";
} else {
message = "📦 Zamów teraz — dostawa pojutrze!";
}
} else if (day === 5) {
if (hour < 13) {
message = "🚀 Zamów do 13:00 — dostawa w poniedziałek!";
} else {
message = "📦 Zamów teraz — dostawa we wtorek!";
}
} else {
message = "📦 Zamów teraz — dostawa we wtorek!";
}
return message;
}
document.addEventListener("DOMContentLoaded", function() {
const el = document.getElementById("delivery-message");
if (el) {
el.innerText = getDeliveryMessage();
}
});