{"id":2343,"date":"2025-07-06T15:20:26","date_gmt":"2025-07-06T13:20:26","guid":{"rendered":"https:\/\/boostique.pl\/privacy-policy\/"},"modified":"2026-02-26T14:19:44","modified_gmt":"2026-02-26T13:19:44","slug":"privacy-policy","status":"publish","type":"page","link":"https:\/\/boostique.pl\/en\/privacy-policy\/","title":{"rendered":"Privacy Policy"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2343\" class=\"elementor elementor-2343 elementor-3\" 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-e80d8b3 elementor-widget elementor-widget-html\" data-id=\"e80d8b3\" 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\">Privacy Policy<\/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>1. GENERAL PROVISIONS<\/strong><\/p><p>1.1. This privacy policy of the Online Store is informative, which means that it is not a source of obligations for the Service Recipients or Customers of the Online Store. 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. <\/p><p>1.2. The administrator of personal data collected through the Online Shop is \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 92-508 \u0141\u00f3d\u017a and the address for delivery: 19A Wr\u00f3blewskiego MAG.14,  NIP 9820269125, REGON 101019524, e-mail address: <a href=\"mailto:info@olfactive.pl\">info@olfactive.pl<\/a>, phone number: 519 614 314 \u2013 hereinafter referred to as the &#8220;Administrator&#8221; and being at the same time the Service Provider of the Online Store and the Seller.  <\/p><p>1.3. Personal data in the Online Store are processed by the Administrator in accordance with the applicable provisions of law, in particular in accordance with Regulation (EU) 2016\/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95\/46\/EC (General Data Protection Regulation) \u2013 hereinafter referred to as &#8220;GDPR&#8221; or &#8220;GDPR Regulation&#8221;. Official text of the GDPR Regulation: <span style=\"text-decoration: underline;\"><a href=\"http:\/\/eur-lex.europa.eu\/legal-content\/PL\/TXT\/?uri=CELEX%3A32016R0679\" target=\"_blank\" rel=\"noopener\">eur-lex.europa.eu\/legal-content\/PL\/TXT\/?uri=CELEX%3A32016R0679<\/a><\/span>  <\/p><p>1.4. The use of the Online Store, including making purchases, is voluntary. Similarly, the provision of personal data by the Service Recipient or Client using the Online Shop is voluntary, subject to two exceptions: (1) concluding agreements with the Administrator \u2013 failure to provide personal data necessary to conclude and perform the Sales Agreement or the agreement for the provision of Electronic Services with the Administrator in the cases and to the extent indicated on the Online Store&#8217;s website and in the Online Shop Terms and Conditions and this privacy policy. results in the impossibility of concluding such an agreement. In such a case, providing personal data is a contractual requirement and if the data subject wants to conclude a given agreement with the Administrator, he or she is obliged to provide the required data. Each time, the scope of data required to conclude the agreement is indicated in advance on the website of the Online Store and in the Terms and Conditions of the Online Store; (2) statutory obligations of the Administrator \u2013 providing personal data is a statutory requirement resulting from generally applicable provisions of law imposing on the Administrator the obligation to process personal data (e.g. processing data for the purpose of keeping tax or accounting books) and failure to provide them will prevent the Administrator from performing these obligations.   <\/p><p>1.5. The Administrator takes special care to protect the interests of persons to whom the personal data processed by him relates, and in particular is responsible for and ensures that the data collected by him are: (1) processed in accordance with the law; (2) collected for specified, lawful purposes and not further processed inconsistent with those purposes; (3) factually correct and adequate in relation to the purposes for which they are processed; (4) stored in a form that allows the identification of data subjects for no longer than is necessary to achieve the purpose of the processing, and (5) processed in a manner that ensures adequate security of personal data, including protection against unauthorized or unlawful processing and accidental loss, destruction or damage, by appropriate technical or organizational measures.<\/p><p>1.6. Taking into account the nature, scope, context and purposes of the processing and the risk of violation of the rights or freedoms of natural persons of varying probability and severity of the threat, the Controller shall implement appropriate technical and organizational measures to ensure that the processing is carried out in accordance with this Regulation and to be able to demonstrate it. These measures are reviewed and updated as necessary. The Administrator applies technical measures to prevent unauthorized persons from obtaining and modifying personal data sent electronically.  <\/p><p>1.7. All words, phrases and acronyms appearing in this privacy policy and beginning with a capital letter (e.g. Seller, Online Store, Electronic Service) should be understood in accordance with their definition contained in the Terms and Conditions of the Online Store available on the pages of the Online Store.<\/p><p><strong>2. GROUNDS FOR DATA PROCESSING<\/strong><\/p><p>2.1. The Controller is entitled to process personal data in cases where \u2013 and to the extent \u2013 at least one of the following conditions is met: (1) the data subject has consented to the processing of his or her personal data for one or more specified purposes; (2) the processing is necessary for the performance of a contract to which the data subject is a party or to take action at the request of the data subject prior to entering into a contract; (3) the processing is necessary for compliance with a legal obligation to which the Controller is subject; or (4) the processing is necessary for the purposes resulting from the legitimate interests pursued by the Controller or by a third party, except for situations where the interests or fundamental rights and freedoms of the data subject requiring the protection of personal data override these interests, in particular when the data subject is a child.<\/p><p>2.2. The processing of personal data by the Administrator requires each time at least one of the grounds indicated in point 2.1 of the privacy policy. The specific grounds for processing the personal data of Service Recipients and Customers of the Online Store by the Administrator are indicated in the next point of the privacy policy \u2013 in relation to the given purpose of personal data processing by the Administrator.  <\/p><p><strong>3. PURPOSE, BASIS, PERIOD AND SCOPE OF DATA PROCESSING IN THE ONLINE SHOP<\/strong><\/p><p>3.1. Each time, the purpose, basis, period and scope as well as the recipients of personal data processed by the Administrator result from the actions taken by a given Service Recipient or Customer in the Online Store. For example, if the Client decides to make purchases in the Online Shop and chooses to collect the purchased Product in person instead of courier delivery, their personal data will be processed for the purpose of performing the concluded Sales Agreement, but they will no longer be made available to the carrier carrying out shipments at the request of the Administrator. <\/p><p>3.2. The Administrator may process personal data in the Online Shop for the following purposes, on the following grounds, in the periods and to the following extent:<\/p><table width=\"1807\"><tbody><tr><td valign=\"top\" width=\"123\"><p>Purpose of data processing<\/p><\/td><td valign=\"top\" width=\"255\"><p>Legal basis for processing and data retention period<\/p><\/td><td valign=\"top\" width=\"257\"><p>Scope of processed data<\/p><\/td><\/tr><tr><td valign=\"top\" width=\"123\"><p>Performance of the Sales Agreement or the agreement for the provision of an Electronic Service or taking action at the request of the data subject prior to the conclusion of the above-mentioned agreements<\/p><\/td><td valign=\"top\" width=\"255\"><p>Article 6(1)(b) of the GDPR (performance of a contract) <\/p><p>The data is stored for the period necessary for the performance, termination or otherwise expiration of the contract concluded.<\/p><\/td><td valign=\"top\" width=\"257\"><p>Maximum range: name and surname; Email address contact phone number; delivery address (street, house number, apartment number, postal code, city, country), address of residence\/business\/registered office (if different from the delivery address).<\/p><p>In the case of Service Recipients or Clients who are not consumers, the Administrator may additionally process the name of the company and the tax identification number (NIP) of the Service Recipient or the Client.<\/p><\/td><\/tr><tr><td valign=\"top\" width=\"123\"><p>Direct marketing<\/p><\/td><td valign=\"top\" width=\"255\"><p>Article 6(1)(f) of the GDPR Regulation (legitimate interest of the controller) <\/p><p>The data are stored for the period of existence of the legitimate interest pursued by the Administrator, but not longer than for the period of limitation of claims against the data subject on account of the business activity conducted by the Administrator. The limitation period is determined by law, in particular the Civil Code (the basic limitation period for claims related to business activity is three years, and for sales contracts two years). <\/p><p>The Administrator may not process data for the purpose of direct marketing in the event of an effective objection in this regard by the data subject.<\/p><\/td><td valign=\"top\" width=\"257\"><p>Email address<\/p><\/td><\/tr><tr><td valign=\"top\" width=\"123\"><p>Marketing<\/p><\/td><td valign=\"top\" width=\"255\"><p>Article 6(1)(a) of the GDPR (consent) <\/p><p>The data is stored until the data subject withdraws his or her consent to further processing of his or her data for this purpose.<\/p><\/td><td valign=\"top\" width=\"257\"><p>Name, email address<\/p><\/td><\/tr><tr><td valign=\"top\" width=\"123\"><p>Expression of opinion by the Client on the concluded Sales Agreement<\/p><\/td><td valign=\"top\" width=\"255\"><p>Article 6(1)(a) of the GDPR Regulation <\/p><p>The data is stored until the data subject withdraws his or her consent to further processing of his or her data for this purpose.<\/p><\/td><td valign=\"top\" width=\"257\"><p>Email address<\/p><\/td><\/tr><tr><td valign=\"top\" width=\"123\"><p>Keeping tax books<\/p><\/td><td valign=\"top\" width=\"255\"><p>Article 6(1)(c) of the GDPR Regulation in conjunction with Article 86(1) of the Tax Ordinance, i.e. of 17 January 2017 (Journal of Laws of 2017, item 201)     <\/p><p>The data are stored for the period required by law requiring the Administrator to store tax books (until the expiry of the limitation period for tax liability, unless tax laws provide otherwise)<\/p><\/td><td valign=\"top\" width=\"257\"><p>Name; address of residence\/business\/registered office (if it is different from the delivery address), company name and tax identification number (NIP) of the Service Recipient or Client<\/p><\/td><\/tr><tr><td valign=\"top\" width=\"123\"><p>Establishing, pursuing or defending claims that may be raised by the Administrator or that may be raised against the Administrator<\/p><\/td><td valign=\"top\" width=\"255\"><p>Article 6(1)(f) of the GDPR <\/p><p>The data are stored for the period of existence of the legitimate interest pursued by the Administrator, but not longer than for the period of limitation of claims against the data subject on account of the business activity conducted by the Administrator. The limitation period is determined by law, in particular the Civil Code (the basic limitation period for claims related to business activity is three years, and for sales contracts two years). <\/p><\/td><td valign=\"top\" width=\"257\"><p>Name; contact phone number; Email address delivery address (street, house number, apartment number, postal code, city, country), address of residence\/business\/registered office (if different from the delivery address).<\/p><p>In the case of Service Recipients or Clients who are not consumers, the Administrator may additionally process the name of the company and the tax identification number (NIP) of the Service Recipient or the Client.<\/p><\/td><\/tr><\/tbody><\/table><p><strong>4. RECIPIENTS OF DATA IN THE ONLINE STORE<\/strong><\/p><p>4.1. For the proper functioning of the Online Store, including the execution of the concluded Sales Agreements, it is necessary for the Administrator to use the services of external entities (such as e.g. a software provider, courier or payment processor). The Controller uses only the services of such processors who provide sufficient guarantees for the implementation of appropriate technical and organisational measures so that the processing meets the requirements of the GDPR Regulation and protects the rights of data subjects. <\/p><p>4.2. The transfer of data by the Administrator does not take place in every case and not to all recipients or categories of recipients indicated in the privacy policy \u2013 the Administrator transfers data only when it is necessary to achieve a given purpose of personal data processing and only to the extent necessary to achieve it. For example, if the Client uses personal collection, their data will not be transferred to the carrier cooperating with the Administrator. <\/p><p>4.3. Personal data of Service Recipients and Customers of the Online Store may be transferred to the following recipients or categories of recipients:<\/p><p>4.3.1. carriers \/ forwarders \/ courier brokers \u2013 in the case of a Client who uses the method of delivery of the Product by post or courier in the Online Store, the Administrator makes the collected personal data of the Client available to the selected carrier, forwarder or intermediary carrying out shipments at the request of the Administrator to the extent necessary to deliver the Product to the Client.<\/p><p>4.3.2. entities handling electronic payments or payment cards \u2013 in the case of a Client who uses the method of electronic payments or a payment card in the Online Shop, the Administrator makes the collected personal data of the Client available to the selected entity handling the above payments in the Online Shop at the request of the Administrator to the extent necessary to handle the payment made by the Client.<\/p><p>4.3.3. creditors\/lessors \u2013 in the case of a Client who uses the installment payment method or leasing payment in the Online Shop, the Administrator makes the collected personal data of the Client available to the selected creditor or lessor handling the above payments in the Online Shop at the request of the Administrator to the extent necessary to handle the payment made by the Client.<\/p><p>4.3.4. service providers supplying the Administrator with technical, IT and organizational solutions enabling the Administrator to conduct business activity, including the Online Store and the Electronic Services provided through it (in particular, providers of computer software for running the Online Store, e-mail and hosting providers, and software providers for company management and providing technical support to the Administrator) \u2013  The Administrator makes the collected personal data of the Client available to the selected provider acting on the Client&#8217;s behalf only in the case and to the extent necessary to achieve a given purpose of data processing in accordance with this privacy policy.<\/p><p>4.3.5. providers of accounting, legal and advisory services providing the Administrator with accounting, legal or advisory support (in particular an accounting office, law firm or debt collection company) \u2013 the Administrator makes the collected personal data of the Client available to the selected provider acting on his behalf only in the case and to the extent necessary to achieve a given purpose of data processing in accordance with this privacy policy.<\/p><p><strong>5. PROFILING IN THE ONLINE STORE<\/strong><\/p><p>5.1. The GDPR Regulation imposes an obligation on the Controller to inform about automated decision-making, including profiling, referred to in Article 22(1) and (4) of the GDPR Regulation, and \u2013 at least in these cases \u2013 relevant information about the principles of making such decisions, as well as about the significance and expected consequences of such processing for the data subject. With this in mind, the Administrator provides information on possible profiling in this section of the privacy policy.   <\/p><p>5.2. The Administrator may use profiling in the Online Store for the purposes of direct marketing, but the decisions made on the basis of it by the Administrator do not concern the conclusion or refusal to conclude the Sales Agreement, or the possibility of using Electronic Services in the Online Store. The effect of using profiling in the Online Store may be, for example, granting a given person a discount, sending them a discount code, reminding them of unfinished purchases, sending a proposal for a Product that may correspond to the interests or preferences of a given person, or proposing better conditions compared to the standard offer of the Online Store. Despite profiling, it is the person who freely decides whether they want to take advantage of the discount received in this way, or better conditions and make a purchase in the Online Store.  <\/p><p>5.3. Profiling in the Online Store consists in automatic analysis or forecasting of a given person&#8217;s behaviour on the Online Shop website, e.g. by adding a specific Product to the cart, browsing the page of a specific Product in the Online Shop, or by analysing the history of purchases made in the Online Shop. The condition for such profiling is that the Administrator has the personal data of a given person in order to be able to send him\/her, for example, a discount code. <\/p><p>5.4. The data subject has the right not to be subject to a decision which is based solely on automated processing, including profiling, and produces legal effects concerning that person or similarly significantly affects him\/her.<\/p><p><strong>6. RIGHTS OF THE DATA SUBJECT<\/strong><\/p><p>6.1. Right of access, rectification, restriction, deletion or portability \u2013 the data subject has the right to request from the Administrator access to their personal data, their rectification, deletion (&#8220;right to be forgotten&#8221;) or restriction of processing and has the right to object to processing, as well as the right to transfer their data. Detailed conditions for exercising the above-mentioned rights are indicated in Articles 15-21 of the GDPR Regulation.  <\/p><p>6.2. Right to withdraw consent at any time \u2013 a person whose data is processed by the Administrator on the basis of consent (pursuant to Article 6(1)(a) or Article 9(2)(a) of the GDPR Regulation) has the right to withdraw consent at any time without affecting the lawfulness of processing carried out on the basis of consent before its withdrawal.  <\/p><p>6.3. Right to lodge a complaint with the supervisory authority \u2013 a person whose data is processed by the Administrator has the right to lodge a complaint with the supervisory authority in the manner and procedure specified in the provisions of the GDPR Regulation and Polish law, in particular the Personal Data Protection Act. The supervisory authority in Poland is the President of the Office for Personal Data Protection. <\/p><p>6.4. Right to object \u2013 the data subject has the right to object at any time \u2013 on grounds related to his particular situation \u2013 to the processing of personal data concerning him or her based on Article 6(1)(e) (public interest or tasks) or (f) (legitimate interest of the controller), including profiling on the basis of these provisions. In such a case, the Controller is no longer allowed to process this personal data, unless the Controller demonstrates the existence of compelling legitimate grounds for the processing, which override the interests, rights and freedoms of the data subject, or grounds for establishing, exercising or defending claims.     <\/p><p>6.5. Right to object to direct marketing \u2013 if personal data are processed for the purposes of direct marketing, the data subject has the right to object at any time to the processing of personal data concerning him or her for the purposes of such marketing, including profiling, to the extent that the processing is related to such direct marketing. <\/p><p>6.6. In order to exercise the rights referred to in this section of the privacy policy, the Administrator may be contacted by sending an appropriate message in writing or by e-mail to the Administrator&#8217;s address indicated at the beginning of the privacy policy or by using the contact form available on the Online Store&#8217;s website.<\/p><p><strong>7. COOKIES IN THE ONLINE STORE, OPERATIONAL DATA AND ANALYTICS<\/strong><\/p><p>7.1. Cookies are small text information in the form of text files, sent by the server and saved on the side of the person visiting the Online Shop website (e.g. on the hard drive of a computer, laptop, or on the memory card of a smartphone \u2013 depending on the device used by the visitor to our Online Store). Detailed information on Cookies, as well as the history of their creation, can be found, m.in, here: <a href=\"http:\/\/pl.wikipedia.org\/wiki\/Ciasteczko\" target=\"_blank\" rel=\"noopener\"><span style=\"text-decoration: underline;\">http:\/\/pl.wikipedia.org\/wiki\/Ciasteczko<\/span><\/a>.   <\/p><p>7.2. The Administrator may process the data contained in Cookies when visitors use the Online Shop website for the following purposes:<\/p><p>7.2.1. identify the Service Recipients as logged in to the Online Shop and show that they are logged in;<\/p><p>7.2.2. remember the Products added to the cart for the purpose of placing an Order;<\/p><p>7.2.3. remembering data from completed Order Forms, surveys or login details to the Online Store;<\/p><p>7.2.4. adapting the content of the Online Shop website to the individual preferences of the Service Recipient (e.g. regarding colours, font size, page layout) and optimising the use of the Online Shop pages;<\/p><p>7.2.5. keeping anonymous statistics showing the manner of using the Online Shop&#8217;s website;<\/p><p>7.2.6. remarketing, i.e. the study of the behavioural characteristics of visitors to the Online Shop through anonymous analysis of their actions (e.g. repeated visits to specific pages, keywords, etc.) in order to create their profile and provide them with advertisements tailored to their anticipated interests, also when they visit other websites in the advertising network of Google Ireland Ltd. and Facebook Ireland Ltd.; <\/p><p>7.3. By default, most web browsers available on the market accept the saving of cookies by default. Everyone has the opportunity to determine the terms of use of Cookies using the settings of their own web browser. This means that it is possible, for example, to partially limit (e.g. temporarily) or completely disable the possibility of saving Cookies \u2013 in the latter case, however, it may affect some functionalities of the Online Store (for example, it may be impossible to go through the Order path through the Order Form due to not remembering the Products in the cart during the subsequent steps of placing an Order).  <\/p><p>7.4. The settings of the web browser in the field of Cookies are important from the point of view of consent to the use of Cookies by our Online Shop \u2013 in accordance with the regulations, such consent may also be expressed through the settings of the web browser. In the absence of such consent, the settings of the web browser in the field of Cookies should be changed accordingly. <\/p><p>7.5. Detailed information on changing the settings regarding Cookies and their deletion yourself in the most popular web browsers is available in the help section of the web browser and on the following pages (just click on the link):<\/p><p><span style=\"text-decoration: underline;\"><a href=\"http:\/\/support.google.com\/chrome\/bin\/answer.py?hl=pl&amp;answer=95647\" target=\"_blank\" rel=\"noopener\">in Chrome<\/a><\/span><\/p><p><span style=\"text-decoration: underline;\"><a href=\"http:\/\/support.mozilla.org\/pl\/kb\/W%C5%82%C4%85czanie%20i%20wy%C5%82%C4%85czanie%20obs%C5%82ugi%20ciasteczek\" target=\"_blank\" rel=\"noopener\">in Firefox<\/a><\/span><\/p><p><span style=\"text-decoration: underline;\"><a href=\"https:\/\/support.microsoft.com\/pl-pl\/help\/17442\/windows-internet-explorer-delete-manage-cookies\" target=\"_blank\" rel=\"noopener\">in Internet Explorer<\/a><\/span><\/p><p><span style=\"text-decoration: underline;\"><a href=\"https:\/\/help.opera.com\/pl\/latest\/web-preferences\/#cookies\" target=\"_blank\" rel=\"noopener\">in the Opera browser<\/a><\/span><\/p><p><span style=\"text-decoration: underline;\"><a href=\"https:\/\/support.apple.com\/pl-pl\/guide\/safari\/sfri11471\/11.0\/mac\/10.13\" target=\"_blank\" rel=\"noopener\">in Safari<\/a><\/span><\/p><p><span style=\"text-decoration: underline;\"><a href=\"http:\/\/windows.microsoft.com\/pl-pl\/windows-10\/edge-privacy-faq\" target=\"_blank\" rel=\"noopener\">in Microsoft Edge<\/a><\/span><\/p><p>7.6. The Administrator may use Google Analytics, Universal Analytics services provided by Google Ireland Limited (Gordon House, Barrow Street, Dublin 4, Ireland) and the Facebook Pixel service provided by Facebook Ireland Limited (4 Grand Canal Square, Grand Canal Harbour, Dublin 2, Ireland) in the Online Store. These services help the Administrator to analyze traffic in the Online Store. The collected data are processed as part of the above services in an anonymized manner (these are the so-called operational data that make it impossible to identify a person) to generate statistics helpful in the administration of the Online Store. These data are aggregated and anonymous, i.e. they do not contain identifying features (personal data) of persons visiting the Online Shop&#8217;s website. By using the above services in the Online Shop, the Administrator collects such data as the sources and medium of acquiring visitors to the Online Shop and the manner of their behaviour on the Online Shop website, information on the devices and browsers from which they visit the website, IP and domain, geographical data and demographic data (age, gender) and interests.     <\/p><p>7.7. It is possible to easily block a person from sharing information about their activity on the Online Shop website to Google Analytics \u2013 for this purpose, you can install the browser add-on provided by Google Ireland Ltd., available here: <span style=\"text-decoration: underline;\"><a href=\"https:\/\/tools.google.com\/dlpage\/gaoptout?hl=pl\" target=\"_blank\" rel=\"noopener\">tools.google.com\/dlpage\/gaoptout?hl=pl<\/a><\/span>. <\/p><p>7.8. The Administrator may use the Facebook Pixel service provided by Facebook Ireland Limited (4 Grand Canal Square, Grand Canal Harbour, Dublin 2, Ireland) in the Online Store. This service helps the Administrator to measure the effectiveness of advertisements and find out what actions visitors to the online store take, as well as to display tailored ads to these people. Detailed information about how the Facebook Pixel works can be found at the following internet address: <span style=\"text-decoration: underline;\"><a href=\"https:\/\/www.facebook.com\/business\/help\/742478679120153?helpref=page_content\" target=\"_blank\" rel=\"noopener\">facebook.com\/business\/help\/742478679120153?helpref=page_content<\/a><\/span>.  <\/p><p>7.9. You can manage the Facebook Pixel by setting up ads in your Facebook.com account: <span style=\"text-decoration: underline;\"><a href=\"https:\/\/www.facebook.com\/ads\/preferences\/?entry_product=ad_settings_screen\" target=\"_blank\" rel=\"noopener\">facebook.com\/ads\/preferences\/?entry_product=ad_settings_screen<\/a><\/span><\/p><p><strong>8. FINAL PROVISIONS<\/strong><\/p><p>The Online Shop may contain links to other websites. The administrator urges you to read the privacy policy set out there after going to other sites. This privacy policy applies only to the Administrator&#8217;s Online Store.  <\/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>Privacy Policy 1. GENERAL PROVISIONS 1.1. This privacy policy of the Online Store is informative, which means that it is not a source of obligations for the Service Recipients or Customers of the Online Store. The Privacy Policy primarily contains the rules concerning the processing of personal data by the Administrator in the Online Shop, [&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-2343","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2343","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=2343"}],"version-history":[{"count":2,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2343\/revisions"}],"predecessor-version":[{"id":2347,"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/pages\/2343\/revisions\/2347"}],"wp:attachment":[{"href":"https:\/\/boostique.pl\/en\/wp-json\/wp\/v2\/media?parent=2343"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}