{"id":38678,"date":"2024-02-16T15:03:57","date_gmt":"2024-02-16T14:03:57","guid":{"rendered":"https:\/\/doll.shop\/privacy-policy\/"},"modified":"2026-01-20T16:39:53","modified_gmt":"2026-01-20T15:39:53","slug":"privacy-policy","status":"publish","type":"page","link":"https:\/\/doll.shop\/en\/privacy-policy\/","title":{"rendered":"Privacy Policy"},"content":{"rendered":"\n<style>\n    \/* --- CSS VARIABLES --- *\/\n    :root {\n        --ds-primary: #be123c;\n        --ds-primary-bg: #fff1f2;\n        --ds-text-dark: #1f2937;\n        --ds-text-light: #6b7280;\n        --ds-border: #e5e7eb;\n        --ds-bg-body: #f9fafb;\n        --ds-radius: 8px;\n        --ds-header-height: 80px;\n    }\n\n    \/* --- BASE LAYOUT --- *\/\n    .ds-av-wrapper {\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;\n        color: var(--ds-text-dark);\n        line-height: 1.6;\n        max-width: 1200px;\n        margin: 0 auto;\n        padding: 0px;\n        display: grid;\n        grid-template-columns: 1fr 300px;\n        gap: 40px;\n        align-items: start;\n        grid-template-areas: \"main sidebar\";\n    }\n\n    \/* --- MAIN CONTENT --- *\/\n    .ds-content {\n        grid-area: main;\n        background: #fff;\n        padding: 32px;\n        border: 1px solid var(--ds-border);\n        border-radius: var(--ds-radius);\n    }\n\n    .ds-content h2 { margin-top: 0; margin-bottom: 24px; font-size: 24px; }\n    \n    .ds-article { margin-bottom: 40px; scroll-margin-top: 140px; }\n    \n    .ds-article h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; }\n    .ds-article h3::before { content: ''; display: inline-block; width: 4px; height: 18px; background-color: var(--ds-primary); margin-right: 10px; border-radius: 2px; }\n    \n    .ds-content p, .ds-content li { font-size: 15px; color: #374151; margin-bottom: 12px; }\n    .ds-content ul { padding-left: 20px; margin-bottom: 16px; }\n\n    \/* Date styling *\/\n    .privacy-meta {\n        font-size: 13px;\n        color: var(--ds-text-light);\n        margin-bottom: 25px;\n        display: block;\n        border-bottom: 1px solid var(--ds-border);\n        padding-bottom: 15px;\n    }\n\n    \/* Company details box *\/\n    .company-details-box {\n        background-color: var(--ds-bg-body);\n        border-left: 4px solid var(--ds-primary);\n        padding: 20px 25px;\n        margin: 20px 0 30px 0;\n        border-radius: 0 var(--ds-radius) var(--ds-radius) 0;\n    }\n    \n    .detail-row {\n        display: flex;\n        justify-content: space-between;\n        margin-bottom: 8px;\n        border-bottom: 1px solid #e5e5e5;\n        padding-bottom: 8px;\n    }\n    .detail-row:last-child {\n        margin-bottom: 0;\n        border-bottom: none;\n        padding-bottom: 0;\n    }\n    .detail-label {\n        font-weight: 700;\n        color: var(--ds-text-dark);\n        width: 140px;\n        flex-shrink: 0;\n        font-size: 14px;\n    }\n    .detail-value {\n        color: #374151;\n        flex-grow: 1;\n        font-size: 14px;\n    }\n    .detail-value a {\n        color: var(--ds-primary);\n        text-decoration: none;\n    }\n\n    \/* --- SIDEBAR (DESKTOP) --- *\/\n    .ds-sidebar {\n        grid-area: sidebar;\n        background: #fff;\n        border: 1px solid var(--ds-border);\n        border-radius: var(--ds-radius);\n        padding: 24px;\n        position: sticky;\n        top: 100px;\n        z-index: 99;\n    }\n\n    .ds-sidebar-header {\n        display: block;\n        margin-bottom: 16px;\n        border-bottom: 1px solid var(--ds-border);\n        padding-bottom: 10px;\n        cursor: default;\n    }\n\n    .ds-mobile-title-wrapper { display: none; }\n    \n    .ds-sidebar-title-desktop {\n        font-size: 13px;\n        text-transform: uppercase;\n        letter-spacing: 0.05em;\n        color: var(--ds-text-light);\n        font-weight: 700;\n        display: block;\n    }\n\n    .ds-toc-list { list-style: none; padding: 0; margin: 0; }\n    .ds-toc-list li { margin-bottom: 8px; }\n    .ds-toc-list a { text-decoration: none; color: var(--ds-text-dark); font-size: 14px; display: block; padding: 4px 0; transition: color 0.2s; }\n    .ds-toc-list a:hover { color: var(--ds-primary); padding-left: 4px; }\n    \n    .ds-valuedshops { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--ds-border); font-size: 12px; color: var(--ds-text-light); }\n    .ds-valuedshops a { color: var(--ds-text-light); text-decoration: underline; }\n\n    \/* --- MOBILE --- *\/\n    @media (max-width: 900px) {\n        .ds-av-wrapper {\n            display: block; \n            padding: 0px;\n        }\n\n        .ds-content h2.ds-desktop-h2 {\n            display: none;\n        }\n\n        .ds-sidebar {\n            position: sticky;\n            top: var(--ds-header-height);\n            margin: -45px -15px 20px -15px;\n            border-radius: 0;\n            border-left: none;\n            border-right: none;\n            border-bottom: 1px solid var(--ds-border);\n            padding: 0;\n            box-shadow: 0 4px 10px rgba(0,0,0,0.08);\n            z-index: 10; \n        }\n\n        .ds-sidebar-header {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            margin: 0;\n            padding: 15px 20px;\n            background: #fff;\n            cursor: pointer;\n            margin-top: -20px;\n        }\n\n        .ds-sidebar-title-desktop { display: none; }\n\n        .ds-mobile-title-wrapper {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            width: 100%;\n        }\n\n        .ds-mobile-page-title {\n            font-weight: 700;\n            font-size: 16px;\n            color: var(--ds-text-dark);\n        }\n\n        .ds-mobile-toggle-group {\n            display: flex;\n            align-items: center;\n            gap: 8px;\n            font-size: 13px;\n            color: var(--ds-text-light);\n            background: #f3f4f6;\n            padding: 6px 12px;\n            border-radius: 20px;\n        }\n\n        .ds-toggle-icon {\n            width: 8px;\n            height: 8px;\n            border-right: 2px solid var(--ds-text-light);\n            border-bottom: 2px solid var(--ds-text-light);\n            transform: rotate(45deg);\n            transition: transform 0.3s;\n            margin-top: -3px;\n        }\n\n        .ds-sidebar.open .ds-toggle-icon {\n            transform: rotate(-135deg);\n            margin-top: 3px;\n        }\n\n        .ds-sidebar.open .ds-mobile-toggle-group {\n            background: var(--ds-primary-bg);\n            color: var(--ds-primary);\n        }\n\n        .ds-sidebar-content {\n            display: none; \n            background: #fff;\n            padding: 0 20px 20px 20px;\n            border-top: 1px solid var(--ds-border);\n            max-height: 60vh; \n            overflow-y: auto;\n        }\n\n        .ds-sidebar.open .ds-sidebar-content {\n            display: block;\n        }\n\n        .ds-valuedshops { display: none; }\n\n        .ds-content {\n            padding: 15px;\n            margin-left: -15px;\n            margin-right: -15px;\n            border-radius: 0px;\n            border: none;\n        }\n\n        .detail-row {\n            flex-direction: column;\n        }\n        .detail-label {\n            width: 100%;\n            font-size: 13px;\n            text-transform: uppercase;\n            letter-spacing: 0.5px;\n            color: var(--ds-text-light);\n        }\n    }\n<\/style>\n\n<div class=\"ds-av-wrapper\">\n\n    <aside class=\"ds-sidebar\" id=\"privacySidebar\">\n        <div class=\"ds-sidebar-header\" onclick=\"togglePrivacySidebar()\">\n            <div class=\"ds-sidebar-title-desktop\">Topics<\/div>\n\n            <div class=\"ds-mobile-title-wrapper\">\n                <div class=\"ds-mobile-page-title\">Privacy policy<\/div>\n                <div class=\"ds-mobile-toggle-group\">\n                    <span>Topics<\/span>\n                    <div class=\"ds-toggle-icon\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n\n        <div class=\"ds-sidebar-content\">\n            <ul class=\"ds-toc-list\">\n                <li><a href=\"#who\" onclick=\"closePrivacySidebar()\">1. Who are we?<\/a><\/li>\n                <li><a href=\"#what\" onclick=\"closePrivacySidebar()\">2. What data?<\/a><\/li>\n                <li><a href=\"#why\" onclick=\"closePrivacySidebar()\">3. Why do we need it?<\/a><\/li>\n                <li><a href=\"#howlong\" onclick=\"closePrivacySidebar()\">4. Retention period<\/a><\/li>\n                <li><a href=\"#sharing\" onclick=\"closePrivacySidebar()\">5. Sharing with others<\/a><\/li>\n                <li><a href=\"#cookies\" onclick=\"closePrivacySidebar()\">6. Cookies<\/a><\/li>\n                <li><a href=\"#rights\" onclick=\"closePrivacySidebar()\">7. Your rights<\/a><\/li>\n                <li><a href=\"#security\" onclick=\"closePrivacySidebar()\">8. Security<\/a><\/li>\n            <\/ul>\n            <div class=\"ds-valuedshops\">\n                Member of <a href=\"https:\/\/www.valuedshops.com\" target=\"_blank\" rel=\"noopener\">ValuedShops<\/a>.\n            <\/div>\n        <\/div>\n    <\/aside>\n\n    <main class=\"ds-content\">\n        <h2 class=\"ds-desktop-h2\">Privacy policy Doll.shop<\/h2>\n        \n        <span class=\"privacy-meta\">Last updated: January 17, 2026<\/span>\n\n        <p>Your privacy matters to us. In this privacy policy, we explain what data we collect, why we collect it and how we protect it. We process personal data in accordance with the General Data Protection Regulation (GDPR).<\/p>\n\n        <div id=\"who\" class=\"ds-article\">\n            <h3>1. Who are we?<\/h3>\n            <p>The controller responsible for processing personal data is:<\/p>\n\n            <div class=\"company-details-box\">\n                <div class=\"detail-row\">\n                    <span class=\"detail-label\">Trade name<\/span>\n                    <span class=\"detail-value\">Doll.shop (part of DVWZ B.V.)<\/span>\n                <\/div>\n                <div class=\"detail-row\">\n                    <span class=\"detail-label\">Address<\/span>\n                    <span class=\"detail-value\">Celsius 8, 7942 DB Meppel, The Netherlands<\/span>\n                <\/div>\n                <div class=\"detail-row\">\n                    <span class=\"detail-label\">Email<\/span>\n                    <span class=\"detail-value\"><a href=\"mailto:info@doll.shop\">info@doll.shop<\/a><\/span>\n                <\/div>\n                <div class=\"detail-row\">\n                    <span class=\"detail-label\">Registration number<\/span>\n                    <span class=\"detail-value\">82678057<\/span>\n                <\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"what\" class=\"ds-article\">\n            <h3>2. What data do we collect?<\/h3>\n            <p>We process personal data because you use our services and\/or because you provide this data to us yourself:<\/p>\n            <ul>\n                <li><strong>Personal details:<\/strong> first and last name, address and city (for delivery).<\/li>\n                <li><strong>Contact details:<\/strong> email address and phone number (order updates).<\/li>\n                <li><strong>Payment data:<\/strong> IBAN or credit card details (processed via our payment provider).<\/li>\n                <li><strong>Technical data:<\/strong> IP address and information about your browser\/device.<\/li>\n            <\/ul>\n        <\/div>\n\n        <div id=\"why\" class=\"ds-article\">\n            <h3>3. Why do we need this data?<\/h3>\n            <p>We use your data only for the following purposes:<\/p>\n            <ul>\n                <li><strong>Order processing:<\/strong> to process payments and deliver your package.<\/li>\n                <li><strong>Customer service:<\/strong> to contact you when necessary.<\/li>\n                <li><strong>Legal obligations:<\/strong> to store certain data (such as invoices) for tax purposes.<\/li>\n            <\/ul>\n        <\/div>\n\n        <div id=\"howlong\" class=\"ds-article\">\n            <h3>4. How long do we keep your data?<\/h3>\n            <p>We do not keep your personal data longer than strictly necessary.<\/p>\n            <ul>\n                <li><strong>Tax retention:<\/strong> invoices and order data are kept for 7 years.<\/li>\n                <li><strong>Other data:<\/strong> kept for a maximum of 2 years after the last contact, unless legally required otherwise.<\/li>\n            <\/ul>\n        <\/div>\n\n        <div id=\"sharing\" class=\"ds-article\">\n            <h3>5. Sharing with others<\/h3>\n            <p>We <strong>never<\/strong> sell your data to third parties. We only share your data with parties that are necessary to fulfill the agreement:<\/p>\n            <ul>\n                <li><strong>Logistics:<\/strong> courier services (such as UPS, PostNL).<\/li>\n                <li><strong>Payments:<\/strong> our payment provider (Mollie).<\/li>\n                <li><strong>IT &#038; administration:<\/strong> hosting provider and accountant, strictly for technical and administrative support.<\/li>\n            <\/ul>\n        <\/div>\n\n        <div id=\"cookies\" class=\"ds-article\">\n            <h3>6. Cookies<\/h3>\n            <p>Doll.shop uses only technical and functional cookies, and analytical cookies that do not infringe on your privacy.<\/p>\n        <\/div>\n\n        <div id=\"rights\" class=\"ds-article\">\n            <h3>7. Your rights<\/h3>\n            <p>You have the right to access, correct or delete your personal data. You may also withdraw your consent or object to the processing of your personal data at any time.<\/p>\n            <p>Send your request to <a href=\"mailto:info@doll.shop\" style=\"color:#be123c; text-decoration:none;\">info@doll.shop<\/a>. To verify your identity, we may ask for additional information.<\/p>\n        <\/div>\n\n        <div id=\"security\" class=\"ds-article\">\n            <h3>8. Security<\/h3>\n            <p>We take the protection of your data seriously and apply appropriate measures (such as SSL encryption) to prevent misuse, loss or unauthorized access.<\/p>\n        <\/div>\n\n    <\/main>\n<\/div>\n\n<script>\n    function togglePrivacySidebar() {\n        const sidebar = document.getElementById('privacySidebar');\n        sidebar.classList.toggle('open');\n    }\n\n    function closePrivacySidebar() {\n        if (window.innerWidth <= 900) {\n            const sidebar = document.getElementById('privacySidebar');\n            sidebar.classList.remove('open');\n        }\n    }\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Topics Privacy policy Topics 1. Who are we? 2. What data? 3. Why do we need it? 4. Retention period<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-38678","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/pages\/38678","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/comments?post=38678"}],"version-history":[{"count":4,"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/pages\/38678\/revisions"}],"predecessor-version":[{"id":951682,"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/pages\/38678\/revisions\/951682"}],"wp:attachment":[{"href":"https:\/\/doll.shop\/en\/wp-json\/wp\/v2\/media?parent=38678"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}