{"id":430,"date":"2024-01-11T15:53:34","date_gmt":"2024-01-11T15:53:34","guid":{"rendered":"https:\/\/becocktails.com\/?page_id=430"},"modified":"2024-07-16T14:45:56","modified_gmt":"2024-07-16T14:45:56","slug":"cookies-policy","status":"publish","type":"page","link":"https:\/\/becocktails.com\/?page_id=430","title":{"rendered":"Cookies Policy"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"430\" class=\"elementor elementor-430\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-da296d5 e-flex e-con-boxed e-con e-parent\" data-id=\"da296d5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e5df8fb e-flex e-con-boxed e-con e-child\" data-id=\"e5df8fb\" 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-0d36400 elementor-widget elementor-widget-heading\" data-id=\"0d36400\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Introduction<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<style>\n    .external-cart-item-image {\n        position: relative;\n    }\n\n    .added-to-cart-notification {\n        display: none;\n        text-transform: uppercase;\n        color: #FFFFFF;\n        background-color: #D30859;\n        padding: 10px;\n        z-index: 99;\n        opacity: 0;\n        animation: fadeInOut 6s ease-in-out;\n        position: absolute;\n        bottom: 5px;\n        left: 0;\n        right: 0;\n        text-align: center;\n    }\n\n    @keyframes fadeInOut {\n        0%, 100% {\n            opacity: 0;\n        }\n        10%, 90% {\n            opacity: 1; \n        }\n        100% {\n            opacity: 0;\n        }\n    }\n<\/style>\n\n<script\n  src=\"https:\/\/code.jquery.com\/jquery-3.7.1.js\"\n  integrity=\"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"\n  crossorigin=\"anonymous\"><\/script>\n\n<script>\njQuery.noConflict();\njQuery(document).ready(function($) {\n    \/\/ Function to add an item to the cart\n    function addToCart(productId, productPrice, quantity, notificationIndex, postID, productImage, productTitle) {\n        \/\/ Retrieve the existing cart data from the cookie\n        var cart = getCartFromCookie();\n\n        \/\/ Check if the item is already in the cart\n        var existingItem = cart.find(function(item) {\n            return item.id === productId;\n        });\n\n        if (existingItem) {\n            \/\/ If the item already exists, update its quantity\n            existingItem.quantity += quantity;\n        } else {\n            \/\/ If it doesn't exist, add it as a new item with all the details\n            cart.push({\n                id: productId,\n                price: productPrice,\n                quantity: quantity,\n                postID: postID,\n                image: productImage,\n                title: productTitle\n            });\n        }\n\n        \/\/ Update the cart data in the cookie\n        setCartCookie(cart);\n\n        \/\/ Show the corresponding notification\n        showNotification(notificationIndex);\n\n        \/\/ Log data to the console\n        \/\/ console.log('Product ID:', productId);\n        \/\/ console.log('Product Price:', productPrice);\n        \/\/ console.log('Quantity:', quantity);\n        \/\/ console.log('Post ID:', postID);\n        \/\/ console.log('Image:', productImage);\n        \/\/ console.log('Title:', productTitle);\n    }\n\n    \/\/ Function to retrieve the cart data from the cookie\n    function getCartFromCookie() {\n        var cartCookie = getCookie('cart-items');\n        return cartCookie ? JSON.parse(cartCookie) : [];\n   }\n\n    \/\/ Function to set the cart data in the cookie\n    function setCartCookie(cart) {\n        var cartCookie = JSON.stringify(cart);\n        setCookie('cart-items', cartCookie, 7); \/\/ Expires in 7 days (you can adjust this)\n   }\n\n    \/\/ Function to get a cookie value by name\n    function getCookie(name) {\n        var value = \"; \" + document.cookie;\n        var parts = value.split(\"; \" + name + \"=\");\n        if (parts.length == 2) return parts.pop().split(\";\").shift();\n    }\n\n    \/\/ Function to set a cookie\n    function setCookie(name, value, days) {\n        var expires = \"\";\n        if (days) {\n            var date = new Date();\n            date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));\n            expires = \"; expires=\" + date.toUTCString();\n        }\n        document.cookie = name + \"=\" + value + expires + \"; path=\/\";\n    }\n\n    \/\/ Function to show the notification\n    function showNotification(notificationIndex) {\n        var notificationBar = document.getElementById('addedToCartNotification' + notificationIndex);\n        notificationBar.style.display = 'block';\n\n        setTimeout(function () {\n            notificationBar.style.display = 'none';\n        }, 3000);\n    }\n\n    \/\/ Event listener for the \"Add to Cart\" button\n    $('.atc-button').on('click', function() {\n        var productId = $(this).data('product-id');\n        var productPrice = $(this).data('product-price');\n        var notificationIndex = $(this).data('notification-id');\n        var postID = $(this).data('post-id');\n        var productImage = $(this).data('product-image');\n        var productImageSrc = productImage;\n        var productTitle = $(this).data('product-title');\n        var quantity = 1;\n\n        \/\/ Call the addToCart function to add the item to the cart and show the notification\n        addToCart(productId, productPrice, quantity, notificationIndex, postID, productImageSrc, productTitle);\n    });\n\n    \/\/ Log that the script has loaded\n    console.log('External Cart script loaded');\n});\n<\/script>\n\n<script>\n    jQuery.noConflict();\n    jQuery(document).ready(function($) {\n        $('.add-to-cart-form').on('submit', function(e) {\n            e.preventDefault(); \/\/ Prevent the form from submitting normally\n\n            \/\/ Get form data\n            var formData = $(this).serializeArray();\n\n            \/\/ Create an object to store product details\n            var productData = {};\n            formData.forEach(function(item) {\n                productData[item.name] = item.value;\n            });\n\n            \/\/ Call the addToCart function to add the item to the cart\n            addToCart(productData);\n\n            \/\/ Show the notification after adding to cart\n            showNotificationAfterRefresh();\n\n            \/\/ Optionally, you can redirect the user to a cart page or show a success message\n            \/\/ For now, let's simply reload the page\n            location.reload();\n        });\n\n        function addToCart(productData) {\n            \/\/ Retrieve the existing cart data from the cookie\n            var cart = getCartFromCookie();\n\n            \/\/ Check if the item is already in the cart\n            var existingItem = cart.find(function(item) {\n                return item.id === parseInt(productData.id, 10);\n            });\n\n            if (existingItem) {\n                \/\/ If the item already exists, update its quantity\n                existingItem.quantity += parseInt(productData.quantity, 10);\n            } else {\n                \/\/ If it doesn't exist, add it as a new item with all the details\n                cart.push({\n                    id: parseInt(productData.id, 10), \/\/ Convert to integer\n                    price: parseFloat(productData.price), \/\/ Keep as float, or use parseInt if price should be an integer\n                    quantity: parseInt(productData.quantity, 10),\n                    image: productData.image,\n                    title: productData.title\n                });\n\n                \/\/ Store information about the added item in session storage\n                storeAddedItem(productData.title);\n            }\n\n            \/\/ Update the cart data in the cookie\n            setCartCookie(cart);\n\n            \/\/ Optionally, you can show a success message or update the UI\n            console.log(\"Product added to cart:\", productData);\n        }\n\n        \/\/ Function to store information about the added item in a cookie\n        function storeAddedItem(productTitle) {\n            setCookie('addedItem', productTitle, 1); \/\/ Expires in 1 day (you can adjust this)\n        }\n\n        \/\/ Function to retrieve information about the added item from the cookie\n        function getAddedItem() {\n            return getCookie('addedItem');\n        }\n\n        \/\/ Function to show a notification after the page refresh\n        function showNotificationAfterRefresh() {\n            var encodedTitle = getAddedItem();\n\n            if (encodedTitle) {\n                \/\/ Decode the product title before creating the notification\n                var productTitle = decodeURIComponent(encodedTitle);\n\n                \/\/ Create a notification element\n                var notification = $('<div class=\"notification\">This item has been added to your basket<button class=\"cart-link\">Go to Cart<\/button><\/div>');\n\n                \/\/ Append the notification to the container\n                $('#notification-container').html(notification);\n\n                \/\/ Set up the event listener for the \"Go to Cart\" button\n                $('.cart-link', notification).on('click', function() {\n                    \/\/ Redirect to the cart page or perform any other desired action\n                    alert('Redirecting to the cart page'); \/\/ Replace with your actual logic\n                });\n\n                \/\/ Remove the stored item information from the cookie\n                setCookie('addedItem', '', -1); \/\/ Expire the cookie\n            }\n        }\n\n        \/\/ Function to retrieve the cart data from the cookie\n        function getCartFromCookie() {\n            var cartCookie = getCookie('cart-items');\n            return cartCookie ? JSON.parse(cartCookie) : [];\n        }\n\n        \/\/ Function to set the cart data in the cookie\n        function setCartCookie(cart) {\n            var cartCookie = JSON.stringify(cart);\n            setCookie('cart-items', cartCookie, 7); \/\/ Expires in 7 days (you can adjust this)\n        }\n\n        \/\/ Function to get a cookie value by name\n        function getCookie(name) {\n            var value = \"; \" + document.cookie;\n            var parts = value.split(\"; \" + name + \"=\");\n            if (parts.length == 2) return parts.pop().split(\";\").shift();\n        }\n\n        \/\/ Function to set a cookie\n        function setCookie(name, value, days) {\n            var expires = \"\";\n            if (days) {\n                var date = new Date();\n                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));\n                expires = \"; expires=\" + date.toUTCString();\n            }\n            document.cookie = name + \"=\" + value + expires + \"; path=\/\";\n        }\n    });\n<\/script>\t\t<div class=\"elementor-element elementor-element-2402064 elementor-widget elementor-widget-text-editor\" data-id=\"2402064\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tbe. cocktails, registered under Global Brands Ltd of 5th Floor CASA, Lockoford Lane, Chesterfield, Derbyshire, S41 7JB, UK (Companies House Reg: 03366749) respects the privacy of every individual who visits our websites. This Cookie \/ Privacy Policy outlines the information Global Brands Ltd may collect and how we may use that information.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-04bb883 e-flex e-con-boxed e-con e-child\" data-id=\"04bb883\" 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-dc4813e elementor-widget elementor-widget-heading\" data-id=\"dc4813e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">What are cookies<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-61e6617 elementor-widget elementor-widget-text-editor\" data-id=\"61e6617\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tAs it is common practice with almost all professional websites, this site uses cookies. Cookies are tiny files that are downloaded to your computer, to improve your experience. This page describes what information they gather, how we use it and why we sometimes need to store these cookies. We will also share how you can prevent these cookies from being stored however this may downgrade or \u2018break\u2019 certain elements of the sites functionality.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a783996 elementor-widget elementor-widget-text-editor\" data-id=\"a783996\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tFor more general information on cookies see the <a href=\"https:\/\/en.wikipedia.org\/wiki\/HTTP_cookie\" target=\"_blank\">Wikipedia article on HTTP Cookies<\/a>.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-72696b2 e-flex e-con-boxed e-con e-child\" data-id=\"72696b2\" 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-6fe419e elementor-widget elementor-widget-heading\" data-id=\"6fe419e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Personal Data<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2bcdc46 elementor-widget elementor-widget-text-editor\" data-id=\"2bcdc46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Global Brands Ltd will not collect any personally-identifiable information about you (e.g. your name, address, telephone number or email address (\u201cpersonal data\u201d)) through our website unless you have provided it to us voluntarily. If you do not want your personal data collected, please do not submit it to us.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8fa606a elementor-widget elementor-widget-text-editor\" data-id=\"8fa606a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWhen you do provide us with personal data, we may use that information in the following ways, unless stated otherwise:\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0f5aebb elementor-widget elementor-widget-text-editor\" data-id=\"0f5aebb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWe may store and process that information to better understand your needs and how we can improve our products and services;\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52c804e elementor-widget elementor-widget-text-editor\" data-id=\"52c804e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWe (or a fulfilment house or other third party on our behalf in connection with a promotion) may use that information to contact you; and\/or\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-22c40c2 elementor-widget elementor-widget-text-editor\" data-id=\"22c40c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWe may provide other third parties with summary (but not individual) information about visitors to or users of our sites.\nAdditional Information Collected Automatically.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-09ac8e4 elementor-widget elementor-widget-text-editor\" data-id=\"09ac8e4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tIn some cases, we may automatically (i.e. not via registration) collect technical information when you connect to our site that is not personally-identifiable. Examples of this type of information include the type of Internet Browser you are using, the type of computer operating system you are using and the domain name of the website from which you clicked through to our site.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-febf56f e-flex e-con-boxed e-con e-child\" data-id=\"febf56f\" 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-a06329a elementor-widget elementor-widget-heading\" data-id=\"a06329a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Info placed automatically on your device - cookies<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41982c3 elementor-widget elementor-widget-text-editor\" data-id=\"41982c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWhen you view one of our websites, we may store some information on your computer. This information will be in the form of a \u201cCookie\u201d or similar file and can help us in many ways. For example, Cookies allow us to tailor a website to better match your interests and preferences. With most Internet Browsers, you can erase Cookies from your computer hard drive, block all Cookies or receive a warning before a Cookie is stored. Please refer to your Browser instructions or help screen to learn more about these functions.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ef8600c e-flex e-con-boxed e-con e-child\" data-id=\"ef8600c\" 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-f594263 elementor-widget elementor-widget-heading\" data-id=\"f594263\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The cookies we set<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a305a17 elementor-widget elementor-widget-text-editor\" data-id=\"a305a17\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>This site may offer newsletter or email subscription services and cookies may be used to remember if you are already registered and whether to show certain notifications which might only be valid to subscribed\/unsubscribed users.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8b67acf elementor-widget elementor-widget-text-editor\" data-id=\"8b67acf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWhen you submit data to this website through a form such as those found on contact pages or comment forms, cookies may be set to remember your user details for future correspondence.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c6ed2f2 e-flex e-con-boxed e-con e-child\" data-id=\"c6ed2f2\" 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-a42cf12 elementor-widget elementor-widget-heading\" data-id=\"a42cf12\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Third party cookies<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7673822 elementor-widget elementor-widget-text-editor\" data-id=\"7673822\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tIn some special cases we also use cookies provided by trusted third parties. The following section details which third party cookies you might encounter through this site.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dcb541b elementor-widget elementor-widget-text-editor\" data-id=\"dcb541b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tThis site uses Google Analytics (which is one of the most widespread and trusted analytics solutions on the internet) for helping us to understand how you use the site and ways that we can improve your experience. These cookies may track things such as how long you spend on the site and the pages that you visit so we can continue to produce engaging content.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8c8e6f9 elementor-widget elementor-widget-text-editor\" data-id=\"8c8e6f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tFor more information on Google Analytics cookies, see the <a href=\"https:\/\/developers.google.com\/analytics\/devguides\/collection\/analyticsjs\/cookie-usage\" target=\"_blank\">official Google Analytics page<\/a>.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-14e351a elementor-widget elementor-widget-text-editor\" data-id=\"14e351a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tFrom time to time we may test new features and make subtle changes to the way that the site is delivered. When we are still testing new features these cookies may be used to ensure that you receive a consistent experience whilst on the site whilst ensuring we understand which optimisations our users appreciate the most.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7ea63ff elementor-widget elementor-widget-text-editor\" data-id=\"7ea63ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tWe also use social media buttons and\/or plugins on this site that allow you to connect with your social network in various ways. For these to work the following social media sites including; Facebook, Twitter, Instagram, Pinterest, will set cookies through our site which may be used to enhance your profile on their site or contribute to the data they hold for various purposes outlined in their respective privacy policies.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-408c291 e-flex e-con-boxed e-con e-child\" data-id=\"408c291\" 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-bdbcd69 elementor-widget elementor-widget-heading\" data-id=\"bdbcd69\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Sale of business<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0af7e1e elementor-widget elementor-widget-text-editor\" data-id=\"0af7e1e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tIf this business is sold or integrated with another business your details may be disclosed to our advisers and any prospective purchasers and their advisers and will be passed on to the new owners of the business.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8df6bd2 e-flex e-con-boxed e-con e-child\" data-id=\"8df6bd2\" 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-852fad6 elementor-widget elementor-widget-heading\" data-id=\"852fad6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Updating your details<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0c8c0 elementor-widget elementor-widget-text-editor\" data-id=\"0a0c8c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tIf any of the information that you have provided to Global Brands Ltd changes, for example if you change your e-mail address, name or payment details or if you wish to cancel your registration, please let us know the correct details by sending an email to <a href=\"mailto:development@claycreative.co.uk\" target=\"_blank\">development@claycreative.co.uk<\/a>.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f477341 e-flex e-con-boxed e-con e-child\" data-id=\"f477341\" 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-fcf157f elementor-widget elementor-widget-heading\" data-id=\"fcf157f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Disabling cookies<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e3908dd elementor-widget elementor-widget-text-editor\" data-id=\"e3908dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tYou can prevent the setting of cookies by adjusting the settings in your browser (see your browser Help for how to do this). Be aware that disabling cookies will affect the functionality of this and many other websites that you visit. Disabling cookies will usually result in also disabling certain functionality and features of the\/this site. Therefore it is recommended that you do not disable cookies.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d80529f e-flex e-con-boxed e-con e-child\" data-id=\"d80529f\" 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-3215378 elementor-widget elementor-widget-heading\" data-id=\"3215378\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Your consent<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5671cd7 elementor-widget elementor-widget-text-editor\" data-id=\"5671cd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tBy closing the consent message in the footer of this website and\/or submitting your information, you consent to the use of that information as set out in this policy. If we change our privacy policy we will post the changes on this page, and may place notices on other pages of the website, so that you may be aware of the information we collect and how we use it at all times. Continued use of the service will signify that you agree to any such changes.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aac38c1 elementor-widget elementor-widget-text-editor\" data-id=\"aac38c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tOwing to the global nature of the Internet infrastructure, the information you provide may be transferred in transit to countries outside the European Economic Area that do not have similar protections in place regarding your data and its use as set out in this policy. However, we have taken the steps outlined above to try to improve the security of your information. By closing the consent message in the footer of this website and\/or submitting your information, you consent to these transfers.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-db8e7c7 e-flex e-con-boxed e-con e-child\" data-id=\"db8e7c7\" 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-ff0ce2d elementor-widget elementor-widget-heading\" data-id=\"ff0ce2d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">More information<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e58bb38 elementor-widget elementor-widget-text-editor\" data-id=\"e58bb38\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tIf there is something that you aren\u2019t sure whether you need or not, it\u2019s usually safer to leave cookies enabled in case it does interact with one of the features you use on our site. However, if you are still looking for more information, you can contact us by emailing <a href=\"mailto:development@claycreative.co.uk\">development@claycreative.co.uk<\/a>.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\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>Introduction be. cocktails, registered under Global Brands Ltd of 5th Floor CASA, Lockoford Lane, Chesterfield, Derbyshire, S41 7JB, UK (Companies House Reg: 03366749) respects the privacy of every individual who visits our websites. This Cookie \/ Privacy Policy outlines the information Global Brands Ltd may collect and how we may use that information. What are [&hellip;]<\/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-430","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v28.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Cookies Policy - Be. Cocktails<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/becocktails.com\/?page_id=430\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cookies Policy\" \/>\n<meta property=\"og:description\" content=\"Introduction be. cocktails, registered under Global Brands Ltd of 5th Floor CASA, Lockoford Lane, Chesterfield, Derbyshire, S41 7JB, UK (Companies House Reg: 03366749) respects the privacy of every individual who visits our websites. This Cookie \/ Privacy Policy outlines the information Global Brands Ltd may collect and how we may use that information. What are [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/becocktails.com\/?page_id=430\" \/>\n<meta property=\"og:site_name\" content=\"Be. Cocktails\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-16T14:45:56+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=430\",\"url\":\"https:\\\/\\\/becocktails.com\\\/?page_id=430\",\"name\":\"Cookies Policy - Be. Cocktails\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#website\"},\"datePublished\":\"2024-01-11T15:53:34+00:00\",\"dateModified\":\"2024-07-16T14:45:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=430#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/becocktails.com\\\/?page_id=430\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=430#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/becocktails.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cookies Policy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/#website\",\"url\":\"https:\\\/\\\/becocktails.com\\\/\",\"name\":\"Be. Cocktails\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/becocktails.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/#organization\",\"name\":\"Be. Cocktails\",\"url\":\"https:\\\/\\\/becocktails.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/becocktails.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/favicon.png\",\"contentUrl\":\"https:\\\/\\\/becocktails.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"Be. Cocktails\"},\"image\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cookies Policy - Be. Cocktails","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/becocktails.com\/?page_id=430","og_locale":"en_GB","og_type":"article","og_title":"Cookies Policy","og_description":"Introduction be. cocktails, registered under Global Brands Ltd of 5th Floor CASA, Lockoford Lane, Chesterfield, Derbyshire, S41 7JB, UK (Companies House Reg: 03366749) respects the privacy of every individual who visits our websites. This Cookie \/ Privacy Policy outlines the information Global Brands Ltd may collect and how we may use that information. What are [&hellip;]","og_url":"https:\/\/becocktails.com\/?page_id=430","og_site_name":"Be. Cocktails","article_modified_time":"2024-07-16T14:45:56+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/becocktails.com\/?page_id=430","url":"https:\/\/becocktails.com\/?page_id=430","name":"Cookies Policy - Be. Cocktails","isPartOf":{"@id":"https:\/\/becocktails.com\/#website"},"datePublished":"2024-01-11T15:53:34+00:00","dateModified":"2024-07-16T14:45:56+00:00","breadcrumb":{"@id":"https:\/\/becocktails.com\/?page_id=430#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/becocktails.com\/?page_id=430"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/becocktails.com\/?page_id=430#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/becocktails.com\/"},{"@type":"ListItem","position":2,"name":"Cookies Policy"}]},{"@type":"WebSite","@id":"https:\/\/becocktails.com\/#website","url":"https:\/\/becocktails.com\/","name":"Be. Cocktails","description":"","publisher":{"@id":"https:\/\/becocktails.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/becocktails.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/becocktails.com\/#organization","name":"Be. Cocktails","url":"https:\/\/becocktails.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/becocktails.com\/#\/schema\/logo\/image\/","url":"https:\/\/becocktails.com\/wp-content\/uploads\/2024\/01\/favicon.png","contentUrl":"https:\/\/becocktails.com\/wp-content\/uploads\/2024\/01\/favicon.png","width":512,"height":512,"caption":"Be. Cocktails"},"image":{"@id":"https:\/\/becocktails.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/430","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/becocktails.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=430"}],"version-history":[{"count":11,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/430\/revisions"}],"predecessor-version":[{"id":1149,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/430\/revisions\/1149"}],"wp:attachment":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}