{"id":2846,"date":"2025-07-23T14:01:49","date_gmt":"2025-07-23T12:01:49","guid":{"rendered":"https:\/\/boostique.pl\/shop-terms-and-conditions\/"},"modified":"2026-02-26T14:24:18","modified_gmt":"2026-02-26T13:24:18","slug":"shop-terms-and-conditions","status":"publish","type":"page","link":"https:\/\/boostique.pl\/en\/shop-terms-and-conditions\/","title":{"rendered":"Shop Terms and Conditions"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2846\" class=\"elementor elementor-2846 elementor-824\" 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-3edc4dc elementor-widget elementor-widget-html\" data-id=\"3edc4dc\" 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\">Shop Terms and Conditions<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-680c302 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"680c302\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\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<p><strong>1. GENERAL PROVISIONS<\/strong><\/p>\n<p>1.1. The Online Shop available at <span style=\"text-decoration: underline;\"><a href=\"https:\/\/boostique.pl\/en\/\">the Internet address boostique.pl<\/a><\/span> is run by \u0141ukasz Czaplicki conducting business activity under the name OLFACTORY CONSULTING \u0141ukasz Czaplicki entered into the Central Register and Information on Economic Activity of the Republic of Poland kept by the minister competent for the economy, having: the address of the place of business: 2\/85 \u0106wikli\u0144ska Street, 92-508 \u0141\u00f3d\u017a and the address for delivery: 19A Wr\u00f3blewskiego Street. 14, 93-578 \u0141\u00f3d\u017a, NIP 9820269125, REGON 101019524, e-mail address: <span style=\"text-decoration: underline;\"><a href=\"mailto:info@olfactive.pl\">info@olfactive.pl<\/a><\/span>, phone number: 519-614-314.  <\/p>\n<p>1.2. These Terms and Conditions are addressed to both consumers and entrepreneurs using the Online Shop, unless a given provision of the Terms and Conditions states otherwise and is addressed only to consumers or entrepreneurs.<\/p>\n<p>1.3. The Seller is the administrator of personal data processed in the Online Store in connection with the implementation of the provisions of these Terms and Conditions. Personal data are processed for the purposes, to the extent and on the basis of the grounds and principles indicated in &nbsp;<span style=\"text-decoration: underline;\"><a title=\"Privacy Policy\" href=\"https:\/\/perfumydoprania.pl\/polityka-prywatnosci\/\" target=\"_blank\" rel=\"noopener\">privacy policy<\/a><\/span> published on the Online Store&#8217;s website. The Privacy Policy primarily contains the rules concerning the processing of personal data by the Administrator in the Online Shop, including the bases, purposes and scope of personal data processing and the rights of data subjects, as well as information on the use of cookies and analytical tools in the Online Shop. The use of the Online Store, including making purchases, is voluntary. Similarly, the provision of personal data by the Service Recipient or the Client using the Online Shop is voluntary, subject to the exceptions indicated in the privacy policy (conclusion of the agreement and statutory obligations of the Seller).   <\/p>\n<p>1.4. Definitions:<\/p>\n<p>1.4.1. WORKING DAY \u2013 one day from Monday to Friday, excluding public holidays.<\/p>\n<p>1.4.2. REGISTRATION FORM \u2013 a form available in the Online Shop enabling the creation of an Account.<\/p>\n<p>1.4.3. ORDER FORM \u2013 Electronic Service, an interactive form available in the Online Shop enabling the placing of an Order, in particular by adding Products to the electronic basket and specifying the terms of the Sales Agreement, including the method of delivery and payment.<\/p>\n<p>1.4.4. CLIENT \u2013 (1) a natural person with full legal capacity, and in cases provided for by generally applicable regulations, also a natural person with limited legal capacity; (2) a legal person; or (3) an organisational unit without legal personality which is granted legal capacity by law; \u2013 who has concluded or intends to conclude a Sales Agreement with the Seller.<\/p>\n<p>1.4.5. CIVIL CODE \u2013 the Civil Code Act of 23 April 1964 (Journal of Laws of 1964 No. 16, item 93, as amended). <\/p>\n<p>1.4.6. ACCOUNT \u2013 Electronic Service, marked with an individual name (login) and password provided by the Service Recipient a collection of resources in the Service Provider&#8217;s ICT system, in which the data provided by the Service Recipient and information about the Orders placed by the Service User in the Online Store are collected.<\/p>\n<p>1.4.7. NEWSLETTER \u2013 Electronic Service, an electronic distribution service provided by the Service Provider via e-mail, which enables all Service Recipients using it to automatically receive from the Service Provider the cyclical content of subsequent editions of the newsletter containing information about Products, news and promotions in the Online Store.<\/p>\n<p>1.4.8. PRODUCT \u2013 a movable item available in the Online Shop that is the subject of the Sales Agreement between the Client and the Seller.<\/p>\n<p>1.4.9. TERMS  CONDITIONS \u2013 these Terms and Conditions of the Online Store.<\/p>\n<p>1.4.10. ONLINE STORE \u2013 the Service Provider&#8217;s online store available at the following internet address:&nbsp;<a style=\"font-family: &#039;Bai Jamjuree&#039;, sans-serif; font-weight: 400;\" href=\"https:\/\/boostique.pl\/en\/\">boostique.pl<\/a><\/p>\n<p>1.4.11. SELLER; SERVICE PROVIDER \u2013 \u0141ukasz Czaplicki conducting business activity under the name OLFACTORY CONSULTING \u0141ukasz Czaplicki entered into the Central Register and Information on Economic Activity of the Republic of Poland kept by the minister competent for the economy, having: address of the place of business: 2\/85 \u0106wikli\u0144ska Street, 92-508 \u0141\u00f3d\u017a and &nbsp;<u>address for service<\/u>: 19A Wr\u00f3blewskiego Street MAG.14, 93-578 \u0141\u00f3d\u017a, NIP 9820269125, REGON 101019524, e-mail address: &nbsp;<a style=\"font-family: 'Bai Jamjuree', sans-serif; font-weight: 400; background-color: #ffffff;\" href=\"mailto:info@olfactive.pl\">info@olfactive.pl<\/a>, phone number: 519-614-314.<\/p>\n<p>1.4.12. SALES AGREEMENT \u2013 a contract for the sale of the Product concluded or concluded between the Client and the Seller through the Online Store.<\/p>\n<p>1.4.13. ELECTRONIC SERVICE \u2013 a service provided electronically by the Service Provider to the Service Recipient via the Online Store.<\/p>\n<p>1.4.14. SERVICE RECIPIENT \u2013 (1) a natural person with full legal capacity, and in cases provided for by generally applicable regulations, also a natural person with limited legal capacity; (2) a legal person; or (3) an organisational unit without legal personality which is granted legal capacity by law; \u2013 using or intending to use the Electronic Service.<\/p>\n<p>1.4.15. ACT ON CONSUMER RIGHTS, ACT \u2013 Act of 30 May 2014 on Consumer Rights (Journal of Laws of 2014, item 827, as amended) <\/p>\n<p>1.4.16. ORDER \u2013 a declaration of intent of the Client submitted using the Order Form and aimed directly at concluding a Product Sales Agreement with the Seller.<\/p>\n<p><strong>2. ELECTRONIC SERVICES IN THE ONLINE STORE<\/strong><\/p>\n<p>2.1. The following Electronic Services are available in the Online Store: Account, Order Form and Newsletter.<\/p>\n<p>2.1.1. Account \u2013 the use of the Account is possible after the Service Recipient has completed a total of three subsequent steps \u2013 (1) filling in the Registration Form, (2) clicking on the &#8220;Register&#8221; field and (3) confirming the willingness to create an Account by clicking on the confirmation link sent automatically to the provided e-mail address. In the Registration Form, it is necessary for the Service User to provide the following data of the Service Recipient: username, e-mail address and password. In the case of Service Recipients who are not consumers, it is also necessary to provide a NIP number.  <\/p>\n<p>2.1.1.1. The Konto Electronic Service is provided free of charge for an indefinite period of time. The Service Recipient has the option, at any time and without giving a reason, to delete the Account (resign from the Account) by sending an appropriate request to the Service Provider, in particular via e-mail to the following address: &nbsp;<a style=\"font-family: 'Bai Jamjuree', sans-serif; font-weight: 400; background-color: #ffffff;\" href=\"mailto:info@olfactive.pl\">info@olfactive.pl<\/a> or in writing to the address: Wr\u00f3blewskiego 19A MAG.14 93-578 \u0141\u00f3d\u017a. <\/p>\n<p>2.1.2. Order Form \u2013 the use of the Order Form begins at the moment when the Customer adds the first Product to the electronic basket in the Online Store. The Order is placed after the Client completes a total of two subsequent steps \u2013 (1) after filling in the Order Form and (2) clicking on the &#8220;Buy and pay&#8221; field on the Online Store&#8217;s website after filling in the Order Form \u2013 until that moment, it is possible to modify the entered data on your own (for this purpose, you should be guided by the displayed messages and information available on the Online Store&#8217;s website). In the Order Form, the Client must provide the following data concerning the Client: name and surname\/company name, address (street, house\/apartment number, postal code, city, country), e-mail address, contact telephone number and data concerning the Sales Agreement: Product(s), quantity of Product(s), place and method of delivery of the Product(s), payment method. In the case of Customers who are not consumers, it is also necessary to provide the name of the company and the NIP number.   <\/p>\n<p>2.1.2.1. The Electronic Order Form Service is provided free of charge and is of a one-off nature and ends at the moment of placing an Order through it or at the moment of earlier cessation of placing an Order through it by the Service Recipient.<\/p>\n<p>2.2. Technical requirements necessary for cooperation with the ICT system used by the Service Provider: (1) computer, laptop or other multimedia device with Internet access; (2) access to email; (3) web browser: Mozilla Firefox version 17.0 and above or Internet Explorer version 10.0 and higher, Opera version 12.0 and higher, Google Chrome version 23.0 and higher, Safari version 5.0 and higher, Microsoft Edge version 25.10586.0.0 and higher; (4) Recommended minimum screen resolution: 1024\u00d7768; (5) enabling the ability to save Cookies and support Javascript in the web browser. <\/p>\n<p>2.3. The Service Recipient is obliged to use the Online Shop in a manner consistent with the law and good morals, taking into account the respect for personal rights, copyrights and intellectual property of the Service Provider and third parties. The Service Recipient is obliged to enter data consistent with the actual state. The Service Recipient is prohibited from providing illegal content.  <\/p>\n<p>2.4. Complaint procedure:<\/p>\n<p>2.4.1. Complaints related to the provision of Electronic Services by the Service Provider and other complaints related to the operation of the Online Store (with the exception of the Product complaint procedure, which is indicated in point 6 of the Terms and Conditions) may be submitted by the Service Recipient, for example:<\/p>\n<p>2.4.2. in writing to the address: 19A Wr\u00f3blewskiego Street, MAG.14, 93-578 \u0141\u00f3d\u017a. <\/p>\n<p>2.4.3. in electronic form via e-mail to the following address:&nbsp;<a href=\"mailto:info@olfactive.pl\" style=\"font-family: \"Bai Jamjuree\", sans-serif; font-weight: 400; background-color: rgb(255, 255, 255);\">info@olfactive.pl<\/a><\/p>\n<p>2.4.4. It is recommended that the Service User provide in the description of the complaint: (1) information and circumstances regarding the subject of the complaint, in particular the type and date of occurrence of the irregularity; (2) the Service Recipient&#8217;s request; and (3) the contact details of the complainant \u2013 this will facilitate and speed up the consideration of the complaint by the Service Provider. The requirements set out in the previous sentence are only in the form of a recommendation and do not affect the effectiveness of complaints submitted without the recommended description of the complaint. <\/p>\n<p>2.4.5. The Service Provider responds to the complaint immediately, no later than within 14 calendar days from the date of its submission.<\/p>\n<p><strong>3. CONDITIONS FOR CONCLUDING A SALES CONTRACT<\/strong><\/p>\n<p>3.1. The Sales Agreement between the Client and the Seller shall be concluded after the Client has placed an Order using the Order Form in the Online Shop in accordance with point 2.1.2 of the Terms and Conditions. <\/p>\n<p>3.2. The price of the Product displayed on the website of the Online Shop is given in Polish zlotys and includes taxes. The Client is informed about the total price including taxes of the Product being the subject of the Order, as well as about the costs of delivery (including fees for transport, delivery and postal services) and other costs, and if the amount of these fees cannot be determined \u2013 about the obligation to pay them, on the pages of the Online Shop during the Order placement, including when the Client expresses the will to be bound by the Sales Agreement. <\/p>\n<p>3.3. <u>Procedure for concluding a Sales Agreement in the Online Shop using the Order Form<\/u><\/p>\n<p>3.3.1. The Sales Agreement between the Client and the Seller is concluded after the Client has placed an Order in the Online Shop in accordance with point 2.1.2 of the Terms and Conditions. <\/p>\n<p>3.3.2. After placing the Order, the Seller immediately confirms its receipt and at the same time accepts the Order for execution. Confirmation of receipt of the Order and its acceptance for execution shall take place by the Seller sending the Client an appropriate e-mail message to the Client&#8217;s e-mail address provided during the Order placement, which contains at least the Seller&#8217;s statements on the receipt of the Order and its acceptance for execution and confirmation of the conclusion of the Sales Agreement. Upon receipt of the above e-mail by the Client, the Sales Agreement is concluded between the Client and the Seller.  <\/p>\n<p>3.4. The content of the concluded Sales Agreement is recorded, secured and made available to the Client by (1) making these Terms and Conditions available on the website of the Online Store and (2) sending the Client an e-mail referred to in point 1. 3.3.2. of the Terms and Conditions. The content of the Sales Agreement is additionally recorded and secured in the IT system of the Seller&#8217;s Online Store. <\/p>\n<p><strong>4. METHODS AND TERMS OF PAYMENT FOR THE PRODUCT<\/strong><\/p>\n<p>4.1. The Seller provides the Client with the following payment methods under the Sales Agreement:<\/p>\n<p>4.1.1. Payment in cash on delivery upon receipt of the shipment.<\/p>\n<p>4.1.2. Electronic payments and payment card payments via the Przelewy24.pl website \u2013 possible current payment methods are specified on the Online Store&#8217;s website in the information tab on payment methods and on <span style=\"text-decoration: underline;\"><a href=\"http:\/\/www.przelewy24.pl\" target=\"_blank\" rel=\"noopener\">the przelewy24.pl<\/a><\/span> website.<\/p>\n<p>4.1.2.1. Settlements of transactions by electronic payments and payment card are carried out in accordance with the Client&#8217;s choice via the Przelewy24.pl service. Electronic payments and payment card payments are handled by: <\/p>\n<p>4.1.2.1.1. The entity providing the payment service, hereinafter referred to as Przelewy24 for the benefit of the Users in these Terms and Conditions, is PayPro S.A. with its registered office in Pozna\u0144 at 15 Kanclerska Street, 60-327 Pozna\u0144, entered into the Register of Entrepreneurs of the National Court Register kept by the District Court Pozna\u0144 Nowe Miasto and Wilda, VIII Commercial Division of the National Court Register under KRS number 0000347935, with a share capital of PLN 4,500,000.00,  fully paid, NIP number 7792369887. <\/p>\n<p>4.2. Payment term:<\/p>\n<p>4.2.1. If the Client chooses payment by bank transfer, electronic payments or payment by payment card, the Client is obliged to make the payment within 3 calendar days from the date of conclusion of the Sales Agreement.<\/p>\n<p>4.2.2. If the Client chooses cash on delivery upon receipt of the shipment, the Client is obliged to make the payment upon receipt of the shipment.<\/p>\n<p><strong>5. COST, METHODS AND DATE OF DELIVERY AND COLLECTION OF THE PRODUCT<\/strong><\/p>\n<p>5.1. Delivery of the Product is available in the territory of the Republic of Poland and the European Union.<\/p>\n<p>5.2. The delivery of the Product to the Client is subject to a fee, unless otherwise stipulated in the Sales Agreement. The costs of delivery of the Product (including fees for transport, delivery and postal services) are indicated to the Client on the pages of the Online Store in the information tab concerning delivery costs and during the placing of the Order, including at the time of the Client&#8217;s expression of the will to be bound by the Sales Agreement. <\/p>\n<p>5.3. The Seller provides the Client with the following methods of delivery or collection of the Product:<\/p>\n<p>5.3.1. Courier delivery, cash on delivery courier delivery.<\/p>\n<p>5.3.2. Parcel locker delivery.<\/p>\n<p>5.4. The delivery time of the Product to the Customer is up to 10 Business Days, unless a shorter deadline is specified in the description of the Product in question or during the Order placement.<\/p>\n<p>In the case of Products with different delivery dates, the delivery date is the longest period given, which, however, may not exceed 10 Business Days.<\/p>\n<p>The beginning of the Product delivery period to the Client is counted as follows:<\/p>\n<p>5.4.1. If the Client chooses the method of payment by bank transfer, electronic payments or payment card \u2013 from the date of crediting the Seller&#8217;s bank account or settlement account.<\/p>\n<p>5.4.2. If the Client chooses the method of cash on delivery payment \u2013 from the date of conclusion of the Sales Agreement.<\/p>\n<p>5.5. Date of readiness of the Product for collection by the Customer<\/p>\n<p>The beginning of the period of readiness of the Product for collection by the Client is counted as follows:<\/p>\n<p>5.5.1. If the Client chooses the method of payment by bank transfer, electronic payments or payment card \u2013 from the date of crediting the Seller&#8217;s bank account or settlement account.<\/p>\n<p><strong>6. PRODUCT COMPLAINT<\/strong><\/p>\n<p>6.1. The basis and scope of the Seller&#8217;s liability towards the Client, if the sold Product has a physical or legal defect (warranty) are specified in generally applicable provisions of law, in particular in the Civil Code (in particular in Articles 556-576 of the Civil Code). For Sales Agreements concluded by 24 December 2014, the basis and scope of the Seller&#8217;s liability towards the Client who is a natural person who purchases the Product for a purpose not related to professional or business activity, due to the non-compliance of the Product with the Sales Agreement, are determined by generally applicable provisions of law, in particular by the Act of 27 July 2002 on special conditions of consumer sales and on the amendment of the Civil Code (Journal of Laws of 2002 No. 141,  item 1176, as amended).  <\/p>\n<p>6.2. The Seller is obliged to deliver the Product to the Client without defects. Detailed information on the Seller&#8217;s liability for a defect in the Product and the Client&#8217;s rights are specified on the Online Store&#8217;s website in the information tab regarding complaints. <\/p>\n<p>6.3. A complaint may be submitted by the Client, for example:<\/p>\n<p>6.3.1. In writing to the address: Wr\u00f3blewskiego 19A MAG.14 93-578 \u0141\u00f3d\u017a <\/p>\n<p>6.3.2. in electronic form via e-mail to the following address:&nbsp;<a href=\"mailto:info@olfactive.pl\" style=\"font-family: \"Bai Jamjuree\", sans-serif; font-weight: 400; background-color: rgb(255, 255, 255);\">info@olfactive.pl<\/a>;<\/p>\n<p>6.4. It is recommended that the Client provide in the description of the complaint: (1) information and circumstances concerning the subject of the complaint, in particular the type and date of occurrence of the defect; (2) request a way to bring the Product into conformity with the Sales Agreement or a statement of price reduction or withdrawal from the Sales Agreement; and (3) the contact details of the complainant \u2013 this will facilitate and speed up the consideration of the complaint by the Seller. The requirements set out in the previous sentence are only in the form of a recommendation and do not affect the effectiveness of complaints submitted without the recommended description of the complaint. <\/p>\n<p>6.5. The Seller shall respond to the Client&#8217;s complaint immediately, no later than within 14 calendar days from the date of its submission. If the Client who is a consumer has requested the replacement of the item or the removal of the defect or has submitted a statement on the price reduction, specifying the amount by which the price is to be reduced, and the Seller has not responded to this request within 14 calendar days, it is considered that the request has been considered justified. <\/p>\n<p>6.6. The Client, who exercises the rights under the warranty, is obliged to deliver the defective Product to the address: Wr\u00f3blewskiego 19A MAG.14 93-578 \u0141\u00f3d\u017a. In the case of a Customer who is a consumer, the cost of delivery of the Product is borne by the Seller, in the case of a Customer who is not a consumer, the cost of delivery is borne by the Client. If, due to the type of Product or the way it is installed, the delivery of the Product by the Customer would be excessively difficult, the Customer is obliged to make the Product available to the Seller in the place where the Product is located.   <\/p>\n<p><strong>7. OUT-OF-COURT METHODS OF HANDLING COMPLAINTS AND PURSUING CLAIMS AND RULES OF ACCESS TO THESE PROCEDURES<\/strong><\/p>\n<p>7.1. Detailed information on the possibility for the Client who is a consumer to use out-of-court methods of handling complaints and pursuing claims and the rules of access to these procedures are available on the website of the Office of Competition and Consumer Protection at: <span style=\"text-decoration: underline;\"><a href=\"https:\/\/uokik.gov.pl\/\" target=\"_blank\" rel=\"noopener\">uokik.gov.pl<\/a> <\/span><\/p>\n<p>7.2. The President of the Office of Competition and Consumer Protection also has a contact point (phone: 22 55 60 333, email: <span style=\"text-decoration: underline;\"><a href=\"mailto:kontakt.adr@uokik.gov.pl\">kontakt.adr@uokik.gov.pl<\/a><\/span> or written address: Pl. Powsta\u0144c\u00f3w Warszawy 1, 00-030 Warsaw), whose task is, among other things, to provide assistance to consumers in matters concerning out-of-court settlement of consumer disputes.<\/p>\n<p>7.3. The Consumer has the following exemplary options for using out-of-court methods of handling complaints and pursuing claims: (1) a request for dispute resolution to a permanent consumer arbitration court (more information on the website: <span style=\"text-decoration: underline;\"><a href=\"http:\/\/www.spsk.wiih.org.pl\/\" target=\"_blank\" rel=\"noopener\">spsk.wiih.org.pl<\/a><\/span>); (2) a motion for an out-of-court settlement of the dispute to the voivodeship inspector of the Trade Inspection Authority (more information on the website of the inspector competent for the place of business activity of the Seller); and (3) assistance from a district (municipal) consumer ombudsman or a social organization whose statutory tasks include consumer protection (m.in. Consumer Federation, Polish Consumers Association). Advice is provided, among others, by e-mail at <a href=\"mailto:porady@dlakonsumentow.pl\"><span style=\"text-decoration: underline;\">porady@dlakonsumentow.pl<\/span><\/a> and at the consumer hotline number 801 440 220 (hotline open on Working Days, from 8:00 a.m. to 6:00 p.m., call fee according to the operator&#8217;s tariff). <\/p>\n<p>7.4. At the address&nbsp;<span style=\"text-decoration: underline;\"><a href=\"http:\/\/ec.europa.eu\/consumers\/odr\" target=\"_blank\" rel=\"noopener\">ec.europa.eu\/consumers\/odr<\/a><\/span> platform for the online dispute resolution system between consumers and businesses at EU level (ODR platform) is available. The ODR Platform is an interactive and multilingual one-stop-shop website for consumers and entrepreneurs seeking out-of-court settlement of a dispute concerning contractual obligations arising from an online sales contract or a contract for the provision of services (more information on the website of the platform itself or on the website of the Office of Competition and Consumer Protection: <a href=\"https:\/\/uokik.gov.pl\/spory_konsumenckie_faq_platforma_odr.php\" target=\"_blank\" rel=\"noopener\"><span style=\"text-decoration: underline;\">https:\/\/uokik.gov.pl\/spory_konsumenckie_faq_platforma_odr.php<\/span><\/a>). <\/p>\n<p><strong>8. RIGHT OF WITHDRAWAL<\/strong><br><strong>(APPLIES TO SALES AGREEMENTS CONCLUDED FROM 25 DECEMBER 2014)<\/strong><\/p>\n<p>8.1. A consumer who has concluded a distance contract may withdraw from it within 14 calendar days without giving a reason and without incurring costs, except for the costs specified in point 8.8 of the Terms and Conditions. To meet the deadline, it is enough to send the statement before its expiry. A statement of withdrawal from the contract may be submitted, for example:   <\/p>\n<p>8.1.1. in writing to the address: Wr\u00f3blewskiego 19A MAG.14 93-578 \u0141\u00f3d\u017a.; <\/p>\n<p>8.1.2. in electronic form via e-mail to the following address:&nbsp;<a href=\"mailto:info@olfactive.pl\" style=\"font-family: \"Bai Jamjuree\", sans-serif; font-weight: 400; background-color: rgb(255, 255, 255);\">info@olfactive.pl<\/a>;<\/p>\n<p>8.2. A sample of the withdrawal form is included in Appendix 2 to the Consumer Rights Act and is additionally available in point 11 of the Terms and Conditions and on the Online Shop website in the tab concerning withdrawal from the agreement. The consumer can use the template form, but it is not mandatory.  <\/p>\n<p>8.3. The period for withdrawal from the agreement begins:<\/p>\n<p>8.3.1. for an agreement under which the Seller issues the Product, being obliged to transfer its ownership (e.g. Sales Agreement) \u2013 from the time the Product is taken into possession by the consumer or a third party indicated by the consumer other than the carrier, and in the case of an agreement that: (1) covers multiple Products that are delivered separately, in batches or in parts \u2013 from taking possession of the last Product,  or (2) consists in the regular delivery of the Products for a specified period of time \u2013 from the acquisition of the first of the Products;<\/p>\n<p>8.3.2. for other contracts \u2013 from the date of conclusion of the agreement.<\/p>\n<p>8.4. In the event of withdrawal from a distance contract, the agreement shall be deemed not to have been concluded.<\/p>\n<p>8.5. The Seller is obliged to reimburse the Consumer immediately, no later than within 14 calendar days from the date of receipt of the consumer&#8217;s statement of withdrawal from the contract, all payments made by the Consumer, including the costs of delivery of the Product (with the exception of additional costs resulting from the delivery method chosen by the Consumer other than the cheapest usual method of delivery available in the Online Store). The seller makes a refund using the same payment method as the consumer, unless the consumer has expressly agreed to another method of refund that does not involve any costs for him. If the Seller has not offered to collect the Product from the consumer himself, he may withhold the reimbursement of payments received from the consumer until the Product is returned or the consumer provides proof of its return, whichever occurs first.  <\/p>\n<p>8.6. The Consumer is obliged to return the Product to the Seller immediately, no later than within 14 calendar days from the day on which he withdrew from the agreement, or hand it over to a person authorized by the Seller to collect it, unless the Seller has offered to collect the Product himself. To meet the deadline, it is sufficient to send the Product back before its expiry. The Consumer may return the Product to the following address: Wr\u00f3blewskiego 19A MAG.14 93-578 \u0141\u00f3d\u017a.   <\/p>\n<p>8.7. The Consumer shall be liable for the decrease in the value of the Product resulting from the use of the Product in a manner beyond what is necessary to determine the nature, characteristics and functioning of the Product.<\/p>\n<p>8.8. Possible costs related to the withdrawal of the contract by the Consumer that the Consumer is obliged to bear:<\/p>\n<p>8.8.1. If the Consumer has chosen a method of delivery of the Product other than the cheapest usual method of delivery available in the Online Store, the Seller is not obliged to reimburse the Consumer for the additional costs incurred by the Consumer.<\/p>\n<p>8.8.2. The Consumer bears the direct costs of returning the Product.<\/p>\n<p>8.8.3. In the case of a Product that is a service the performance of which \u2013 at the consumer&#8217;s express request \u2013 has begun before the expiry of the withdrawal period, the consumer who exercises the right to withdraw from the contract after making such a request is obliged to pay for the services provided until the moment of withdrawal. The amount of payment is calculated in proportion to the scope of the performance performed, taking into account the price or remuneration agreed in the contract. If the price or remuneration is excessive, the basis for calculating this amount is the market value of the service provided.  <\/p>\n<p>8.9. The Consumer does not have the right to withdraw from a distance contract in relation to the following agreements:<\/p>\n<p>8.9.1. (1) for the provision of services, if the Seller has fully performed the service with the express consent of the consumer, who was informed before the commencement of the performance that after the performance by the Seller he will lose the right to withdraw from the contract; (2) where the price or remuneration depends on fluctuations in the financial market over which the Seller has no control and which may occur before the expiry of the withdrawal period; (3) in which the subject of the service is a non-prefabricated Product, manufactured according to the consumer&#8217;s specifications or used to meet his individualized needs; (4) in which the subject of the service is a Perishable Product or with a short shelf life; (5) in which the subject of the service is the Product delivered in a sealed packaging which, after opening the packaging, cannot be returned for health protection or hygienic reasons, if the packaging has been opened after delivery; (6) in which the subject of the supply are Products which, after delivery, by their nature, are inseparably connected with other things; (7) in which the subject of the service are alcoholic beverages, the price of which was agreed upon when concluding the Sales Agreement, and the delivery of which may take place only after 30 days and the value of which depends on market fluctuations over which the Seller has no control; (8) where the consumer has expressly requested that the Seller come to the consumer for urgent repair or maintenance; if the Seller provides additional services other than those requested by the consumer, or provides Products other than spare parts necessary for repair or maintenance, the consumer has the right of withdrawal in respect of additional services or Products; (9) in which the subject matter of the service is audio or visual recordings or computer programs delivered in a sealed package, if the package has been opened after delivery; (10) to provide newspapers, periodicals or periodicals, except for a subscription agreement; (11) by public auction; (12) for the provision of accommodation services other than for residential purposes, transport of goods, car rental, catering, services related to leisure, entertainment, sports or cultural events, if the date or period of the service is specified in the contract; (13) for the provision of digital content that is not recorded on a tangible medium, if the performance of the service began with the consumer&#8217;s express consent before the expiry of the period for withdrawal and after the Seller informed the Seller about the loss of the right to withdraw from the contract.<\/p>\n<p><strong>9. PROVISIONS CONCERNING ENTREPRENEURS<\/strong><\/p>\n<p>9.1. This section of the Terms and Conditions and the provisions contained therein apply only to Clients and Service Recipients who are not consumers.<\/p>\n<p>9.2. The Seller has the right to withdraw from the Sales Agreement concluded with the Client who is not a consumer within 14 calendar days from the date of its conclusion. Withdrawal from the Sales Agreement in this case may take place without giving a reason and does not give rise to any claims against the Seller on the part of the Client who is not a consumer. <\/p>\n<p>9.3. In the case of Customers who are not consumers, the Seller has the right to limit the available payment methods, including requiring prepayment in full or in part, regardless of the payment method chosen by the Client and the fact of concluding the Sales Agreement.<\/p>\n<p>9.4. Upon delivery of the Product by the Seller to the carrier, the benefits and burdens associated with the Product and the risk of accidental loss or damage to the Product are transferred to the Customer, who is not a consumer. In such a case, the Seller shall not be liable for the loss, loss or damage of the Product arising from its acceptance for carriage until its release to the Customer, as well as for the delay in the carriage of the shipment. <\/p>\n<p>9.5. In the event that the Product is sent to the Client via a carrier, the Client who is not a consumer is obliged to examine the shipment in the time and manner accepted for shipments of this type. If the Seller finds that the Product has been lost or damaged during transport, the Seller is obliged to take all actions necessary to determine the carrier&#8217;s liability. <\/p>\n<p>9.6. In accordance with Article 558 \u00a7 1 of the Civil Code, the Seller&#8217;s liability under the warranty for the Product towards the Client who is not a consumer is excluded. <\/p>\n<p>9.7. In the case of Service Recipients who are not consumers, the Service Provider may terminate the agreement for the provision of the Electronic Service with immediate effect and without indicating reasons by sending the Service Recipient an appropriate statement.<\/p>\n<p>9.8. The liability of the Service Provider\/Seller towards the Service Recipient\/Client who is not a consumer, regardless of its legal basis, is limited \u2013 both within a single claim and for all claims in total \u2013 to the amount of the price paid and the delivery costs under the Sales Agreement, but not more than to the amount of one thousand zlotys. The Service Provider\/Seller shall be liable to the Service Recipient\/Client who is not a consumer only for typical damages foreseeable at the time of concluding the agreement and shall not be liable for lost benefits in relation to the Service Recipient\/Client who is not a consumer. <\/p>\n<p>9.9. Any disputes arising between the Seller\/Service Provider and the Client\/Service Recipient who is not a consumer shall be submitted to the court competent for the registered office of the Seller\/Service Provider.<\/p>\n<p><strong>10. FINAL PROVISIONS<\/strong><\/p>\n<p>10.1. Agreements concluded through the Online Shop are concluded in Polish.<\/p>\n<p>10.2. Amendment to the Terms and Conditions:<\/p>\n<p>10.2.1. The Service Provider reserves the right to make changes to the Terms and Conditions for important reasons, i.e.: changes in the law; changes in payment and delivery methods \u2013 to the extent that these changes affect the implementation of the provisions of these Terms and Conditions.<\/p>\n<p>10.2.2. In the event of concluding continuous agreements on the basis of these Terms and Conditions (e.g. provision of the Electronic Service \u2013 Account), the amended Terms and Conditions shall be binding on the Service Recipient if the requirements set out in Articles 384 and 384[1] of the Civil Code have been complied with, i.e. the Service User has been duly notified of the changes and has not terminated the agreement within 14 calendar days from the date of notification. In the event that the amendment to the Terms and Conditions results in the introduction of any new fees or an increase in the current ones, the Service Recipient who is a consumer has the right to withdraw from the agreement.  <\/p>\n<p>10.2.3. In the event of concluding agreements of a nature other than continuous agreements (e.g. Sales Agreement) on the basis of these Terms and Conditions, the amendments to the Terms and Conditions will not in any way infringe the rights of the Service Recipients\/Clients who are consumers before the date of entry into force of the amendments to the Terms and Conditions, in particular, the amendments to the Terms and Conditions will not affect the Orders already placed or placed and the Sales Agreements concluded, executed or performed.<\/p>\n<p>10.3. In matters not regulated in these Terms and Conditions, the generally applicable provisions of Polish law shall apply, in particular: the Civil Code; the Act on the Provision of Services by Electronic Means of 18 July 2002 (Journal of Laws of 2002 No. 144, item 1204, as amended); for Sales Agreements concluded by 24 December 2014 with Customers who are consumers \u2013 the provisions of the Act on the Protection of Certain Consumer Rights and on Liability for Damage Caused by a Dangerous Product of 2 March 2000 (Journal of Laws of 2000 No. 22, item 271, as amended) and the Act on Special Conditions of Consumer Sales and on the Amendment of the Civil Code of 27 July 2002 (Journal of Laws of 2002 No. 141,  item 1176, as amended); for Sales Agreements concluded from 25 December 2014 with Customers who are consumers \u2013 the provisions of the Act on Consumer Rights of 30 May 2014 (Journal of Laws of 2014, item 827, as amended); and other relevant provisions of generally applicable law.    <\/p>\n<p><strong>11. MODEL WITHDRAWAL FORM<\/strong><br><strong>(APPENDIX 2 TO THE ACT ON CONSUMER RIGHTS)<\/strong><\/p>\n<p>Sample withdrawal form<br><em>(this form should be filled in and sent back only if you want to withdraw from the contract)<\/em><\/p>\n<p>\u2013 Addressee:<\/p>\n<p>OLFACTORY CONSULTING<\/p>\n<p>\u0141ukasz Czaplicki<br>\u0106wikli\u0144ska 2\/85, 92-508 \u0141\u00f3d\u017a <br><span style=\"text-decoration-line: underline;\"><a href=\"https:\/\/boostique.pl\/en\/\">boostique.pl<\/a><\/span><br><span style=\"text-decoration-line: underline;\"><a href=\"mailto:info@olfactive.pl\">info@olfactive.pl<\/a><\/span><\/p>\n<p>\u2013 I\/We(*) hereby inform\/inform(*) about my\/our withdrawal from the contract for the sale of the following items(*), the contract for the supply of the following items(*) of the contract for specific work consisting in the performance of the following things(*)\/for the provision of the following service(*)<\/p>\n<p>\u2013 Date of conclusion of the contract(*)\/receipt(*)<\/p>\n<p>\u2013 Name of the consumer(s)<\/p>\n<p>\u2013 Address of the consumer(s)<\/p>\n<p>&#8211; Signature of the consumer(s) (only if the form is submitted in paper form)<\/p>\n<p>\u2013 Date<\/p>\n<p>(*) Delete unnecessary.<\/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>Shop Terms and Conditions 1. GENERAL PROVISIONS 1.1. The Online Shop available at the Internet address boostique.pl is run by \u0141ukasz Czaplicki conducting business activity under the name OLFACTORY CONSULTING \u0141ukasz Czaplicki entered into the Central Register and Information on Economic Activity of the Republic of Poland kept by the minister competent for the economy, [&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-2846","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2846","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=2846"}],"version-history":[{"count":4,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2846\/revisions"}],"predecessor-version":[{"id":2857,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2846\/revisions\/2857"}],"wp:attachment":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/media?parent=2846"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}