{"id":437,"date":"2024-01-11T15:54:27","date_gmt":"2024-01-11T15:54:27","guid":{"rendered":"https:\/\/becocktails.com\/?page_id=437"},"modified":"2024-07-16T14:45:32","modified_gmt":"2024-07-16T14:45:32","slug":"terms-conditions","status":"publish","type":"page","link":"https:\/\/becocktails.com\/?page_id=437","title":{"rendered":"Terms &#038; Conditions of Service"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"437\" class=\"elementor elementor-437\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f82658 e-flex e-con-boxed e-con e-parent\" data-id=\"8f82658\" 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-dcab264 e-flex e-con-boxed e-con e-child\" data-id=\"dcab264\" 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-9ec7f27 elementor-widget elementor-widget-heading\" data-id=\"9ec7f27\" 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\">1.0 Overview<\/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-844acf8 elementor-widget elementor-widget-text-editor\" data-id=\"844acf8\" 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 website (\u201csite\u201d) becocktails.com is operated by Global Brands Ltd. Throughout the site, the terms \u201cwe\u201d, \u201cus\u201d and \u201cour\u201d refer to Global Brands Ltd. Global Brands Ltd offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.<\/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-3eb0284 elementor-widget elementor-widget-text-editor\" data-id=\"3eb0284\" 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>By visiting our site and\/or purchasing something from us, you engage in our \u201cService\u201d and agree to be bound by the following terms and conditions (\u201cTerms of Service\u201d, \u201cTerms\u201d), including those additional terms and conditions and policies referenced herein and\/or available by hyperlink. These Terms of Service apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and\/or contributors of content.<\/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-32855cf elementor-widget elementor-widget-text-editor\" data-id=\"32855cf\" 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>Please read these Terms of Service carefully before accessing or using our website. By accessing or using any part of the site, you agree to be bound by these Terms of Service. If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. If these Terms of Service are considered an offer, acceptance is expressly limited to these Terms of Service.<\/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-0568e09 elementor-widget elementor-widget-text-editor\" data-id=\"0568e09\" 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>Any new features or tools which are added to the current store shall also be subject to the Terms of Service. You can review the most current version of the Terms of Service at any time on this page. We reserve the right to update, change or replace any part of these Terms of Service by posting updates and\/or changes to our website. It is your responsibility to check this page periodically for changes. Your continued use of or access to the website following the posting of any changes constitutes acceptance of those changes.<\/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-6ad0710 elementor-widget elementor-widget-text-editor\" data-id=\"6ad0710\" 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>Our store is hosted using Woocommerce on a WordPress site. They provide us with the online e-commerce platform that allows us to sell our products and services to you.<\/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-a64d819 elementor-widget elementor-widget-heading\" data-id=\"a64d819\" 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\">1.1 In these conditions<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0de53ea elementor-widget elementor-widget-text-editor\" data-id=\"0de53ea\" 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>unless the context requires otherwise: \u2018Product\u2019 and \u2018Services\u2019 means the articles which the buyer agrees to buy from the seller pursuant to any Contract. \u2018Seller\u2019 means Global Brands Limited (registered in England under number 03366749) of 5th Floor CASA Hotel, Lockoford Lane, Chesterfield. S41 7JB. \u2018Terms\u2019 and \u2018Conditions\u2019 means the terms and conditions of sale set out in this document and includes any special terms and conditions agreed in writing between the buyer and the seller.<\/p>\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-852db07 e-flex e-con-boxed e-con e-child\" data-id=\"852db07\" 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-51b8d7d elementor-widget elementor-widget-heading\" data-id=\"51b8d7d\" 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\">2.0 Online Shop Terms <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9067728 elementor-widget elementor-widget-text-editor\" data-id=\"9067728\" 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>By agreeing to these Terms of Service, you represent that you are at least aged 18 and will not allow any of your dependents under 18 to use this site. You may not use our products for any illegal or unauthorized purpose nor may you, in the use of the Service, violate any laws in your jurisdiction (including but not limited to copyright laws).<\/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-50bd232 elementor-widget elementor-widget-text-editor\" data-id=\"50bd232\" 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>You must not transmit any worms or viruses or any code of a destructive nature. A breach or violation of any of the Terms will result in an immediate termination of your Services.<\/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-bd1378f elementor-widget elementor-widget-text-editor\" data-id=\"bd1378f\" 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>You accept that orders placed can only be delivered to a UK address (England, Scotland, Wales, Isle of Man, Isles of Scilly) and that this site is designed direct sale to individuals and end consumers and not to trade customers or those intending to re-sell the product.<\/p>\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-25a9051 e-flex e-con-boxed e-con e-child\" data-id=\"25a9051\" 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-04fcd2b elementor-widget elementor-widget-heading\" data-id=\"04fcd2b\" 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\">3.0 General Conditions <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-869e7f4 elementor-widget elementor-widget-text-editor\" data-id=\"869e7f4\" 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>We reserve the right to refuse service to anyone for any reason at any time. You understand that your content (not including credit card information), may be transferred unencrypted and involve (a) transmissions over various networks; and (b) changes to conform and adapt to technical requirements of connecting networks or devices. Credit card information is always encrypted during transfer over networks.<\/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-aecd966 elementor-widget elementor-widget-text-editor\" data-id=\"aecd966\" 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>You agree not to reproduce, duplicate, copy, sell, resell or exploit any portion of the Service, use of the Service, or access to the Service or any contact on the website through which the service is provided, without express written permission by 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-d27e4e5 elementor-widget elementor-widget-text-editor\" data-id=\"d27e4e5\" 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>The headings used in this agreement are included for convenience only and will not limit or otherwise affect these Terms.<\/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-60f6abf elementor-widget elementor-widget-heading\" data-id=\"60f6abf\" 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\">3.1 Accuracy, completeness and timeliness of information <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6887c32 elementor-widget elementor-widget-text-editor\" data-id=\"6887c32\" 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>We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without<\/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-1ad5bb7 elementor-widget elementor-widget-text-editor\" data-id=\"1ad5bb7\" 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>consulting primary, more accurate, more complete or more timely sources of information. Any reliance on the material on this site is at your own risk.<\/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-c934ebc elementor-widget elementor-widget-text-editor\" data-id=\"c934ebc\" 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 contain certain historical information. Historical information, necessarily, is not current and is provided for your reference only. We reserve the right to modify the contents of this site at any time, but we have no obligation to update any information on our site. You agree that it is your responsibility to monitor changes to our site.<\/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-9a85b7c elementor-widget elementor-widget-heading\" data-id=\"9a85b7c\" 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\">3.2 Modifications to the service and prices <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-630c0a8 elementor-widget elementor-widget-text-editor\" data-id=\"630c0a8\" 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>Prices for our products are subject to change without notice. We reserve the right at any time to modify or discontinue the Service (or any part or content thereof) without notice at any time. We shall not be liable to you or to any third-party for any modification, price change, suspension or discontinuance of the Service.<\/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-5f83422 elementor-widget elementor-widget-heading\" data-id=\"5f83422\" 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\">3.3 Products or Services  <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b9d5f32 elementor-widget elementor-widget-text-editor\" data-id=\"b9d5f32\" 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>Certain products or services may be available exclusively online through the website. These products or services may have limited quantities and are subject to return or exchange only according to our Return and Exchange Policy.<\/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-cf2d788 elementor-widget elementor-widget-text-editor\" data-id=\"cf2d788\" 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>We have made every effort to display as accurately as possible the colours and images of our products that appear at the store. We cannot guarantee that your computer monitor\u2019s display of any colour will be accurate.<\/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-e794552 elementor-widget elementor-widget-text-editor\" data-id=\"e794552\" 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>We reserve the right, but are not obligated, to limit the sales of our products or Services to any person, geographic region or jurisdiction. We may exercise this right on a case-by-case basis. We reserve the right to limit the quantities of any products or services that we offer. All descriptions of products or product pricing are subject to change at any time without notice, at the sole discretion of us. We reserve the right to discontinue any product at any time. Any offer for any product or service made on this site is void where prohibited.<\/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-58dae91 elementor-widget elementor-widget-text-editor\" data-id=\"58dae91\" 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>We do not warrant that the quality of any products, services, information, or other material purchased or obtained by you will meet your expectations, or that any errors in the Service will be corrected.<\/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-60e0f78 elementor-widget elementor-widget-heading\" data-id=\"60e0f78\" 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\">3.4 Accuracy of billing and account information  <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b38f875 elementor-widget elementor-widget-text-editor\" data-id=\"b38f875\" 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>We reserve the right to refuse any order you place with us. We may, in our sole discretion, limit or cancel quantities purchased per person, per household or per order. These restrictions may include orders placed by or under the same customer account, the same credit card, and\/or orders that use the same billing and\/or shipping address. In the event that we make a change to or cancel an order, we may attempt to notify you by contacting the email and\/or billing address\/phone number provided at the time the order was made.<\/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-38b80e6 elementor-widget elementor-widget-text-editor\" data-id=\"38b80e6\" 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>We reserve the right to limit or prohibit orders that, in our sole judgment, appear to be placed by dealers, resellers or distributors.<\/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-568d4a1 elementor-widget elementor-widget-text-editor\" data-id=\"568d4a1\" 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>You agree to provide current, complete and accurate purchase and account information for all purchases made at our store. You agree to promptly update your account and other information, including your email address and credit card numbers and expiration dates, so that we can complete your transactions and contact you as needed.<\/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-929e153 elementor-widget elementor-widget-text-editor\" data-id=\"929e153\" 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>For more detail, please review our Returns and Exchange Policy.<\/p>\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-9017b22 e-flex e-con-boxed e-con e-child\" data-id=\"9017b22\" 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-05da942 elementor-widget elementor-widget-heading\" data-id=\"05da942\" 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\">4.0 Optional Tools <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-66bbcbe elementor-widget elementor-widget-text-editor\" data-id=\"66bbcbe\" 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>We may provide you with access to third-party tools over which we neither monitor nor have any control nor input. You acknowledge and agree that we provide access to such tools \u201das is\u201d and \u201cas available\u201d without any warranties, representations or conditions of any kind and without any endorsement. We shall have no liability whatsoever arising from or relating to your use of optional third-party tools.<\/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-54cd386 elementor-widget elementor-widget-text-editor\" data-id=\"54cd386\" 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>Any use by you of optional tools offered through the site is entirely at your own risk and discretion and you should ensure that you are familiar with and approve of the terms on which tools are provided by the relevant third-party provider(s).<\/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-4ace21c elementor-widget elementor-widget-text-editor\" data-id=\"4ace21c\" 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>We may also, in the future, offer new services and\/or features through the website (including, the release of new tools and resources). Such new features and\/or services shall also be subject to these Terms of Service.<\/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-16b8776 elementor-widget elementor-widget-heading\" data-id=\"16b8776\" 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\">4.1 Third Party Links  <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-df78a78 elementor-widget elementor-widget-text-editor\" data-id=\"df78a78\" 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>Certain content, products and services available via our Service may include materials from third-parties. Third-party links on this site may direct you to third-party websites that are not affiliated with us. We are not responsible for examining or evaluating the content or accuracy and we do not warrant and will not have any liability or responsibility for any third-party materials or websites, or for any other materials, products, or services of third-parties.<\/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-438b041 elementor-widget elementor-widget-text-editor\" data-id=\"438b041\" 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>We are not liable for any harm or damages related to the purchase or use of goods, services, resources, content, or any other transactions made in connection with any third-party websites. Please review carefully the third-party\u2019s policies and practices and make sure you understand them before you engage in any transaction. Complaints, claims, concerns, or questions regarding third-party products should be directed to the third-party.<\/p>\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-9bb0d55 e-flex e-con-boxed e-con e-child\" data-id=\"9bb0d55\" 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-aeb790c elementor-widget elementor-widget-heading\" data-id=\"aeb790c\" 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\">5.0 User comments, feedback and other submissions <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ffe46b elementor-widget elementor-widget-text-editor\" data-id=\"6ffe46b\" 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>If, at our request, you send certain specific submissions (for example competition entries) or without a request from us you send creative ideas, suggestions, proposals, plans, or other materials, whether online, by email, by postal mail, or otherwise (collectively, \u2018comments\u2019), you agree that we may, at any time, without restriction, edit, copy, publish, distribute, translate and otherwise use in any medium any comments that you forward to us. We are and shall be under no obligation (1) to maintain any comments in confidence; (2) to pay compensation for any comments; or (3) to respond to any comments.<\/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-13a94fa elementor-widget elementor-widget-text-editor\" data-id=\"13a94fa\" 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>We may, but have no obligation to, monitor, edit or remove content that we determine in our sole discretion are unlawful, offensive, threatening, libellous, defamatory, pornographic, obscene or otherwise objectionable or violates any party\u2019s intellectual property or these Terms of Service.<\/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-815e31f elementor-widget elementor-widget-text-editor\" data-id=\"815e31f\" 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>You agree that your comments will not violate any right of any third-party, including copyright, trademark, privacy, personality or other personal or proprietary right. You further agree that your comments will not contain libellous or otherwise unlawful, abusive or obscene material, or contain any computer virus or other malware that could in any way affect the operation of the Service or any related website. You may not use a false email address, pretend to be someone other than yourself, or otherwise mislead us or third-parties as to the origin of any comments. You are solely responsible for any comments you make and their accuracy. We take no responsibility and assume no liability for any comments posted by you or any third-party.<\/p>\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-b51d65b e-flex e-con-boxed e-con e-child\" data-id=\"b51d65b\" 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-271ca01 elementor-widget elementor-widget-heading\" data-id=\"271ca01\" 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\">6.0 Personal Information  <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d3f7b3 elementor-widget elementor-widget-text-editor\" data-id=\"0d3f7b3\" 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>Your submission of personal information through the store is governed by our Privacy Policy. Visit our Privacy Policy for more information.<\/p>\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-e997458 e-flex e-con-boxed e-con e-child\" data-id=\"e997458\" 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-2911ad9 elementor-widget elementor-widget-heading\" data-id=\"2911ad9\" 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\">7.0 Errors, inaccuracies and omissions <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ea81025 elementor-widget elementor-widget-text-editor\" data-id=\"ea81025\" 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>Occasionally there may be information on our site or in the Service that contains typographical errors, inaccuracies or omissions that may relate to product descriptions, pricing, promotions, offers, product shipping charges, transit times and availability. We reserve the right to correct any errors, inaccuracies or omissions, and to change or update information or cancel orders if any information in the Service or on any related website is inaccurate at any time without prior notice (including after you have submitted your order).<\/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-a1b548a elementor-widget elementor-widget-text-editor\" data-id=\"a1b548a\" 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>We undertake no obligation to update, amend or clarify information in the Service or on any related website, including without limitation, pricing information, except as required by law. No specified update or refresh date applied in the Service or on any related website, should be taken to indicate that all information in the Service or on any related website has been modified or updated.<\/p>\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-e9e44a5 e-flex e-con-boxed e-con e-child\" data-id=\"e9e44a5\" 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-516ceca elementor-widget elementor-widget-heading\" data-id=\"516ceca\" 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\">8.0 Prohibited Uses <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9b9fee4 elementor-widget elementor-widget-text-editor\" data-id=\"9b9fee4\" 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>In addition to other prohibitions as set forth in the Terms of Service, you are prohibited from using the site or its content: (a) for any unlawful purpose; (b) to solicit others to perform or participate in any unlawful acts; (c) to violate any international, federal, provincial or state regulations, rules, laws, or local ordinances; (d) to infringe upon or violate our intellectual property rights or the intellectual property rights of others; (e) to harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability; (f) to submit false or misleading information; (g) to upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the Service or of any related website, other websites, or the Internet; (h) to collect or track the personal information of others; (i) to spam, phish, pharm, pretext, spider, crawl, or scrape; (j) for any obscene or immoral purpose; or (k) to interfere with or circumvent the security features of the Service or any related website, other websites, or the Internet. We reserve the right to terminate your use of the Service or any related website for violating any of the prohibited uses.<\/p>\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-b86084e e-flex e-con-boxed e-con e-child\" data-id=\"b86084e\" 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-5e2b80f elementor-widget elementor-widget-heading\" data-id=\"5e2b80f\" 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\">9.0 Disclaimer of warranties; limitation of liability <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-80e314c elementor-widget elementor-widget-text-editor\" data-id=\"80e314c\" 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>We do not guarantee, represent or warrant that your use of our service will be uninterrupted, timely, secure or error-free. We do not warrant that the results that may be obtained from the use of the service will be accurate or reliable. You agree that from time to time we may remove the service for indefinite periods of time or cancel the service at any time, without notice to you.<\/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-48bf5d2 elementor-widget elementor-widget-text-editor\" data-id=\"48bf5d2\" 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>You expressly agree that your use of, or inability to use, the service is at your sole risk. The service and all products and services delivered to you through the service are (except as expressly stated by us) provided \u2018as is\u2019 and \u2018as available\u2019 for your use, without any representation, warranties or conditions of any kind, either express or implied, including all implied warranties or conditions of merchantability, merchantable quality, fitness for a particular purpose, durability, title, and non-infringement.<\/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-be04b52 elementor-widget elementor-widget-text-editor\" data-id=\"be04b52\" 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>In no case shall Global Brands Ltd, our directors, officers, employees, affiliates, agents, contractors, interns, suppliers, service providers or licensors be liable for any injury, loss, claim, or any direct, indirect, incidental, punitive, special, or consequential damages of any kind, including, without limitation lost profits, lost revenue, lost savings, loss of data, replacement costs, or any similar damages, whether based in contract, tort (including negligence), strict liability or otherwise, arising from your use of any of the service or any products procured using the service, or for any other claim related in any way to your use of the service or any product, including, but not limited to, any errors or omissions in any content, or any loss or damage of any kind incurred as a result of the use of the service or any content (or product) posted, transmitted, or otherwise made available via the service, even if advised of their possibility.<\/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-745d37a elementor-widget elementor-widget-heading\" data-id=\"745d37a\" 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\">9.1 Indemnification <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f419d3 elementor-widget elementor-widget-text-editor\" data-id=\"5f419d3\" 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>You agree to indemnify, defend and hold harmless Global Brands Ltd and our partners, officers, directors, agents, contractors, licensors, service providers, subcontractors, suppliers, interns and employees, harmless from any claim or demand, including reasonable attorneys\u2019 fees, made by any third-party due to or arising out of your breach of these Terms of Service or the documents they incorporate by reference, or your violation of any law or the rights of a third-party.<\/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-b430237 elementor-widget elementor-widget-heading\" data-id=\"b430237\" 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\">9.2 Severability <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e00fef9 elementor-widget elementor-widget-text-editor\" data-id=\"e00fef9\" 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>In the event that any provision of these Terms of Service is determined to be unlawful, void or unenforceable, such provision shall nonetheless be enforceable to the fullest extent permitted by applicable law, and the unenforceable portion shall be deemed to be severed from these Terms of Service, such determination shall not affect the validity and enforceability of any other remaining provisions.<\/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-9ba2ce7 elementor-widget elementor-widget-heading\" data-id=\"9ba2ce7\" 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\">9.3 Termination <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-50fb1e4 elementor-widget elementor-widget-text-editor\" data-id=\"50fb1e4\" 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>The obligations and liabilities of the parties incurred prior to the termination date shall survive the termination of this agreement for all purposes. These Terms of Service are effective unless and until terminated by either you or us. You may terminate these Terms of Service at any time by notifying us that you no longer wish to use our Services, or when you cease using our site.<\/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-5c87e88 elementor-widget elementor-widget-text-editor\" data-id=\"5c87e88\" 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>If in our sole judgment you fail, or we suspect that you have failed, to comply with any term or provision of these Terms of Service, we also may terminate this agreement at any time without notice and you will remain liable for all amounts due up to and including the date of termination; and\/or accordingly may deny you access to our Services (or any part thereof).<\/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-0e06430 elementor-widget elementor-widget-heading\" data-id=\"0e06430\" 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\">9.4 Entire agreement  <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48c7049 elementor-widget elementor-widget-text-editor\" data-id=\"48c7049\" 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>The failure of us to exercise or enforce any right or provision of these Terms of Service shall not constitute a waiver of such right or provision. These Terms of Service and any policies or operating rules posted by us on this site or in respect to The Service constitutes the entire agreement and understanding between you and us and govern your use of the Service, superseding any prior or contemporaneous agreements, communications and proposals, whether oral or written, between you and us (including, but not limited to, any prior versions of the Terms of Service). Any ambiguities in the interpretation of these Terms of Service shall not be construed against the drafting party.<\/p>\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-9b59b4a e-flex e-con-boxed e-con e-child\" data-id=\"9b59b4a\" 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-ca97de3 elementor-widget elementor-widget-heading\" data-id=\"ca97de3\" 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\">10.0 Governing Law <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34f36ec elementor-widget elementor-widget-text-editor\" data-id=\"34f36ec\" 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>These Terms of Service and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of United Kingdom.<\/p>\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-81030c0 e-flex e-con-boxed e-con e-child\" data-id=\"81030c0\" 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-64e56c5 elementor-widget elementor-widget-heading\" data-id=\"64e56c5\" 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\">11.0 Changes to terms of service <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c5cdf9 elementor-widget elementor-widget-text-editor\" data-id=\"2c5cdf9\" 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>You can review the most current version of the Terms of Service at any time at this page.<br \/>We reserve the right, at our sole discretion, to update, change or replace any part of these Terms of Service by posting updates and changes to our website. It is your responsibility to check our website periodically for changes. Your continued use of or access to our website or the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes.<\/p>\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-6854a96 e-flex e-con-boxed e-con e-child\" data-id=\"6854a96\" 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-d782269 elementor-widget elementor-widget-heading\" data-id=\"d782269\" 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\">12.0 Contact Information  <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-77d5059 elementor-widget elementor-widget-text-editor\" data-id=\"77d5059\" 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>Questions about the Terms of Service should be sent to us at <a href=\"mailto:enquiries@becocktails.com\">enquiries@becocktails.com<\/a><\/p>\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>1.0 Overview This website (\u201csite\u201d) becocktails.com is operated by Global Brands Ltd. Throughout the site, the terms \u201cwe\u201d, \u201cus\u201d and \u201cour\u201d refer to Global Brands Ltd. Global Brands Ltd offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies [&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-437","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>Terms &amp; Conditions of Service - 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=437\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Terms &amp; Conditions of Service\" \/>\n<meta property=\"og:description\" content=\"1.0 Overview This website (\u201csite\u201d) becocktails.com is operated by Global Brands Ltd. Throughout the site, the terms \u201cwe\u201d, \u201cus\u201d and \u201cour\u201d refer to Global Brands Ltd. Global Brands Ltd offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/becocktails.com\/?page_id=437\" \/>\n<meta property=\"og:site_name\" content=\"Be. Cocktails\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-16T14:45:32+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=\"14 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=437\",\"url\":\"https:\\\/\\\/becocktails.com\\\/?page_id=437\",\"name\":\"Terms & Conditions of Service - Be. Cocktails\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#website\"},\"datePublished\":\"2024-01-11T15:54:27+00:00\",\"dateModified\":\"2024-07-16T14:45:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=437#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/becocktails.com\\\/?page_id=437\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=437#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/becocktails.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Terms &#038; Conditions of Service\"}]},{\"@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":"Terms & Conditions of Service - 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=437","og_locale":"en_GB","og_type":"article","og_title":"Terms & Conditions of Service","og_description":"1.0 Overview This website (\u201csite\u201d) becocktails.com is operated by Global Brands Ltd. Throughout the site, the terms \u201cwe\u201d, \u201cus\u201d and \u201cour\u201d refer to Global Brands Ltd. Global Brands Ltd offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies [&hellip;]","og_url":"https:\/\/becocktails.com\/?page_id=437","og_site_name":"Be. Cocktails","article_modified_time":"2024-07-16T14:45:32+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"14 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/becocktails.com\/?page_id=437","url":"https:\/\/becocktails.com\/?page_id=437","name":"Terms & Conditions of Service - Be. Cocktails","isPartOf":{"@id":"https:\/\/becocktails.com\/#website"},"datePublished":"2024-01-11T15:54:27+00:00","dateModified":"2024-07-16T14:45:32+00:00","breadcrumb":{"@id":"https:\/\/becocktails.com\/?page_id=437#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/becocktails.com\/?page_id=437"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/becocktails.com\/?page_id=437#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/becocktails.com\/"},{"@type":"ListItem","position":2,"name":"Terms &#038; Conditions of Service"}]},{"@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\/437","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=437"}],"version-history":[{"count":11,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/437\/revisions"}],"predecessor-version":[{"id":1140,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/437\/revisions\/1140"}],"wp:attachment":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=437"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}