{"product_id":"kaiju-no-8-sitting-figure-kaiju-no-8-furyu-corporation","title":"Kaiju No. 8: Sitting Figure -Kaiju No. 8- (FURYU Corporation)","description":"\u003cmain class=\"mx-auto max-w-6xl sm:px-6 sm:pt-20 lg:px-8\"\u003e\n\u003cdiv class=\"mx-auto max-w-2xl lg:max-w-none\"\u003e\u003cform method=\"post\" action=\"https:\/\/sugoi.shop\/cart\/add\" id=\"product_form_9494272409909\" class=\"shopify-product-form\" enctype=\"multipart\/form-data\" accept-charset=\"UTF-8\"\u003e\n\u003cdiv class=\"lg:grid lg:grid-cols-2 lg:items-start lg:gap-x-12\"\u003e\n\u003cdiv class=\"mt-10 px-4 sm:mt-16 sm:px-0 lg:mt-0\"\u003e\n\u003cdiv class=\"mt-8\"\u003e\n\u003cdiv class=\"space-y-6 text-base text-gray-700\"\u003e\n\u003cp\u003eManufacturer: FURYU\u003c\/p\u003e\n\u003cp\u003eCorporation Series: Kaiju No. 8\u003c\/p\u003e\n\u003cp\u003eSpecification: Painted with ATBC-PVC.\u003c\/p\u003e\n\u003cp\u003eApproximately 110mm in height.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/form\u003e\u003c\/div\u003e\n\u003c\/main\u003e\n\u003csection aria-labelledby=\"related-heading\" class=\"mt-10 border-t border-gray-200 px-4 py-16 sm:px-0\"\u003e\n\u003cdiv id=\"product-recommendations\" class=\"relative min-h-[300px]\" style=\"box-sizing: border-box; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-scroll-snap-strictness: proximity; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgb(59 130 246 \/ .5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-text-opacity: 1; color: rgb(55 65 81 \/ var(--tw-text-opacity)); position: relative; min-height: 300px; border: 0px solid rgb(229, 231, 235);\" x-data=\"{\n\t\t\tproductId: 9494272409909,\n\t\t\tproducts: [],\n\t\t\tloading: true,\n\t\t\tswiper: null, \/\/ added\n\t\t\tfetchProductRecommendations() {\n\t\t\t\tfetch(`\/recommendations\/products.json?product_id=${this.productId}\u0026amp;limit=10`)\n\t\t\t\t.then(response =\u0026gt; response.json())\n\t\t\t\t.then(data =\u0026gt; {\n\t\t\t\t\tthis.products = data.products;\n\t\t\t\t\tthis.loading = false;\n\t\t\t\t\tthis.initSwiper();\n\t\t\t\t});\n\t\t\t},\n\t\t\tinitSwiper() { \/\/ added\n\t\t\t\tthis.swiper = new Swiper('#recommendations-swiper', {\n\t\t\t\t\tspaceBetween: 10,\n\t\t\t\t\tbreakpoints: {\n\t\t\t\t\t\t\/\/ when window width is \u0026gt;= 640px\n\t\t\t\t\t\t640: {\n\t\t\t\t\t\t  slidesPerView: 3,\n\t\t\t\t\t\t  slidesPerGroup: 3,\n\t\t\t\t\t\t  spaceBetween: 15\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\/\/ when window width is \u0026gt;= 768px\n\t\t\t\t\t\t768: {\n\t\t\t\t\t\t  slidesPerView: 4,\n\t\t\t\t\t\t  slidesPerGroup: 4,\n\t\t\t\t\t\t  spaceBetween: 15\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\/\/ when window width is \u0026gt;= 1024px\n\t\t\t\t\t\t1024: {\n\t\t\t\t\t\t  slidesPerView: 6,\n\t\t\t\t\t\t  slidesPerGroup: 5,\n\t\t\t\t\t\t  spaceBetween: 15\n\t\t\t\t\t\t},\n\t\t\t\t\t\t1280: {\n\t\t\t\t\t\t\tslidesPerView: 6,\n\t\t\t\t\t\t\tslidesPerGroup: 5,\n\t\t\t\t\t\t\tspaceBetween: 15\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\tnavigation: {\n\t\t\t\t\t\tnextEl: '.swiper-button-next',\n\t\t\t\t\t\tprevEl: '.swiper-button-prev',\n\t\t\t\t\t},\n\t\t\t\t\tpagination: {\n\t\t\t\t\t\tel: '.swiper-pagination',\n\t\t\t\t\t\tclickable: true,\n\t\t\t\t\t},\n\t\t\t\t});\n\n\t\t\t\tvar nextButton = document.querySelector('#recommendations-swiper .swiper-custom-next');\n\t\t\t\tvar prevButton = document.querySelector('#recommendations-swiper .swiper-custom-prev');\n\n\t\t\t\t\/** Show and hidden the next and prev buttons when we reach the end or beginning of the slides *\/\n\t\t\t\tnextButton.addEventListener('click', () =\u0026gt; {\n\t\t\t\t\tthis.swiper.slideNext();\n\t\t\t\t});\n\t\t\t\n\t\t\t\tprevButton.addEventListener('click', () =\u0026gt; {\n\t\t\t\t\tthis.swiper.slidePrev();\n\t\t\t\t});\n\n\t\t\t\tprevButton.style.visibility = 'hidden';\n\t\t\t\n\t\t\t\tthis.swiper.on('slideChange', () =\u0026gt; {\n\t\t\t\t\tconsole.log('slideChange');\n\t\t\t\t\tif (this.swiper.isBeginning) {\n\t\t\t\t\t\tprevButton.style.visibility = 'hidden';\n\t\t\t\t\t} else {\n\t\t\t\t\t\tprevButton.style.visibility = 'visible';\n\t\t\t\t\t}\n\t\t\t\t\tif (this.swiper.isEnd) {\n\t\t\t\t\t\tnextButton.style.visibility = 'hidden';\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnextButton.style.visibility = 'visible';\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\t\/** Only show the next and prev buttons when the user is hovering over the slider **\/\n\t\t\t\tconst swiperContainer = document.getElementById('recommendations-swiper');\n\t\t\t\tswiperContainer.addEventListener('mouseover', () =\u0026gt; {\n\t\t\t\t\tprevButton.classList.remove('opacity-0');\n\t\t\t\t\tnextButton.classList.remove('opacity-0');\n\t\t\t\t});\n\t\t\t\t  \n\t\t\t\tswiperContainer.addEventListener('mouseout', () =\u0026gt; {\n\t\t\t\t\tprevButton.classList.add('opacity-0');\n\t\t\t\t\tnextButton.classList.add('opacity-0');\n\t\t\t\t});\n\n\t\t\t},\n\t\t\tformatPrice(price) {\n\t\t\t\tlet formatter = new Intl.NumberFormat(navigator.language, {\n\t\t\t\t\tstyle: 'currency',\n\t\t\t\t\tcurrency: 'NZD',\n\t\t\t\t});\n\t\t\t\treturn formatter.format(price);\n\t\t\t}\n\t\t}\" x-init=\"fetchProductRecommendations\"\u003e\n\u003cdiv class=\"relative\"\u003e\n\u003cdiv id=\"recommendations-swiper\" class=\"swiper-container overflow-hidden pb-8 swiper-initialized swiper-horizontal swiper-backface-hidden\" style=\"box-sizing: border-box; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-scroll-snap-strictness: proximity; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgb(59 130 246 \/ .5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-text-opacity: 1; color: rgb(55 65 81 \/ var(--tw-text-opacity)); touch-action: pan-y; overflow: hidden; padding-bottom: 2rem; border: 0px solid rgb(229, 231, 235);\" x-show=\"!loading \u0026amp;\u0026amp; products.length \u0026gt; 0\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e","brand":"Anime House","offers":[{"title":"Default Title","offer_id":42767430090800,"sku":null,"price":59.99,"currency_code":"AUD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0673\/0829\/0096\/files\/gsc05174-stills-large_2_750x_1fe24165-0189-4e0a-a250-8ce4bd85ade2.webp?v=1770521088","url":"https:\/\/www.animepark.com.au\/products\/kaiju-no-8-sitting-figure-kaiju-no-8-furyu-corporation","provider":"Anime Park","version":"1.0","type":"link"}