{"id":37,"date":"2026-07-07T10:34:30","date_gmt":"2026-07-07T08:34:30","guid":{"rendered":"https:\/\/marinero.lionstackailab.hu\/index.php\/cart\/"},"modified":"2026-09-04T13:13:18","modified_gmt":"2026-09-04T11:13:18","slug":"cart","status":"publish","type":"page","link":"https:\/\/marinero.lionstackailab.hu\/hu\/cart\/","title":{"rendered":"Cart"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"37\" class=\"elementor elementor-37\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19484c20 e-con-full e-flex e-con e-parent\" data-id=\"19484c20\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-44e7075 e-flex e-con-boxed e-con e-child\" data-id=\"44e7075\" 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-ab44b29 elementor-widget elementor-widget-html\" data-id=\"ab44b29\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\n(function () {\r\n    \"use strict\";\r\n\r\n    if (\r\n        window\r\n            .__marineroCartQuantityAjaxV3\r\n    ) {\r\n        return;\r\n    }\r\n\r\n    window\r\n        .__marineroCartQuantityAjaxV3 =\r\n        true;\r\n\r\n    var quantitySelector =\r\n        \".elementor-widget-woocommerce-cart \" +\r\n        \".product-quantity .quantity\";\r\n\r\n    var inputSelector =\r\n        \"input.qty\";\r\n\r\n    var updateDelay = 350;\r\n\r\n    function parseNumber(\r\n        value,\r\n        fallback\r\n    ) {\r\n        var parsedValue =\r\n            parseFloat(value);\r\n\r\n        return Number.isFinite(\r\n            parsedValue\r\n        )\r\n            ? parsedValue\r\n            : fallback;\r\n    }\r\n\r\n    function getPrecision(\r\n        number\r\n    ) {\r\n        var value =\r\n            String(number);\r\n\r\n        var decimalIndex =\r\n            value.indexOf(\".\");\r\n\r\n        if (\r\n            decimalIndex === -1\r\n        ) {\r\n            return 0;\r\n        }\r\n\r\n        return (\r\n            value.length -\r\n            decimalIndex -\r\n            1\r\n        );\r\n    }\r\n\r\n    function getQuantityElement(\r\n        target\r\n    ) {\r\n        if (\r\n            !(\r\n                target instanceof\r\n                Element\r\n            )\r\n        ) {\r\n            return null;\r\n        }\r\n\r\n        return target.closest(\r\n            quantitySelector\r\n        );\r\n    }\r\n\r\n    function getDirection(\r\n        event,\r\n        quantity\r\n    ) {\r\n        var rectangle =\r\n            quantity\r\n                .getBoundingClientRect();\r\n\r\n        var relativeX =\r\n            event.clientX -\r\n            rectangle.left;\r\n\r\n        if (\r\n            relativeX <= 42\r\n        ) {\r\n            return -1;\r\n        }\r\n\r\n        if (\r\n            relativeX >=\r\n            rectangle.width - 42\r\n        ) {\r\n            return 1;\r\n        }\r\n\r\n        return 0;\r\n    }\r\n\r\n    function getLimits(\r\n        input\r\n    ) {\r\n        var step =\r\n            parseNumber(\r\n                input.getAttribute(\r\n                    \"step\"\r\n                ),\r\n                1\r\n            );\r\n\r\n        if (step <= 0) {\r\n            step = 1;\r\n        }\r\n\r\n        var minimum =\r\n            Math.max(\r\n                1,\r\n                parseNumber(\r\n                    input.getAttribute(\r\n                        \"min\"\r\n                    ),\r\n                    1\r\n                )\r\n            );\r\n\r\n        var maximumAttribute =\r\n            input.getAttribute(\r\n                \"max\"\r\n            );\r\n\r\n        var maximum =\r\n            maximumAttribute !==\r\n                null &&\r\n            maximumAttribute !== \"\"\r\n                ? parseNumber(\r\n                    maximumAttribute,\r\n                    Infinity\r\n                )\r\n                : Infinity;\r\n\r\n        return {\r\n            step: step,\r\n            minimum: minimum,\r\n            maximum: maximum\r\n        };\r\n    }\r\n\r\n    function unlockInput(\r\n        input\r\n    ) {\r\n        if (!input) {\r\n            return;\r\n        }\r\n\r\n        input.disabled = false;\r\n\r\n        input.removeAttribute(\r\n            \"disabled\"\r\n        );\r\n\r\n        input.removeAttribute(\r\n            \"aria-disabled\"\r\n        );\r\n    }\r\n\r\n    function updateState(\r\n        quantity,\r\n        input\r\n    ) {\r\n        var limits =\r\n            getLimits(input);\r\n\r\n        var currentValue =\r\n            parseNumber(\r\n                input.value,\r\n                limits.minimum\r\n            );\r\n\r\n        quantity.classList.toggle(\r\n            \"is-minimum\",\r\n            currentValue <=\r\n                limits.minimum\r\n        );\r\n\r\n        quantity.classList.toggle(\r\n            \"is-maximum\",\r\n            Number.isFinite(\r\n                limits.maximum\r\n            ) &&\r\n            currentValue >=\r\n                limits.maximum\r\n        );\r\n    }\r\n\r\n    function startLoading(\r\n        widget\r\n    ) {\r\n        if (!widget) {\r\n            return;\r\n        }\r\n\r\n        widget.classList.add(\r\n            \"is-marinero-updating\"\r\n        );\r\n\r\n        widget.setAttribute(\r\n            \"aria-busy\",\r\n            \"true\"\r\n        );\r\n\r\n        window.clearTimeout(\r\n            widget\r\n                .marineroLoadingFallback\r\n        );\r\n\r\n        widget\r\n            .marineroLoadingFallback =\r\n            window.setTimeout(\r\n                function () {\r\n                    finishLoading(\r\n                        widget\r\n                    );\r\n                },\r\n                10000\r\n            );\r\n    }\r\n\r\n    function finishLoading(\r\n        widget\r\n    ) {\r\n        if (!widget) {\r\n            return;\r\n        }\r\n\r\n        widget.classList.remove(\r\n            \"is-marinero-updating\"\r\n        );\r\n\r\n        widget.removeAttribute(\r\n            \"aria-busy\"\r\n        );\r\n\r\n        window.clearTimeout(\r\n            widget\r\n                .marineroLoadingFallback\r\n        );\r\n    }\r\n\r\n    function submitCartUpdate(\r\n        input\r\n    ) {\r\n        var form =\r\n            input.closest(\r\n                \".woocommerce-cart-form\"\r\n            );\r\n\r\n        var widget =\r\n            input.closest(\r\n                \".elementor-widget-woocommerce-cart\"\r\n            );\r\n\r\n        if (\r\n            !form ||\r\n            !widget\r\n        ) {\r\n            return;\r\n        }\r\n\r\n        startLoading(widget);\r\n\r\n        var updateButton =\r\n            form.querySelector(\r\n                \"button[name='update_cart']\"\r\n            );\r\n\r\n        if (updateButton) {\r\n            updateButton.disabled =\r\n                false;\r\n\r\n            updateButton.removeAttribute(\r\n                \"disabled\"\r\n            );\r\n\r\n            updateButton.setAttribute(\r\n                \"aria-disabled\",\r\n                \"false\"\r\n            );\r\n\r\n            updateButton.click();\r\n\r\n            return;\r\n        }\r\n\r\n        if (window.jQuery) {\r\n            window\r\n                .jQuery(input)\r\n                .trigger(\"change\");\r\n\r\n            return;\r\n        }\r\n\r\n        input.dispatchEvent(\r\n            new Event(\r\n                \"change\",\r\n                {\r\n                    bubbles: true\r\n                }\r\n            )\r\n        );\r\n    }\r\n\r\n    function scheduleCartUpdate(\r\n        input\r\n    ) {\r\n        var widget =\r\n            input.closest(\r\n                \".elementor-widget-woocommerce-cart\"\r\n            );\r\n\r\n        if (!widget) {\r\n            return;\r\n        }\r\n\r\n        window.clearTimeout(\r\n            widget\r\n                .marineroUpdateTimer\r\n        );\r\n\r\n        widget\r\n            .marineroUpdateTimer =\r\n            window.setTimeout(\r\n                function () {\r\n                    submitCartUpdate(\r\n                        input\r\n                    );\r\n                },\r\n                updateDelay\r\n            );\r\n    }\r\n\r\n    function setInputValue(\r\n        input,\r\n        value,\r\n        precision\r\n    ) {\r\n        input.value =\r\n            precision > 0\r\n                ? value.toFixed(\r\n                    precision\r\n                )\r\n                : String(\r\n                    Math.round(\r\n                        value\r\n                    )\r\n                );\r\n\r\n        input.dispatchEvent(\r\n            new Event(\r\n                \"input\",\r\n                {\r\n                    bubbles: true\r\n                }\r\n            )\r\n        );\r\n    }\r\n\r\n    function changeQuantity(\r\n        quantity,\r\n        direction\r\n    ) {\r\n        var input =\r\n            quantity.querySelector(\r\n                inputSelector\r\n            );\r\n\r\n        if (!input) {\r\n            return;\r\n        }\r\n\r\n        unlockInput(input);\r\n\r\n        var limits =\r\n            getLimits(input);\r\n\r\n        var currentValue =\r\n            parseNumber(\r\n                input.value,\r\n                limits.minimum\r\n            );\r\n\r\n        if (\r\n            direction < 0 &&\r\n            currentValue <=\r\n                limits.minimum\r\n        ) {\r\n            updateState(\r\n                quantity,\r\n                input\r\n            );\r\n\r\n            return;\r\n        }\r\n\r\n        if (\r\n            direction > 0 &&\r\n            Number.isFinite(\r\n                limits.maximum\r\n            ) &&\r\n            currentValue >=\r\n                limits.maximum\r\n        ) {\r\n            updateState(\r\n                quantity,\r\n                input\r\n            );\r\n\r\n            return;\r\n        }\r\n\r\n        var nextValue =\r\n            currentValue +\r\n            direction *\r\n                limits.step;\r\n\r\n        nextValue =\r\n            Math.max(\r\n                limits.minimum,\r\n                nextValue\r\n            );\r\n\r\n        if (\r\n            Number.isFinite(\r\n                limits.maximum\r\n            )\r\n        ) {\r\n            nextValue =\r\n                Math.min(\r\n                    limits.maximum,\r\n                    nextValue\r\n                );\r\n        }\r\n\r\n        var precision =\r\n            Math.max(\r\n                getPrecision(\r\n                    limits.step\r\n                ),\r\n                getPrecision(\r\n                    limits.minimum\r\n                )\r\n            );\r\n\r\n        setInputValue(\r\n            input,\r\n            nextValue,\r\n            precision\r\n        );\r\n\r\n        updateState(\r\n            quantity,\r\n            input\r\n        );\r\n    }\r\n\r\n    function setPressedState(\r\n        quantity,\r\n        direction\r\n    ) {\r\n        quantity.classList.remove(\r\n            \"is-minus-pressed\",\r\n            \"is-plus-pressed\"\r\n        );\r\n\r\n        quantity.classList.add(\r\n            direction < 0\r\n                ? \"is-minus-pressed\"\r\n                : \"is-plus-pressed\"\r\n        );\r\n\r\n        window.setTimeout(\r\n            function () {\r\n                quantity.classList.remove(\r\n                    \"is-minus-pressed\",\r\n                    \"is-plus-pressed\"\r\n                );\r\n            },\r\n            170\r\n        );\r\n    }\r\n\r\n    function setHoverState(\r\n        event,\r\n        quantity\r\n    ) {\r\n        var direction =\r\n            getDirection(\r\n                event,\r\n                quantity\r\n            );\r\n\r\n        quantity.classList.toggle(\r\n            \"is-minus-hover\",\r\n            direction < 0\r\n        );\r\n\r\n        quantity.classList.toggle(\r\n            \"is-plus-hover\",\r\n            direction > 0\r\n        );\r\n    }\r\n\r\n    function clearHoverState(\r\n        quantity\r\n    ) {\r\n        quantity.classList.remove(\r\n            \"is-minus-hover\",\r\n            \"is-plus-hover\"\r\n        );\r\n    }\r\n\r\n    function prepareQuantity(\r\n        quantity\r\n    ) {\r\n        quantity.querySelectorAll(\r\n            \".marinero-qty-button\"\r\n        ).forEach(\r\n            function (button) {\r\n                button.remove();\r\n            }\r\n        );\r\n\r\n        var input =\r\n            quantity.querySelector(\r\n                inputSelector\r\n            );\r\n\r\n        if (!input) {\r\n            return;\r\n        }\r\n\r\n        unlockInput(input);\r\n\r\n        updateState(\r\n            quantity,\r\n            input\r\n        );\r\n\r\n        if (\r\n            quantity.dataset\r\n                .marineroHoverReady ===\r\n            \"1\"\r\n        ) {\r\n            return;\r\n        }\r\n\r\n        quantity.dataset\r\n            .marineroHoverReady =\r\n            \"1\";\r\n\r\n        quantity.addEventListener(\r\n            \"pointermove\",\r\n            function (event) {\r\n                setHoverState(\r\n                    event,\r\n                    quantity\r\n                );\r\n            }\r\n        );\r\n\r\n        quantity.addEventListener(\r\n            \"pointerleave\",\r\n            function () {\r\n                clearHoverState(\r\n                    quantity\r\n                );\r\n            }\r\n        );\r\n    }\r\n\r\n    function prepareQuantities(\r\n        context\r\n    ) {\r\n        var root =\r\n            context || document;\r\n\r\n        root.querySelectorAll(\r\n            quantitySelector\r\n        ).forEach(\r\n            function (quantity) {\r\n                prepareQuantity(\r\n                    quantity\r\n                );\r\n            }\r\n        );\r\n    }\r\n\r\n    document.addEventListener(\r\n        \"pointerdown\",\r\n        function (event) {\r\n            var quantity =\r\n                getQuantityElement(\r\n                    event.target\r\n                );\r\n\r\n            if (!quantity) {\r\n                return;\r\n            }\r\n\r\n            var direction =\r\n                getDirection(\r\n                    event,\r\n                    quantity\r\n                );\r\n\r\n            if (!direction) {\r\n                return;\r\n            }\r\n\r\n            event.preventDefault();\r\n\r\n            setPressedState(\r\n                quantity,\r\n                direction\r\n            );\r\n        },\r\n        true\r\n    );\r\n\r\n    document.addEventListener(\r\n        \"click\",\r\n        function (event) {\r\n            var quantity =\r\n                getQuantityElement(\r\n                    event.target\r\n                );\r\n\r\n            if (!quantity) {\r\n                return;\r\n            }\r\n\r\n            var direction =\r\n                getDirection(\r\n                    event,\r\n                    quantity\r\n                );\r\n\r\n            if (!direction) {\r\n                return;\r\n            }\r\n\r\n            event.preventDefault();\r\n            event.stopPropagation();\r\n\r\n            setPressedState(\r\n                quantity,\r\n                direction\r\n            );\r\n\r\n            changeQuantity(\r\n                quantity,\r\n                direction\r\n            );\r\n        },\r\n        true\r\n    );\r\n\r\n    document.addEventListener(\r\n        \"input\",\r\n        function (event) {\r\n            if (\r\n                !(\r\n                    event.target\r\n                    instanceof Element\r\n                ) ||\r\n                !event.target.matches(\r\n                    \".elementor-widget-woocommerce-cart input.qty\"\r\n                )\r\n            ) {\r\n                return;\r\n            }\r\n\r\n            var quantity =\r\n                event.target.closest(\r\n                    \".quantity\"\r\n                );\r\n\r\n            if (!quantity) {\r\n                return;\r\n            }\r\n\r\n            updateState(\r\n                quantity,\r\n                event.target\r\n            );\r\n\r\n            scheduleCartUpdate(\r\n                event.target\r\n            );\r\n        }\r\n    );\r\n\r\n    function initialize() {\r\n        prepareQuantities(\r\n            document\r\n        );\r\n    }\r\n\r\n    if (\r\n        document.readyState ===\r\n        \"loading\"\r\n    ) {\r\n        document.addEventListener(\r\n            \"DOMContentLoaded\",\r\n            initialize,\r\n            {\r\n                once: true\r\n            }\r\n        );\r\n    } else {\r\n        initialize();\r\n    }\r\n\r\n    if (window.jQuery) {\r\n        window\r\n            .jQuery(document.body)\r\n            .on(\r\n                \"updated_wc_div \" +\r\n                \"wc_fragments_refreshed\",\r\n                function () {\r\n                    document\r\n                        .querySelectorAll(\r\n                            \".elementor-widget-woocommerce-cart\"\r\n                        )\r\n                        .forEach(\r\n                            function (\r\n                                widget\r\n                            ) {\r\n                                finishLoading(\r\n                                    widget\r\n                                );\r\n                            }\r\n                        );\r\n\r\n                    prepareQuantities(\r\n                        document\r\n                    );\r\n                }\r\n            );\r\n    }\r\n\r\n    var cartWidget =\r\n        document.querySelector(\r\n            \".elementor-widget-woocommerce-cart\"\r\n        );\r\n\r\n    if (\r\n        cartWidget &&\r\n        typeof MutationObserver !==\r\n            \"undefined\"\r\n    ) {\r\n        var observer =\r\n            new MutationObserver(\r\n                function (\r\n                    mutations\r\n                ) {\r\n                    var hasNewNodes =\r\n                        mutations.some(\r\n                            function (\r\n                                mutation\r\n                            ) {\r\n                                return (\r\n                                    mutation\r\n                                        .addedNodes\r\n                                        .length >\r\n                                    0\r\n                                );\r\n                            }\r\n                        );\r\n\r\n                    if (!hasNewNodes) {\r\n                        return;\r\n                    }\r\n\r\n                    prepareQuantities(\r\n                        cartWidget\r\n                    );\r\n                }\r\n            );\r\n\r\n        observer.observe(\r\n            cartWidget,\r\n            {\r\n                childList: true,\r\n                subtree: true\r\n            }\r\n        );\r\n    }\r\n})();\r\n<\/script>\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<div class=\"elementor-element elementor-element-635bc17 e-con-full e-flex e-con e-parent\" data-id=\"635bc17\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a69c911 e-flex e-con-boxed e-con e-child\" data-id=\"a69c911\" 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-dd08b9b elementor-widget elementor-widget-heading\" data-id=\"dd08b9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Recently viewed products<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bc88903 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"bc88903\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f816265 elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"f816265\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;5995367&quot;},{&quot;slide_title&quot;:&quot;Slide #2&quot;,&quot;_id&quot;:&quot;ba7953b&quot;},{&quot;slide_title&quot;:&quot;Slide #3&quot;,&quot;_id&quot;:&quot;353139e&quot;}],&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:45,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 3\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-213f128 e-flex e-con-boxed e-con e-child\" data-id=\"213f128\" 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-b82b733 e-con-full e-flex e-con e-child\" data-id=\"b82b733\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d493709 product-image elementor-widget elementor-widget-image\" data-id=\"d493709\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"768\" height=\"1024\" src=\"https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-768x1024.webp\" class=\"attachment-large size-large wp-image-91\" alt=\"\" srcset=\"https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-768x1024.webp 768w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-scaled-600x800.webp 600w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-225x300.webp 225w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-1152x1536.webp 1152w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-1536x2048.webp 1536w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/38b1038979b67d9e26d3f123235c2d3214711660-scaled.webp 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd1a02f elementor-widget elementor-widget-heading\" data-id=\"bd1a02f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Lorem ipsum dolor sit amet, consectetur adipiscing <\/h5>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-18b1792 e-con-full e-flex e-con e-child\" data-id=\"18b1792\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d4c9ca4 e-con-full e-flex e-con e-child\" data-id=\"d4c9ca4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6010b1f elementor-widget elementor-widget-text-editor\" data-id=\"6010b1f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tPrice:\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7b444f elementor-widget elementor-widget-text-editor\" data-id=\"a7b444f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t(without VAT)\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-405b44f elementor-widget elementor-widget-text-editor\" data-id=\"405b44f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t20.000.000, &#8211; Ft\t\t\t\t\t\t\t\t<\/div>\n\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\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 3\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1fa8977 e-flex e-con-boxed e-con e-child\" data-id=\"1fa8977\" 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-66c6ca7 e-con-full e-flex e-con e-child\" data-id=\"66c6ca7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ce05fe product-image elementor-widget elementor-widget-image\" data-id=\"7ce05fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"768\" height=\"1024\" src=\"https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-768x1024.webp\" class=\"attachment-large size-large wp-image-92\" alt=\"\" srcset=\"https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-768x1024.webp 768w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-scaled-600x800.webp 600w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-225x300.webp 225w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-1152x1536.webp 1152w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-1536x2048.webp 1536w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/d1400de3d2f8d6d08da8745597282f86eddef9a0-scaled.webp 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de364e7 elementor-widget elementor-widget-heading\" data-id=\"de364e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Lorem ipsum dolor sit amet, consectetur adipiscing <\/h5>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-65b4948 e-con-full e-flex e-con e-child\" data-id=\"65b4948\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c1ec1fc e-con-full e-flex e-con e-child\" data-id=\"c1ec1fc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99a2c3f elementor-widget elementor-widget-text-editor\" data-id=\"99a2c3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tPrice:\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b2db646 elementor-widget elementor-widget-text-editor\" data-id=\"b2db646\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t(without VAT)\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-1bd9d5d elementor-widget elementor-widget-text-editor\" data-id=\"1bd9d5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t20.000.000, &#8211; Ft\t\t\t\t\t\t\t\t<\/div>\n\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\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 3\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f820472 e-flex e-con-boxed e-con e-child\" data-id=\"f820472\" 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-ffffa46 e-con-full e-flex e-con e-child\" data-id=\"ffffa46\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71b6573 product-image elementor-widget elementor-widget-image\" data-id=\"71b6573\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"768\" height=\"1024\" src=\"https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-768x1024.webp\" class=\"attachment-large size-large wp-image-94\" alt=\"\" srcset=\"https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-768x1024.webp 768w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-scaled-600x800.webp 600w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-225x300.webp 225w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-1152x1536.webp 1152w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-1536x2048.webp 1536w, https:\/\/marinero.lionstackailab.hu\/wp-content\/uploads\/2026\/07\/c0ba4ba22cfcaf468f28d0eeac052b247f9f1430-1-scaled.webp 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bbc2619 elementor-widget elementor-widget-heading\" data-id=\"bbc2619\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Lorem ipsum dolor sit amet, consectetur adipiscing <\/h5>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e807d60 e-con-full e-flex e-con e-child\" data-id=\"e807d60\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f30ba92 e-con-full e-flex e-con e-child\" data-id=\"f30ba92\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0ce36e4 elementor-widget elementor-widget-text-editor\" data-id=\"0ce36e4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tPrice:\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ac74edd elementor-widget elementor-widget-text-editor\" data-id=\"ac74edd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t(without VAT)\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-83dedff elementor-widget elementor-widget-text-editor\" data-id=\"83dedff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t20.000.000, &#8211; Ft\t\t\t\t\t\t\t\t<\/div>\n\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\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"40\" viewBox=\"0 0 20 40\" fill=\"none\"><path d=\"M18.9695 0.737055C17.7197 -0.350663 15.8247 -0.219257 14.737 1.03056L0.737 17.1169C-0.206364 18.2009 -0.248621 19.8015 0.636234 20.9337L14.6362 38.8474C15.6565 40.1528 17.5419 40.3841 18.8473 39.3638C20.1528 38.3435 20.384 36.4582 19.3637 35.1527L6.88699 19.188L19.263 4.96953C20.3089 3.76779 20.2276 1.96958 19.1087 0.866061L18.9695 0.737055Z\" fill=\"#002D46\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"40\" viewBox=\"0 0 20 40\" fill=\"none\"><path d=\"M1.03065 0.737055C2.28046 -0.350663 4.17541 -0.219257 5.26312 1.03056L19.2631 17.1169C20.2065 18.2009 20.2487 19.8015 19.3639 20.9337L5.36389 38.8474C4.34363 40.1528 2.45826 40.3841 1.15279 39.3638C-0.152672 38.3435 -0.383879 36.4582 0.636377 35.1527L13.1131 19.188L0.737144 4.96953C-0.308739 3.76779 -0.227473 1.96958 0.891406 0.866061L1.03065 0.737055Z\" fill=\"#002D46\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-166c95b e-con-full e-flex e-con e-parent\" data-id=\"166c95b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-94d5696 e-flex e-con-boxed e-con e-child\" data-id=\"94d5696\" 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-dc46c0d elementor-widget elementor-widget-heading\" data-id=\"dc46c0d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Want Treats<\/br> Exclusively for you?<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0ac2588 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"0ac2588\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a016351 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"a016351\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;K\\u00f6vetkez\\u0151&quot;,&quot;step_previous_label&quot;:&quot;El\\u0151z\\u0151&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"\u00daj \u0171rlap\" aria-label=\"\u00daj \u0171rlap\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"37\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"a016351\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Cart - Marinero\" \/>\n\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"37\"\/>\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-name elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tEmail\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-lg  elementor-field-textual\" placeholder=\"Enter your e-mail\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-lg\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">SIGN UP<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d249114 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"d249114\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tYour personal details are safe with us. For more info, read our <a href=\"https:\/\/marinero.lionstackailab.hu\/privacy-notice\">Privacy Notice<\/a>.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Remove item Thumbnail image Product Price Quantity Subtotal &times; Lawrence Yellow Cashmere beanie Noco Nr.2 20 000 000&nbsp;&#70;&#116; Lawrence Yellow Cashmere beanie Noco Nr.2 quantity 40 000 000&nbsp;&#70;&#116; Update Cart Apply coupon Cart Totals Subtotal 40 000 000&nbsp;&#70;&#116; Shipment Pickup points: 1 990&nbsp;&#70;&#116; Local pickup (Marinero Office) Shipping to Budapest, B\u00e1r\u00e1ndi u. 13, 2, 8000. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-37","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/pages\/37","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/comments?post=37"}],"version-history":[{"count":31,"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/pages\/37\/revisions"}],"predecessor-version":[{"id":1104,"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/pages\/37\/revisions\/1104"}],"wp:attachment":[{"href":"https:\/\/marinero.lionstackailab.hu\/hu\/wp-json\/wp\/v2\/media?parent=37"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}