{"id":900,"date":"2025-02-18T15:54:46","date_gmt":"2025-02-18T12:54:46","guid":{"rendered":"https:\/\/7mam-3bdo.dev2.tqnia.me\/cart\/"},"modified":"2025-05-20T10:59:29","modified_gmt":"2025-05-20T07:59:29","slug":"cart","status":"publish","type":"page","link":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/cart\/","title":{"rendered":"Cart"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"900\" class=\"elementor elementor-900 elementor-85\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610133f e-flex e-con-boxed e-con e-parent\" data-id=\"610133f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-f546e63 e-con-full e-flex e-con e-child\" data-id=\"f546e63\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4246941 elementor-widget elementor-widget-spacer\" data-id=\"4246941\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\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<div class=\"elementor-element elementor-element-82e78a7 e-flex e-con-boxed e-con e-parent\" data-id=\"82e78a7\" data-element_type=\"container\" 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<div class=\"elementor-element elementor-element-c2b8e42 e-cart-layout-two-column elementor-widget elementor-widget-woocommerce-cart\" data-id=\"c2b8e42\" data-element_type=\"widget\" data-settings=\"{&quot;sticky_right_column&quot;:&quot;yes&quot;}\" data-widget_type=\"woocommerce-cart.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"woocommerce\"><div class=\"woocommerce-notices-wrapper\"><\/div><div class=\"wc-empty-cart-message\">\n\t<div class=\"cart-empty woocommerce-info\">\n\t\tYour cart is currently empty.\t<\/div>\n<\/div>\t<p class=\"return-to-shop\">\n\t\t<a class=\"button wc-backward\" href=\"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/shop\/\">\n\t\t\tReturn to shop\t\t<\/a>\n\t<\/p>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a262af6 elementor-widget elementor-widget-html\" data-id=\"a262af6\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>function addQtyButtons() {\r\n    const qtyWrappers = document.querySelectorAll('.woocommerce-cart .quantity');\r\n\r\n    qtyWrappers.forEach(wrapper => {\r\n        if (!wrapper.querySelector('.qty-button')) {\r\n            const input = wrapper.querySelector('input.qty');\r\n\r\n            \/\/ \u0625\u0646\u0634\u0627\u0621 \u0632\u0631 -\r\n            const minusBtn = document.createElement('button');\r\n            minusBtn.textContent = '-';\r\n            minusBtn.className = 'qty-button qty-minus';\r\n            minusBtn.type = 'button';\r\n\r\n            \/\/ \u0625\u0646\u0634\u0627\u0621 \u0632\u0631 +\r\n            const plusBtn = document.createElement('button');\r\n            plusBtn.textContent = '+';\r\n            plusBtn.className = 'qty-button qty-plus';\r\n            plusBtn.type = 'button';\r\n\r\n            \/\/ \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0623\u0632\u0631\u0627\u0631 \u0642\u0628\u0644 \u0648\u0628\u0639\u062f \u0627\u0644\u062d\u0642\u0644\r\n            wrapper.insertBefore(minusBtn, input);\r\n            wrapper.appendChild(plusBtn);\r\n\r\n            \/\/ \u0627\u0644\u0648\u0638\u064a\u0641\u0629 \u0639\u0646\u062f \u0627\u0644\u0636\u063a\u0637\r\n            minusBtn.addEventListener('click', (event) => {\r\n                event.preventDefault();\r\n                let val = parseInt(input.value) || 0;\r\n                if (val > 1) input.value = val - 1;\r\n                input.dispatchEvent(new Event('input', { bubbles: true }));\r\n                input.dispatchEvent(new Event('change', { bubbles: true }));\r\n            });\r\n\r\n            plusBtn.addEventListener('click', (event) => {\r\n                event.preventDefault();\r\n                let val = parseInt(input.value) || 0;\r\n                input.value = val + 1;\r\n                input.dispatchEvent(new Event('input', { bubbles: true }));\r\n                input.dispatchEvent(new Event('change', { bubbles: true }));\r\n            });\r\n        }\r\n    });\r\n}\r\n\r\n\/\/ \u062a\u0634\u063a\u064a\u0644 \u0639\u0646\u062f \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0641\u062d\u0629\r\ndocument.addEventListener('DOMContentLoaded', function () {\r\n    addQtyButtons();\r\n});\r\n\r\n\/\/ \u062a\u0634\u063a\u064a\u0644 \u0639\u0646\u062f \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0643\u0627\u0631\u062a \u0639\u0628\u0631 AJAX\r\njQuery(document.body).on('updated_cart_totals', function () {\r\n    addQtyButtons();\r\n});\r\n<\/script>\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-9e8a8c0 e-con-full e-flex e-con e-parent\" data-id=\"9e8a8c0\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d021698 elementor-widget elementor-widget-n-carousel\" data-id=\"d021698\" data-element_type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;fb5c789&quot;},{&quot;slide_title&quot;:&quot;Slide #2&quot;,&quot;_id&quot;:&quot;042dd47&quot;},{&quot;slide_title&quot;:&quot;Slide #3&quot;,&quot;_id&quot;:&quot;0fa835e&quot;}],&quot;slides_to_show&quot;:&quot;3&quot;,&quot;autoplay_speed&quot;:500,&quot;speed&quot;:1500,&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;infinite&quot;:&quot;yes&quot;,&quot;offset_sides&quot;:&quot;none&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&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<div class=\"elementor-widget-container\">\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-859f039 e-flex e-con-boxed e-con e-child\" data-id=\"859f039\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1d56f29 e-con-full e-flex e-con e-child\" data-id=\"1d56f29\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0591c93 e-con-full e-flex e-con e-child\" data-id=\"0591c93\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e7abaa elementor-widget elementor-widget-heading\" data-id=\"4e7abaa\" data-element_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\">Enjoy your meal<\/h2>\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-7b3c646 e-flex e-con-boxed e-con e-child\" data-id=\"7b3c646\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1af9d60 e-con-full e-flex e-con e-child\" data-id=\"1af9d60\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-aadaa32 e-con-full e-flex e-con e-child\" data-id=\"aadaa32\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-04662b6 elementor-widget elementor-widget-heading\" data-id=\"04662b6\" data-element_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\">Customized for you<\/h2>\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-78844ba e-flex e-con-boxed e-con e-child\" data-id=\"78844ba\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-8b0bafe e-con-full e-flex e-con e-child\" data-id=\"8b0bafe\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f585e40 e-con-full e-flex e-con e-child\" data-id=\"f585e40\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-364be69 elementor-widget elementor-widget-heading\" data-id=\"364be69\" data-element_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\">Let's go.<\/h2>\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\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>\u0633\u0644\u0629 \u0645\u0634\u062a\u0631\u064a\u0627\u062a\u0643 \u0641\u0627\u0631\u063a\u0629 \u062d\u0627\u0644\u064a\u064b\u0627. \u0627\u0644\u0639\u0648\u062f\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u062a\u062c\u0631 Enjoy your meal Customized for you Let&#8217;s go. Enjoy your meal Customized for you Let&#8217;s go.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-900","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/pages\/900","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/comments?post=900"}],"version-history":[{"count":5,"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/pages\/900\/revisions"}],"predecessor-version":[{"id":1652,"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/pages\/900\/revisions\/1652"}],"wp:attachment":[{"href":"https:\/\/7mam-3bdo.dev2.tqnia.me\/en\/wp-json\/wp\/v2\/media?parent=900"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}