{"id":456,"date":"2024-01-12T10:13:44","date_gmt":"2024-01-12T10:13:44","guid":{"rendered":"https:\/\/becocktails.com\/?page_id=456"},"modified":"2024-07-16T14:36:13","modified_gmt":"2024-07-16T14:36:13","slug":"shop","status":"publish","type":"page","link":"https:\/\/becocktails.com\/?page_id=456","title":{"rendered":"Shop"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"456\" class=\"elementor elementor-456\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-36e98b1 e-flex e-con-boxed e-con e-parent\" data-id=\"36e98b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\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-8404ba6 elementor-widget elementor-widget-template\" data-id=\"8404ba6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"798\" class=\"elementor elementor-798\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-d54bf2f e-grid e-con-boxed e-con e-child\" data-id=\"d54bf2f\" 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-46fb80f8 pfm_product e-flex e-con-boxed e-con e-child\" data-id=\"46fb80f8\" 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-618d211e e-flex e-con-boxed e-con e-child\" data-id=\"618d211e\" data-element_type=\"container\" data-e-type=\"container\" id=\"pfmProductLink\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-47531d15 e-flex e-con-boxed e-con e-child\" data-id=\"47531d15\" 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-2bc01e6 e-con-full e-flex e-con e-child\" data-id=\"2bc01e6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3ab0e691 elementor-widget elementor-widget-heading\" data-id=\"3ab0e691\" 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<p class=\"elementor-heading-title elementor-size-default\">Passion Fruit Martini<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-22a40966 elementor-widget elementor-widget-button\" data-id=\"22a40966\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/becocktails.com\/products\/passion-fruit-martini\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">buy now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-57584a49 e-flex e-con-boxed e-con e-child\" data-id=\"57584a49\" 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-7fd17431 elementor-widget elementor-widget-heading\" data-id=\"7fd17431\" 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\">\u00a330.00<\/h2>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2268c5cf pc_product e-flex e-con-boxed e-con e-child\" data-id=\"2268c5cf\" 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-292cc762 e-flex e-con-boxed e-con e-child\" data-id=\"292cc762\" data-element_type=\"container\" data-e-type=\"container\" id=\"pcProductLink\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3d0ec209 e-flex e-con-boxed e-con e-child\" data-id=\"3d0ec209\" 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-2f729726 e-con-full e-flex e-con e-child\" data-id=\"2f729726\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-635e972f elementor-widget elementor-widget-heading\" data-id=\"635e972f\" 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<p class=\"elementor-heading-title elementor-size-default\">Pi\u00f1a Colada<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6377a7a3 elementor-widget elementor-widget-button\" data-id=\"6377a7a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/becocktails.com\/products\/pina-colada\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">buy now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c5d79c6 e-flex e-con-boxed e-con e-child\" data-id=\"3c5d79c6\" 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-3d303abf elementor-widget elementor-widget-heading\" data-id=\"3d303abf\" 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\">\u00a330.00<\/h2>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-534d2896 sd_product e-flex e-con-boxed e-con e-child\" data-id=\"534d2896\" 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-154fc82c e-flex e-con-boxed e-con e-child\" data-id=\"154fc82c\" data-element_type=\"container\" data-e-type=\"container\" id=\"sdProductLink\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1abdac74 e-flex e-con-boxed e-con e-child\" data-id=\"1abdac74\" 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-15912c55 e-con-full e-flex e-con e-child\" data-id=\"15912c55\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c6f48c5 elementor-widget elementor-widget-heading\" data-id=\"4c6f48c5\" 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<p class=\"elementor-heading-title elementor-size-default\">Strawberry Daiquiri<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1c23e758 elementor-widget elementor-widget-button\" data-id=\"1c23e758\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/becocktails.com\/products\/strawberry-daiquiri\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">buy now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3f714720 e-flex e-con-boxed e-con e-child\" data-id=\"3f714720\" 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-61423bdd elementor-widget elementor-widget-heading\" data-id=\"61423bdd\" 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\">\u00a330.00<\/h2>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-10532f3 margarita_product e-flex e-con-boxed e-con e-child\" data-id=\"10532f3\" 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-3b898c2 e-flex e-con-boxed e-con e-child\" data-id=\"3b898c2\" data-element_type=\"container\" data-e-type=\"container\" id=\"margProductLink\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3b51fa2 e-flex e-con-boxed e-con e-child\" data-id=\"3b51fa2\" 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-b5e57f6 e-con-full e-flex e-con e-child\" data-id=\"b5e57f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-008a271 elementor-widget elementor-widget-heading\" data-id=\"008a271\" 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<p class=\"elementor-heading-title elementor-size-default\">Margarita<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-81e0da6 elementor-widget elementor-widget-button\" data-id=\"81e0da6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/becocktails.com\/products\/margarita\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">buy now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1b17e33 e-flex e-con-boxed e-con e-child\" data-id=\"1b17e33\" 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-94abc61 elementor-widget elementor-widget-heading\" data-id=\"94abc61\" 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\">\u00a330.00<\/h2>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-be2cf36 paloma_product e-flex e-con-boxed e-con e-child\" data-id=\"be2cf36\" 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-64ad628 e-flex e-con-boxed e-con e-child\" data-id=\"64ad628\" data-element_type=\"container\" data-e-type=\"container\" id=\"palProductLink\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7c7c8f4 e-flex e-con-boxed e-con e-child\" data-id=\"7c7c8f4\" 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-5010ac9 e-con-full e-flex e-con e-child\" data-id=\"5010ac9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb54612 elementor-widget elementor-widget-heading\" data-id=\"bb54612\" 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<p class=\"elementor-heading-title elementor-size-default\">Paloma<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70a4213 elementor-widget elementor-widget-button\" data-id=\"70a4213\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/becocktails.com\/products\/paloma\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">buy now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7d52936 e-flex e-con-boxed e-con e-child\" data-id=\"7d52936\" 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-7f09a6e elementor-widget elementor-widget-heading\" data-id=\"7f09a6e\" 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\">\u00a330.00<\/h2>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b8dd1a0 tp_product e-flex e-con-boxed e-con e-child\" data-id=\"7b8dd1a0\" 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-3da9a2f2 elementor-widget elementor-widget-heading\" data-id=\"3da9a2f2\" 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<p class=\"elementor-heading-title elementor-size-default\">Taster<\/br>Pack<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-19fc6b07 e-flex e-con-boxed e-con e-child\" data-id=\"19fc6b07\" data-element_type=\"container\" data-e-type=\"container\" id=\"tpProductLink\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-720323c8 e-flex e-con-boxed e-con e-child\" data-id=\"720323c8\" 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-29d7acbb e-con-full e-flex e-con e-child\" data-id=\"29d7acbb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7036c7cd elementor-widget elementor-widget-heading\" data-id=\"7036c7cd\" 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<p class=\"elementor-heading-title elementor-size-default\">Unsure? Try our taster pack<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-37cd605b elementor-widget elementor-widget-button\" data-id=\"37cd605b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/becocktails.com\/products\/taster-3-pack\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">buy now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-386df13 e-flex e-con-boxed e-con e-child\" data-id=\"386df13\" 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-550e4df elementor-widget elementor-widget-heading\" data-id=\"550e4df\" 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\">\u00a39.99<\/h2>\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\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\t\t<\/div>\n\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<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-456","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>Shop - 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=456\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Shop\" \/>\n<meta property=\"og:url\" content=\"https:\/\/becocktails.com\/?page_id=456\" \/>\n<meta property=\"og:site_name\" content=\"Be. Cocktails\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-16T14:36:13+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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=456\",\"url\":\"https:\\\/\\\/becocktails.com\\\/?page_id=456\",\"name\":\"Shop - Be. Cocktails\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#website\"},\"datePublished\":\"2024-01-12T10:13:44+00:00\",\"dateModified\":\"2024-07-16T14:36:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=456#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/becocktails.com\\\/?page_id=456\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=456#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/becocktails.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shop\"}]},{\"@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":"Shop - 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=456","og_locale":"en_GB","og_type":"article","og_title":"Shop","og_url":"https:\/\/becocktails.com\/?page_id=456","og_site_name":"Be. Cocktails","article_modified_time":"2024-07-16T14:36:13+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/becocktails.com\/?page_id=456","url":"https:\/\/becocktails.com\/?page_id=456","name":"Shop - Be. Cocktails","isPartOf":{"@id":"https:\/\/becocktails.com\/#website"},"datePublished":"2024-01-12T10:13:44+00:00","dateModified":"2024-07-16T14:36:13+00:00","breadcrumb":{"@id":"https:\/\/becocktails.com\/?page_id=456#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/becocktails.com\/?page_id=456"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/becocktails.com\/?page_id=456#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/becocktails.com\/"},{"@type":"ListItem","position":2,"name":"Shop"}]},{"@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\/456","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=456"}],"version-history":[{"count":61,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/456\/revisions"}],"predecessor-version":[{"id":1127,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/456\/revisions\/1127"}],"wp:attachment":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=456"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}