{"id":2404,"date":"2025-07-23T13:57:36","date_gmt":"2025-07-23T11:57:36","guid":{"rendered":"https:\/\/boostique.pl\/costs-and-forms-of-delivery\/"},"modified":"2026-02-26T14:20:25","modified_gmt":"2026-02-26T13:20:25","slug":"costs-and-forms-of-delivery","status":"publish","type":"page","link":"https:\/\/boostique.pl\/en\/costs-and-forms-of-delivery\/","title":{"rendered":"Costs and forms of delivery"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2404\" class=\"elementor elementor-2404 elementor-812\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b0e5cb e-flex e-con-boxed e-con e-parent\" data-id=\"2b0e5cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c1503a elementor-widget elementor-widget-html\" data-id=\"7c1503a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- p5.js CDN -->\r\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/p5@1.11.7\/lib\/p5.min.js\"><\/script>\r\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/p5@0.7.0\/lib\/addons\/p5.sound.min.js\"><\/script>\r\n\r\n<style>\r\n  #p5-bg-canvas {\r\n    position: fixed;\r\n    top: 0;\r\n    left: 0;\r\n    z-index: 0;\r\n    width: 100vw;\r\n    height: 100vh;\r\n    pointer-events: none;\r\n    overflow: hidden;\r\n  }\r\n\r\n  canvas {\r\n    display: block;\r\n  }\r\n<\/style>\r\n\r\n<div id=\"p5-bg-canvas\"><\/div>\r\n\r\n<script>\r\n  let flowerImages = [];\r\n  let flowers = [];\r\n\r\n  const isMobile = window.innerWidth < 768;\r\n  const NUM_FLOWERS = isMobile ? 18 : 36;\r\n  const TARGET_FPS = isMobile ? 24 : 60;\r\n\r\n  let scrolling = false;\r\n  let scrollTimeout;\r\n\r\n  class Flower {\r\n    constructor(img) {\r\n      this.img = img;\r\n      this.reset(true);\r\n    }\r\n\r\n    reset(initial = false) {\r\n      this.x = random(width);\r\n      this.y = initial ? random(height) : random(-height, -40);\r\n      this.speed = random(0.5, 1.4);\r\n      this.driftSpeed = random(-0.25, 0.25);\r\n      this.rotation = random(TWO_PI);\r\n      this.rotationSpeed = random(-0.02, 0.02);\r\n\r\n      \/\/ \ud83c\udf38 FINALNE, MNIEJSZE ROZMIARY\r\n      this.size = isMobile\r\n        ? random(9, 15)    \/\/ \ud83d\udcf1 mobile\r\n        : random(12, 18);  \/\/ \ud83d\udda5 desktop\r\n    }\r\n\r\n    update() {\r\n      this.y += this.speed;\r\n      this.x += this.driftSpeed;\r\n      this.rotation += this.rotationSpeed;\r\n\r\n      if (this.x < -30) this.x = width + 30;\r\n      if (this.x > width + 30) this.x = -30;\r\n\r\n      if (this.y > height + 50) {\r\n        this.reset();\r\n      }\r\n    }\r\n\r\n    display() {\r\n      push();\r\n      translate(this.x, this.y);\r\n      rotate(this.rotation);\r\n\r\n      \/\/ \ud83d\udd0d oversampling dla ostro\u015bci\r\n      const renderSize = this.size * 1.6;\r\n      image(this.img, 0, 0, renderSize, renderSize);\r\n\r\n      pop();\r\n    }\r\n  }\r\n\r\n  function preload() {\r\n    const urls = [\r\n      'https:\/\/dae.transientusercontent.xyz\/uploads\/6bd79428-1df7-4777-88d9-c5cecf5dd06a',\r\n      'https:\/\/dae.transientusercontent.xyz\/uploads\/f90a1a61-7ed7-487f-818b-2f148c667a21',\r\n      'https:\/\/dae.transientusercontent.xyz\/uploads\/e5bccea6-0f78-4046-8df4-aed322752c3d',\r\n      'https:\/\/dae.transientusercontent.xyz\/uploads\/e5ef475b-1668-4459-a880-d72775236cfa',\r\n      'https:\/\/dae.transientusercontent.xyz\/uploads\/1a804cc9-2597-4de6-a853-52655e8fa794',\r\n      'https:\/\/dae.transientusercontent.xyz\/uploads\/c4babb54-386c-46dd-831b-d6dfa6c43158'\r\n    ];\r\n\r\n    for (let url of urls) {\r\n      flowerImages.push(loadImage(url));\r\n    }\r\n  }\r\n\r\n  function setup() {\r\n    const cnv = createCanvas(windowWidth, windowHeight);\r\n    cnv.parent('p5-bg-canvas');\r\n\r\n    imageMode(CENTER);\r\n    frameRate(TARGET_FPS);\r\n\r\n    \/\/ \ud83c\udfaf balans jako\u015b\u0107 \/ performance\r\n    const dpr = window.devicePixelRatio || 1;\r\n    pixelDensity(isMobile ? Math.min(2.5, dpr) : dpr);\r\n\r\n    drawingContext.imageSmoothingEnabled = true;\r\n    drawingContext.imageSmoothingQuality = 'high';\r\n\r\n    for (let i = 0; i < NUM_FLOWERS; i++) {\r\n      flowers.push(new Flower(random(flowerImages)));\r\n    }\r\n\r\n    \/\/ \u23f8 pauza animacji podczas scrolla\r\n    window.addEventListener(\r\n      'scroll',\r\n      () => {\r\n        scrolling = true;\r\n        clearTimeout(scrollTimeout);\r\n        scrollTimeout = setTimeout(() => (scrolling = false), 120);\r\n      },\r\n      { passive: true }\r\n    );\r\n  }\r\n\r\n  function draw() {\r\n    if (scrolling) return;\r\n\r\n    clear();\r\n    for (let flower of flowers) {\r\n      flower.update();\r\n      flower.display();\r\n    }\r\n  }\r\n\r\n  function windowResized() {\r\n    resizeCanvas(windowWidth, windowHeight);\r\n  }\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a6ac82 elementor-widget elementor-widget-heading\" data-id=\"0a6ac82\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Costs and forms of delivery<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e9d3099 elementor-widget elementor-widget-text-editor\" data-id=\"e9d3099\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><strong><\/strong><\/p>\n<h4>Poland<\/h4>\n<p><strong>Free parcel locker<\/strong> (INPOST) \u2013 for orders over 120 PLN 1-2 days<\/p>\n<p><strong>Parcel lockers <\/strong>(INPOST) \u2013 14.90 PLN 1-2 days<\/p>\n<p><strong>Courier<\/strong> (INPOST) \u2013 14.90 PLN 1-2 days<\/p>\n<p><strong>Courier cash on delivery<\/strong> (INPOST) \u2013 17,00 PLN 1-2 days<\/p>\n<p><strong>Courier<\/strong> (DPD) \u2013 20,00 PLN 1-2 days<\/p>\n<p><strong>Courier on delivery<\/strong> (DPD) \u2013 25,00 PLN 1-2 days<\/p>\n<hr>\n<h4>Austria<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 3 days<\/p>\n<hr>\n<h4>Belgium<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 2 days<\/p>\n<hr>\n<h4>Czech Republic<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 25,00 PLN 2 days<\/p>\n<hr>\n<h4>Denmark<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 35,00 PLN 3 days<\/p>\n<hr>\n<h4>Estonia<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 38,00 PLN 2 days<\/p>\n<hr>\n<h4>Finland<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 60,00 PLN 4 days<\/p>\n<hr>\n<h4>Netherlands<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 2 days<\/p>\n<hr>\n<h4>Ireland<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 70,00 PLN 4 days<\/p>\n<hr>\n<h4>Lithuania<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 24,00 PLN 2 days<\/p>\n<hr>\n<h4>Luxembourg<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 35,00 PLN 2 days<\/p>\n<hr>\n<h4>Latvia<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 33,00 PLN 2 days<\/p>\n<hr>\n<h4>Germany<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 2 days<\/p>\n<hr>\n<h4>Norway<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 210,00 PLN 5 days  <\/p>\n<hr>\n<h4>Romania<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 3 days<\/p>\n<hr>\n<h4>Slovakia<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 2 days<\/p>\n<hr>\n<h4>Sweden<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 30,00 PLN 3 days<\/p>\n<hr>\n<h4>Hungary<\/h4>\n<p><strong>Courier<\/strong> (DPD) \u2013 20,00 PLN 2 days<\/p>\n<p><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Costs and forms of delivery Poland Free parcel locker (INPOST) \u2013 for orders over 120 PLN 1-2 days Parcel lockers (INPOST) \u2013 14.90 PLN 1-2 days Courier (INPOST) \u2013 14.90 PLN 1-2 days Courier cash on delivery (INPOST) \u2013 17,00 PLN 1-2 days Courier (DPD) \u2013 20,00 PLN 1-2 days Courier on delivery (DPD) \u2013 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"open","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-2404","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2404","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/comments?post=2404"}],"version-history":[{"count":6,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2404\/revisions"}],"predecessor-version":[{"id":2425,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2404\/revisions\/2425"}],"wp:attachment":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/media?parent=2404"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}