{"id":1761,"date":"2025-10-23T10:18:35","date_gmt":"2025-10-23T08:18:35","guid":{"rendered":"https:\/\/www.ponavia-rezidence.cz\/choosing-an-apartment\/"},"modified":"2026-06-01T10:08:50","modified_gmt":"2026-06-01T08:08:50","slug":"choosing-an-apartment","status":"publish","type":"page","link":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/","title":{"rendered":"Apartment selection"},"content":{"rendered":"\t\t\t\t<div class=\"component-flat-map relative mt-27 lg:mt-28.5\">\n\t\t\t\t\t\t\t\t<div  x-data=\"{\n\t\t\tcurrentView: &quot;east&quot;,\n\t\t\tactiveFloor: null,\n\t\t\thoveredFloor: null,\n\t\t\tpanelX: 0,\n\t\t\tpanelY: 0,\n\t\t\tfloors: [{&quot;number&quot;:1,&quot;available_flats&quot;:6,&quot;total_flats&quot;:10,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/1-np\\\/&quot;},{&quot;number&quot;:2,&quot;available_flats&quot;:8,&quot;total_flats&quot;:11,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/2-np\\\/&quot;},{&quot;number&quot;:3,&quot;available_flats&quot;:8,&quot;total_flats&quot;:11,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/3-np\\\/&quot;},{&quot;number&quot;:4,&quot;available_flats&quot;:5,&quot;total_flats&quot;:11,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/4-np\\\/&quot;},{&quot;number&quot;:5,&quot;available_flats&quot;:4,&quot;total_flats&quot;:7,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/5-np\\\/&quot;},{&quot;number&quot;:6,&quot;available_flats&quot;:5,&quot;total_flats&quot;:8,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/6-np\\\/&quot;},{&quot;number&quot;:7,&quot;available_flats&quot;:3,&quot;total_flats&quot;:7,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/7-np\\\/&quot;},{&quot;number&quot;:8,&quot;available_flats&quot;:4,&quot;total_flats&quot;:6,&quot;link&quot;:&quot;https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/patro\\\/8-np\\\/&quot;}],\n\t\t\tinit: function() {\n\t\t\t\tthis.initSVGInteractions();\n\t\t\t},\n\t\t\tgetCurrentFloors: function() {\n\t\t\t\treturn this.floors;\n\t\t\t},\n\t\t\tupdatePanelPosition: function(event) {\n\t\t\t\tconst container = this.$el.querySelector(&quot;.svg-container&quot;);\n\t\t\t\tconst rect = container.getBoundingClientRect();\n\t\t\t\tthis.panelX = event.clientX - rect.left + 20;\n\t\t\t\tthis.panelY = event.clientY - rect.top - 40;\n\t\t\t},\n\t\t\tinitSVGInteractions: function() {\n\t\t\t\tthis.$nextTick(() =&gt; {\n\t\t\t\t\t\/\/ Najdeme v\u0161echny kontejnery a vybereme viditeln\u00fd\n\t\t\t\t\tconst containers = this.$el.querySelectorAll(&quot;.svg-container &gt; div&quot;);\n\t\t\t\t\tlet visibleContainer = null;\n\n\t\t\t\t\tcontainers.forEach(container =&gt; {\n\t\t\t\t\t\tif (container.style.display !== &quot;none&quot; &amp;&amp; !container.hasAttribute(&quot;x-cloak&quot;)) {\n\t\t\t\t\t\t\tvisibleContainer = container;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\n\t\t\t\t\tif (!visibleContainer) {\n\t\t\t\t\t\t\/\/ Fallback - pokud nenajdeme viditeln\u00fd, pou\u017eijeme v\u0161echny\n\t\t\t\t\t\tvisibleContainer = this.$el.querySelector(&quot;.svg-container&quot;);\n\t\t\t\t\t}\n\n\t\t\t\t\tconst svgFloors = visibleContainer.querySelectorAll(&quot;svg .floor&quot;);\n\t\t\t\t\tconst infoPanel = document.querySelector(&quot;.building-info-panel&quot;);\n\t\t\t\t\tconst currentFloors = this.getCurrentFloors();\n\n\t\t\t\t\t\/\/ Pou\u017e\u00edv\u00e1me p\u0159\u00edmo p\u016fvodn\u00ed elementy bez klonov\u00e1n\u00ed\n\t\t\t\t\tsvgFloors.forEach((floor, index) =&gt; {\n\t\t\t\t\t\tif (index &gt;= currentFloors.length) return;\n\n\t\t\t\t\t\tfloor.setAttribute(&quot;data-floor-index&quot;, index);\n\n\t\t\t\t\t\t\/\/ Nastaven\u00ed z\u00e1kladn\u00edch styl\u016f pro v\u0161echny SVG podla\u017e\u00ed\n\t\t\t\t\t\tfloor.style.cursor = &quot;pointer&quot;;\n\t\t\t\t\t\tfloor.style.transition = &quot;fill 0.3s ease&quot;;\n\t\t\t\t\t\tfloor.style.fill = &quot;rgba(188, 61, 24, 0)&quot;;\n\n\t\t\t\t\t\t\/\/ Mouseenter - zv\u00fdrazn\u011bn\u00ed podla\u017e\u00ed\n\t\t\t\t\t\tfloor.addEventListener(&quot;mouseenter&quot;, (e) =&gt; {\n\t\t\t\t\t\t\tthis.hoveredFloor = floor.id;\n\t\t\t\t\t\t\tfloor.style.fill = &quot;rgba(188, 61, 24, 0.7)&quot;;\n\t\t\t\t\t\t\tif (infoPanel &amp;&amp; currentFloors[index]) {\n\t\t\t\t\t\t\t\tthis.activeFloor = currentFloors[index];\n\t\t\t\t\t\t\t\tthis.updatePanelPosition(e);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Mousemove - sledov\u00e1n\u00ed pozice my\u0161i\n\t\t\t\t\t\tfloor.addEventListener(&quot;mousemove&quot;, (e) =&gt; {\n\t\t\t\t\t\t\tthis.updatePanelPosition(e);\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Mouseleave - zru\u0161en\u00ed zv\u00fdrazn\u011bn\u00ed\n\t\t\t\t\t\tfloor.addEventListener(&quot;mouseleave&quot;, () =&gt; {\n\t\t\t\t\t\t\tthis.hoveredFloor = null;\n\t\t\t\t\t\t\tfloor.style.fill = &quot;rgba(188, 61, 24, 0)&quot;;\n\t\t\t\t\t\t\tthis.$nextTick(() =&gt; {\n\t\t\t\t\t\t\t\tif (!this.hoveredFloor) {\n\t\t\t\t\t\t\t\t\tthis.activeFloor = null;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}, 100);\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Touch ud\u00e1losti pro mobiln\u00ed za\u0159\u00edzen\u00ed\n\t\t\t\t\t\tfloor.addEventListener(&quot;touchstart&quot;, (e) =&gt; {\n\t\t\t\t\t\t\tthis.hoveredFloor = floor.id;\n\t\t\t\t\t\t\tfloor.style.fill = &quot;rgba(188, 61, 24, 0.7)&quot;;\n\t\t\t\t\t\t\tif (infoPanel &amp;&amp; currentFloors[index]) {\n\t\t\t\t\t\t\t\tthis.activeFloor = currentFloors[index];\n\t\t\t\t\t\t\t\tconst touch = e.touches[0];\n\t\t\t\t\t\t\t\tthis.updatePanelPosition(touch);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tfloor.addEventListener(&quot;touchend&quot;, () =&gt; {\n\t\t\t\t\t\t\tthis.hoveredFloor = null;\n\t\t\t\t\t\t\tfloor.style.fill = &quot;rgba(188, 61, 24, 0)&quot;;\n\t\t\t\t\t\t\t\/\/ P\u0159esm\u011brov\u00e1n\u00ed p\u0159i touchend\n\t\t\t\t\t\t\tif (currentFloors[index] &amp;&amp; currentFloors[index].link) {\n\t\t\t\t\t\t\t\twindow.location.href = currentFloors[index].link;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Kliknut\u00ed na podla\u017e\u00ed - p\u0159esm\u011brov\u00e1n\u00ed\n\t\t\t\t\t\tfloor.addEventListener(&quot;click&quot;, () =&gt; {\n\t\t\t\t\t\t\tif (currentFloors[index] &amp;&amp; currentFloors[index].link) {\n\t\t\t\t\t\t\t\twindow.location.href = currentFloors[index].link;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\n\t\t\t\t}, 500); \/\/ Zv\u00fd\u0161en\u00fd timeout pro Safari\n\t\t\t}\n\t\t}\" x-init=\"init()\" @view-changed=\"initSVGInteractions()\" class=\"relative\">\n\t\t<div class=\"svg-container relative max-w-full overflow-hidden\">\n\t\t\t<div x-show=\"currentView === 'east'\" x-transition:enter=\"transition ease-out duration-300\" x-transition:enter-start=\"opacity-0\" x-transition:enter-end=\"opacity-100\" class=\"w-full h-auto\">\n\t\t\t\t<svg class=\"svg-flat-map-east h-auto object-contain -ml-18 -mr-56 xl:mr-0 xl:ml-0\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" viewBox=\"0 0 2440 1061\" preserveAspectRatio=\"xMidYMid meet\"><image width=\"2440\" height=\"1061\" href=\"https:\/\/www.ponavia-rezidence.cz\/wp-content\/themes\/rezidence-ponavia\/static\/images\/icons\/flat-map-east.webp\"\/><path id=\"floor-1\" class=\"floor\" d=\"M376.000 879.000V784.374H1430.000V879.000H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-2\" class=\"floor\" d=\"M376.000 784.374V689.747H1430.000V784.374H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-3\" class=\"floor\" d=\"M376.000 689.747V595.121H1430.000V689.747H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-4\" class=\"floor\" d=\"M376.000 595.121V500.494H1430.000V595.121H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-5\" class=\"floor\" d=\"M376.000 500.494V405.868H1430.000V500.494H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-6\" class=\"floor\" d=\"M376.000 405.868V311.241H1430.000V405.868H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-7\" class=\"floor\" d=\"M376.000 311.241V216.615H1430.000V311.241H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-8\" class=\"floor\" d=\"M376.000 216.615V119.000H1430.000V216.615H376.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><\/svg>\n\t\t\t<\/div>\n\t\t\t<div x-show=\"currentView === 'west'\" x-cloak x-transition:enter=\"transition ease-out duration-300\" x-transition:enter-start=\"opacity-0\" x-transition:enter-end=\"opacity-100\" class=\"w-full h-auto\">\n\t\t\t\t<svg class=\"svg-flat-map-west h-auto object-contain -ml-60 -mr-12 xl:mr-0 xl:ml-0\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" viewBox=\"0 0 2440 1061\" preserveAspectRatio=\"xMidYMid meet\"><image width=\"2440\" height=\"1061\" href=\"https:\/\/www.ponavia-rezidence.cz\/wp-content\/themes\/rezidence-ponavia\/static\/images\/icons\/flat-map-west.webp\"\/><path id=\"floor-1\" class=\"floor\" d=\"M1303.394 941.073H1010.000V836.199H2106.890V869.500L2295.890 1037.000H1118.394L1303.394 941.073Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-2\" class=\"floor\" d=\"M1010.000 836.199V732.816H2107.000V836.199H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-3\" class=\"floor\" d=\"M1010.000 732.816V629.433H2107.000V732.816H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-4\" class=\"floor\" d=\"M1010.000 629.433V526.050H2107.000V629.433H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-5\" class=\"floor\" d=\"M1010.000 526.050V422.668H2107.000V526.050H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-6\" class=\"floor\" d=\"M1010.000 422.668V319.285H2107.000V422.668H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-7\" class=\"floor\" d=\"M1010.000 319.285V215.902H2107.000V319.285H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><path id=\"floor-8\" class=\"floor\" d=\"M1010.000 50.887V215.902H2107.000V67.786H2099.500C2099.330 67.952 2095.500 70.172 2081.500 77.727C2070.300 76.534 2066.170 78.887 2065.500 80.212H1467.000V32.000H1458.500V42.437C1446.100 42.040 1440.667 44.591 1439.500 45.917L1440.000 80.212H1051.000V65.301C1049.667 64.141 1044.600 61.524 1041.000 60.331C1037.400 59.138 1030.833 58.674 1028.000 58.840L1017.000 50.887H1010.000Z\" fill=\"rgba(188, 61, 24, 0)\" fill-opacity=\"0.6\"\/><\/svg>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div  class=\"building-info-panel absolute bg-neutral-900\/90 text-white px-1.5 py-1 sm:px-3 sm:py-2 md:px-4 md:py-3 rounded sm:rounded-md md:rounded-lg shadow-lg z-50 pointer-events-none whitespace-nowrap\" :style=\"`left: ${panelX}px; top: ${panelY}px;`\" x-cloak x-show=\"activeFloor\">\n\t\t\t\t<template x-if=\"activeFloor\">\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<div class=\"text-xs xs:text-sm sm:text-base md:text-lg lg:text-xl font-semibold\">\n\t\t\t\t\t\t\t<span x-text=\"activeFloor.number\"><\/span>.\n\t\t\t\t\t\t\tfloor\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"mt-0.5 sm:mt-1 text-xs sm:text-sm md:text-base\">\n\t\t\t\t\t\t\t<span x-text=\"activeFloor.available_flats\"><\/span>\n\t\t\t\t\t\t\tfrom\n\t\t\t\t\t\t\t<span x-text=\"activeFloor.total_flats\"><\/span>\n\t\t\t\t\t\t\tavailable\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/template>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t<div class=\"w-full md:w-auto relative md:absolute md:bottom-0 md:left-1\/2 md:-translate-x-1\/2 flex md:backdrop-blur-xl bg-white\/10 rounded-t-xl md:rounded-t\">\n\t\t\t\t\t\t<button  @click=\"currentView = &quot;east&quot;; $dispatch(&quot;view-changed&quot;)\" @mouseenter=\"hoveredFloor = null\" class=\"relative whitespace-nowrap flex-1 md:flex-none text-sm sm:text-base md:text-lg lg:text-xl font-semibold uppercase md:text-white cursor-pointer transition-all duration-300 px-4 sm:px-6 md:px-10 lg:px-18 xl:px-24 py-3 sm:py-4 md:py-3 lg:py-5\" :class=\"{\n\t\t\t\t\t&quot;text-opacity-100&quot;: currentView === &quot;east&quot;,\n\t\t\t\t\t&quot;text-opacity-50&quot;: currentView !== &quot;east&quot;\n\t\t\t\t}\">\n\t\t\t\tEast view\n\t\t\t\t<span class=\"absolute bottom-0 left-0 w-full h-1 transition-all duration-300\" :class=\"currentView === 'east' ? 'bg-primary-500' : 'bg-secondary-200'\"><\/span>\n\t\t\t<\/button>\n\t\t\t\t\t\t<button  @click=\"currentView = &quot;west&quot;; $dispatch(&quot;view-changed&quot;)\" @mouseenter=\"hoveredFloor = null\" class=\"relative whitespace-nowrap flex-1 md:flex-none text-sm sm:text-base md:text-lg lg:text-xl font-semibold uppercase md:text-white cursor-pointer transition-all duration-300 px-4 sm:px-6 md:px-10 lg:px-18 xl:px-24 py-3 sm:py-4 md:py-3 lg:py-5\" :class=\"{\n\t\t\t\t\t&quot;text-opacity-100&quot;: currentView === &quot;west&quot;,\n\t\t\t\t\t&quot;text-opacity-50&quot;: currentView !== &quot;west&quot;\n\t\t\t\t}\">\n\t\t\t\tWest view\n\t\t\t\t<span class=\"absolute bottom-0 left-0 w-full h-1 transition-all duration-300\" :class=\"currentView === 'west' ? 'bg-primary-500' : 'bg-secondary-200'\"><\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"component-flat-list z-50 my-10 lg:my-20 xl:my-32\">\n\t\t\t\t\t<div class=\"container-sm\">\n\t\t\t\t\t\t\t\t\t<div x-cloak class=\"space-y-6 lg:space-y-10 xl:space-y-14\"\n\t\t\tx-data='{\n\t\t\t\titems: [{\"number\":\"506\",\"orientation\":\"V\",\"floor\":5,\"layout\":\"2+kk\",\"area\":\"54.5\",\"terrace\":0,\"loggia\":\"11.4\",\"balcony\":0,\"price\":\"9050000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/506\\\/\"},{\"number\":\"507\",\"orientation\":\"V\",\"floor\":5,\"layout\":\"2+kk\",\"area\":\"43.3\",\"terrace\":0,\"loggia\":\"8.7\",\"balcony\":0,\"price\":\"7870000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/507\\\/\"},{\"number\":\"601\",\"orientation\":\"Z\",\"floor\":6,\"layout\":\"1+kk\",\"area\":\"35.3\",\"terrace\":0,\"loggia\":\"10.3\",\"balcony\":0,\"price\":\"6770000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/601\\\/\"},{\"number\":\"604\",\"orientation\":\"Z\",\"floor\":6,\"layout\":\"2+kk\",\"area\":\"50.3\",\"terrace\":0,\"loggia\":\"12.2\",\"balcony\":0,\"price\":\"8710000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/604\\\/\"},{\"number\":\"607\",\"orientation\":\"V\",\"floor\":6,\"layout\":\"1+kk\",\"area\":\"29.7\",\"terrace\":0,\"loggia\":\"5.8\",\"balcony\":0,\"price\":\"6240000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/607\\\/\"},{\"number\":\"Apartment 101\",\"orientation\":\"Z\",\"floor\":1,\"layout\":\"1+kk\",\"area\":\"35.3\",\"terrace\":0,\"loggia\":\"10.1\",\"balcony\":0,\"price\":\"6460000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-101\\\/\"},{\"number\":\"Apartment 102\",\"orientation\":\"Z\",\"floor\":1,\"layout\":\"2+kk\",\"area\":\"50.1\",\"terrace\":\"15\",\"loggia\":0,\"balcony\":0,\"price\":\"9460000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-102\\\/\"},{\"number\":\"Apartment 103\",\"orientation\":\"Z\",\"floor\":1,\"layout\":\"2+kk\",\"area\":\"58.2\",\"terrace\":\"17.2\",\"loggia\":0,\"balcony\":0,\"price\":\"10510000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-103\\\/\"},{\"number\":\"Apartment 104\",\"orientation\":\"Z\",\"floor\":1,\"layout\":\"3+kk\",\"area\":\"85.5\",\"terrace\":\"21.7\",\"loggia\":0,\"balcony\":0,\"price\":\"14200000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-104\\\/\"},{\"number\":\"Apartment 105\",\"orientation\":\"V\",\"floor\":1,\"layout\":\"2+kk\",\"area\":\"52.2\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"8690000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-105\\\/\"},{\"number\":\"Apartment 106\",\"orientation\":\"V\",\"floor\":1,\"layout\":\"1+kk\",\"area\":\"30.1\",\"terrace\":0,\"loggia\":\"5.3\",\"balcony\":0,\"price\":\"5460000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-106\\\/\"},{\"number\":\"Apartment 107\",\"orientation\":\"V\",\"floor\":1,\"layout\":\"1+kk\",\"area\":\"30\",\"terrace\":0,\"loggia\":\"6.5\",\"balcony\":0,\"price\":\"5500000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-107\\\/\"},{\"number\":\"Apartment 108\",\"orientation\":\"V\",\"floor\":1,\"layout\":\"1+kk\",\"area\":\"30\",\"terrace\":0,\"loggia\":\"5.8\",\"balcony\":0,\"price\":\"5690000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-108\\\/\"},{\"number\":\"Apartment 109\",\"orientation\":\"V\",\"floor\":1,\"layout\":\"1+kk\",\"area\":\"32.2\",\"terrace\":0,\"loggia\":\"6.3\",\"balcony\":0,\"price\":\"6110000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-109\\\/\"},{\"number\":\"Apartment 110\",\"orientation\":\"V\",\"floor\":1,\"layout\":\"1+kk\",\"area\":\"33.2\",\"terrace\":0,\"loggia\":\"9.8\",\"balcony\":0,\"price\":\"6270000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-110\\\/\"},{\"number\":\"Apartment 201\",\"orientation\":\"Z\",\"floor\":2,\"layout\":\"1+kk\",\"area\":\"35.3\",\"terrace\":0,\"loggia\":\"10.3\",\"balcony\":0,\"price\":\"6260000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-201\\\/\"},{\"number\":\"Apartment 202\",\"orientation\":\"Z\",\"floor\":2,\"layout\":\"2+kk\",\"area\":\"50.1\",\"terrace\":0,\"loggia\":\"15.2\",\"balcony\":0,\"price\":\"9080000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-202\\\/\"},{\"number\":\"Apartment 203\",\"orientation\":\"Z\",\"floor\":2,\"layout\":\"1+kk\",\"area\":\"29.8\",\"terrace\":0,\"loggia\":\"7.5\",\"balcony\":0,\"price\":\"5490000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-203\\\/\"},{\"number\":\"Apartment 204\",\"orientation\":\"Z\",\"floor\":2,\"layout\":\"1+kk\",\"area\":\"29.8\",\"terrace\":0,\"loggia\":\"8.6\",\"balcony\":0,\"price\":\"5540000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-204\\\/\"},{\"number\":\"Apartment 205\",\"orientation\":\"Z\",\"floor\":2,\"layout\":\"1+kk\",\"area\":\"29.3\",\"terrace\":0,\"loggia\":\"8.2\",\"balcony\":0,\"price\":\"5440000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-205\\\/\"},{\"number\":\"Apartment 206\",\"orientation\":\"Z\",\"floor\":2,\"layout\":\"2+kk\",\"area\":\"50.3\",\"terrace\":0,\"loggia\":\"12.2\",\"balcony\":0,\"price\":\"8990000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-206\\\/\"},{\"number\":\"Apartment 207\",\"orientation\":\"V\",\"floor\":2,\"layout\":\"2+kk\",\"area\":\"52.1\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"8670000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-207\\\/\"},{\"number\":\"Apartment 208\",\"orientation\":\"V\",\"floor\":2,\"layout\":\"1+kk\",\"area\":\"30.1\",\"terrace\":0,\"loggia\":\"5.3\",\"balcony\":0,\"price\":\"5740000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-208\\\/\"},{\"number\":\"Apartment 209\",\"orientation\":\"V\",\"floor\":2,\"layout\":\"1+kk\",\"area\":\"30\",\"terrace\":0,\"loggia\":\"6.5\",\"balcony\":0,\"price\":\"5780000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-209\\\/\"},{\"number\":\"Apartment 210\",\"orientation\":\"V\",\"floor\":2,\"layout\":\"2+kk\",\"area\":\"54.5\",\"terrace\":0,\"loggia\":\"11.4\",\"balcony\":0,\"price\":\"8950000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-210\\\/\"},{\"number\":\"Apartment 301\",\"orientation\":\"Z\",\"floor\":3,\"layout\":\"1+kk\",\"area\":\"35.3\",\"terrace\":0,\"loggia\":\"10.3\",\"balcony\":0,\"price\":\"6360000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-301\\\/\"},{\"number\":\"Apartment 302\",\"orientation\":\"Z\",\"floor\":3,\"layout\":\"2+kk\",\"area\":\"50.1\",\"terrace\":0,\"loggia\":\"15.2\",\"balcony\":0,\"price\":\"9150000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-302\\\/\"},{\"number\":\"Apartment 303\",\"orientation\":\"Z\",\"floor\":3,\"layout\":\"1+kk\",\"area\":\"29.8\",\"terrace\":0,\"loggia\":\"7.5\",\"balcony\":0,\"price\":\"5560000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-303\\\/\"},{\"number\":\"Apartment 304\",\"orientation\":\"Z\",\"floor\":3,\"layout\":\"1+kk\",\"area\":\"29.8\",\"terrace\":0,\"loggia\":\"8.6\",\"balcony\":0,\"price\":\"5600000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-304\\\/\"},{\"number\":\"Apartment 305\",\"orientation\":\"Z\",\"floor\":3,\"layout\":\"1+kk\",\"area\":\"29.3\",\"terrace\":0,\"loggia\":\"8.2\",\"balcony\":0,\"price\":\"5500000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-305\\\/\"},{\"number\":\"Apartment 306\",\"orientation\":\"Z\",\"floor\":3,\"layout\":\"2+kk\",\"area\":\"50.3\",\"terrace\":0,\"loggia\":\"12.2\",\"balcony\":0,\"price\":\"9140000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-306\\\/\"},{\"number\":\"Apartment 307\",\"orientation\":\"V\",\"floor\":3,\"layout\":\"2+kk\",\"area\":\"52.1\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"8820000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-307\\\/\"},{\"number\":\"Apartment 308\",\"orientation\":\"V\",\"floor\":3,\"layout\":\"1+kk\",\"area\":\"30.1\",\"terrace\":0,\"loggia\":\"5.3\",\"balcony\":0,\"price\":\"5820000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-308\\\/\"},{\"number\":\"Apartment 309\",\"orientation\":\"V\",\"floor\":3,\"layout\":\"1+kk\",\"area\":\"30\",\"terrace\":0,\"loggia\":\"6.5\",\"balcony\":0,\"price\":\"5850000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-309\\\/\"},{\"number\":\"Apartment 310\",\"orientation\":\"V\",\"floor\":3,\"layout\":\"2+kk\",\"area\":\"54.5\",\"terrace\":0,\"loggia\":\"11.4\",\"balcony\":0,\"price\":\"9340000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-310\\\/\"},{\"number\":\"Apartment 401\",\"orientation\":\"Z\",\"floor\":4,\"layout\":\"1+kk\",\"area\":\"35.3\",\"terrace\":0,\"loggia\":\"10.3\",\"balcony\":0,\"price\":\"6510000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-401\\\/\"},{\"number\":\"Apartment 402\",\"orientation\":\"Z\",\"floor\":4,\"layout\":\"2+kk\",\"area\":\"50.1\",\"terrace\":0,\"loggia\":\"15.2\",\"balcony\":0,\"price\":\"8810000\",\"status\":\"reserved\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-402\\\/\"},{\"number\":\"Apartment 403\",\"orientation\":\"Z\",\"floor\":4,\"layout\":\"1+kk\",\"area\":\"29.8\",\"terrace\":0,\"loggia\":\"7.5\",\"balcony\":0,\"price\":\"5620000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-403\\\/\"},{\"number\":\"Apartment 404\",\"orientation\":\"Z\",\"floor\":4,\"layout\":\"1+kk\",\"area\":\"29.8\",\"terrace\":0,\"loggia\":\"8.6\",\"balcony\":0,\"price\":\"5670000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-404\\\/\"},{\"number\":\"Apartment 405\",\"orientation\":\"Z\",\"floor\":4,\"layout\":\"1+kk\",\"area\":\"29.3\",\"terrace\":0,\"loggia\":\"8.2\",\"balcony\":0,\"price\":\"5910000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-405\\\/\"},{\"number\":\"Apartment 406\",\"orientation\":\"Z\",\"floor\":4,\"layout\":\"2+kk\",\"area\":\"50.3\",\"terrace\":0,\"loggia\":\"12.2\",\"balcony\":0,\"price\":\"9205000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-406\\\/\"},{\"number\":\"Apartment 407\",\"orientation\":\"V\",\"floor\":4,\"layout\":\"2+kk\",\"area\":\"52.1\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"8810000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-407\\\/\"},{\"number\":\"Apartment 408\",\"orientation\":\"V\",\"floor\":4,\"layout\":\"1+kk\",\"area\":\"30.1\",\"terrace\":0,\"loggia\":\"5.3\",\"balcony\":0,\"price\":\"5880000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-408\\\/\"},{\"number\":\"Apartment 409\",\"orientation\":\"V\",\"floor\":4,\"layout\":\"1+kk\",\"area\":\"30\",\"terrace\":0,\"loggia\":\"6.5\",\"balcony\":0,\"price\":\"5520000\",\"status\":\"reserved\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-409\\\/\"},{\"number\":\"Apartment 410\",\"orientation\":\"V\",\"floor\":4,\"layout\":\"2+kk\",\"area\":\"54.5\",\"terrace\":0,\"loggia\":\"11.4\",\"balcony\":0,\"price\":\"9030000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-410\\\/\"},{\"number\":\"Apartment 411\",\"orientation\":\"V\",\"floor\":4,\"layout\":\"2+kk\",\"area\":\"43.3\",\"terrace\":0,\"loggia\":\"8.7\",\"balcony\":0,\"price\":\"7740000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-411\\\/\"},{\"number\":\"Apartment 501\",\"orientation\":\"Z\",\"floor\":5,\"layout\":\"3+kk\",\"area\":\"86.7\",\"terrace\":0,\"loggia\":\"25.6\",\"balcony\":0,\"price\":\"13170000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-501\\\/\"},{\"number\":\"Apartment 502\",\"orientation\":\"Z\",\"floor\":5,\"layout\":\"2+kk\",\"area\":\"61.5\",\"terrace\":0,\"loggia\":\"16.2\",\"balcony\":0,\"price\":\"10470000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-502\\\/\"},{\"number\":\"Apartment 503\",\"orientation\":\"Z\",\"floor\":5,\"layout\":\"3+kk\",\"area\":\"81.7\",\"terrace\":0,\"loggia\":\"20.4\",\"balcony\":0,\"price\":\"13310000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-503\\\/\"},{\"number\":\"Apartment 504\",\"orientation\":\"V\",\"floor\":5,\"layout\":\"2+kk\",\"area\":\"52.1\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"8900000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-504\\\/\"},{\"number\":\"Apartment 505\",\"orientation\":\"V\",\"floor\":5,\"layout\":\"2+kk\",\"area\":\"61.8\",\"terrace\":0,\"loggia\":\"12\",\"balcony\":0,\"price\":\"10030000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-505\\\/\"},{\"number\":\"Apartment 602\",\"orientation\":\"Z\",\"floor\":6,\"layout\":\"2+kk\",\"area\":\"50.1\",\"terrace\":0,\"loggia\":\"15.2\",\"balcony\":0,\"price\":\"9100000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-602\\\/\"},{\"number\":\"Apartment 603\",\"orientation\":\"Z\",\"floor\":6,\"layout\":\"3+kk\",\"area\":\"92.7\",\"terrace\":0,\"loggia\":\"24.5\",\"balcony\":0,\"price\":\"13870000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-603\\\/\"},{\"number\":\"Apartment 605\",\"orientation\":\"V\",\"floor\":6,\"layout\":\"2+kk\",\"area\":\"52.1\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"8610000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-605\\\/\"},{\"number\":\"Apartment 605\",\"orientation\":\"V\",\"floor\":6,\"layout\":\"2+kk\",\"area\":\"61.8\",\"terrace\":0,\"loggia\":\"12\",\"balcony\":0,\"price\":\"10080000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-605-2\\\/\"},{\"number\":\"Apartment 701\",\"orientation\":\"Z\",\"floor\":7,\"layout\":\"1+kk\",\"area\":\"35.3\",\"terrace\":0,\"loggia\":\"10.3\",\"balcony\":0,\"price\":\"6840000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-701\\\/\"},{\"number\":\"Apartment 702\",\"orientation\":\"Z\",\"floor\":7,\"layout\":\"2+kk\",\"area\":\"50.1\",\"terrace\":0,\"loggia\":\"15.2\",\"balcony\":0,\"price\":\"8990000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-702\\\/\"},{\"number\":\"Apartment 703\",\"orientation\":\"Z\",\"floor\":7,\"layout\":\"2+kk\",\"area\":\"61.5\",\"terrace\":0,\"loggia\":\"16.2\",\"balcony\":0,\"price\":\"10330000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-703\\\/\"},{\"number\":\"Apartment 704\",\"orientation\":\"Z\",\"floor\":7,\"layout\":\"3+kk\",\"area\":\"81.7\",\"terrace\":0,\"loggia\":\"20.4\",\"balcony\":0,\"price\":\"13690000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-704\\\/\"},{\"number\":\"Apartment 705\",\"orientation\":\"V\",\"floor\":7,\"layout\":\"2+kk\",\"area\":\"52.1\",\"terrace\":0,\"loggia\":\"8.8\",\"balcony\":0,\"price\":\"9210000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-705\\\/\"},{\"number\":\"Apartment 706\",\"orientation\":\"V\",\"floor\":7,\"layout\":\"3+kk\",\"area\":\"93.2\",\"terrace\":0,\"loggia\":\"17.9\",\"balcony\":0,\"price\":\"13540000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-706\\\/\"},{\"number\":\"Apartment 707\",\"orientation\":\"V\",\"floor\":7,\"layout\":\"3+kk\",\"area\":\"68.3\",\"terrace\":0,\"loggia\":\"14.3\",\"balcony\":0,\"price\":\"11830000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-707\\\/\"},{\"number\":\"Apartment 801\",\"orientation\":\"Z\",\"floor\":8,\"layout\":\"3+kk\",\"area\":\"86.7\",\"terrace\":0,\"loggia\":\"25.3\",\"balcony\":0,\"price\":\"13820000\",\"status\":\"sold\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-801\\\/\"},{\"number\":\"Apartment 802\",\"orientation\":\"Z\",\"floor\":8,\"layout\":\"4+kk\",\"area\":\"92.7\",\"terrace\":0,\"loggia\":\"24.5\",\"balcony\":0,\"price\":\"18540000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-802\\\/\"},{\"number\":\"Apartment 803\",\"orientation\":\"Z,V\",\"floor\":8,\"layout\":\"4+kk\",\"area\":\"109.1\",\"terrace\":0,\"loggia\":\"21\",\"balcony\":0,\"price\":\"19990000\",\"status\":\"reserved\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-803\\\/\"},{\"number\":\"Apartment 804\",\"orientation\":\"V\",\"floor\":8,\"layout\":\"2+kk\",\"area\":\"61.8\",\"terrace\":0,\"loggia\":\"12\",\"balcony\":0,\"price\":\"10480000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-804\\\/\"},{\"number\":\"Apartment 805\",\"orientation\":\"V\",\"floor\":8,\"layout\":\"1+kk\",\"area\":\"29.7\",\"terrace\":0,\"loggia\":\"5.8\",\"balcony\":0,\"price\":\"6330000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/apartment-805\\\/\"},{\"number\":\"Apartment 806\",\"orientation\":\"V\",\"floor\":8,\"layout\":\"3+kk\",\"area\":\"68.3\",\"terrace\":0,\"loggia\":\"14.3\",\"balcony\":0,\"price\":\"12010000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/806\\\/\"},{\"number\":\"Byt 211\",\"orientation\":\"V\",\"floor\":2,\"layout\":\"2+kk\",\"area\":\"43.3\",\"terrace\":0,\"loggia\":\"8.7\",\"balcony\":0,\"price\":\"7930000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/211\\\/\"},{\"number\":\"Byt 311\",\"orientation\":\"V\",\"floor\":3,\"layout\":\"2+kk\",\"area\":\"43.3\",\"terrace\":0,\"loggia\":\"8.7\",\"balcony\":0,\"price\":\"7970000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/311\\\/\"},{\"number\":\"Byt 608\",\"orientation\":\"V\",\"floor\":6,\"layout\":\"3+kk\",\"area\":\"68.3\",\"terrace\":0,\"loggia\":\"14.3\",\"balcony\":0,\"price\":\"11760000\",\"status\":\"available\",\"link\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/flat\\\/byt-608\\\/\"}],\n\t\t\t\thidePrices: false,\n\t\t\t\theaders: [\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Unit\",\n\t\t\t\t\t\tkey: \"number\",\n\t\t\t\t\t\tsortable: false,\n\t\t\t\t\t\tsort_type: \"number\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Floor\",\n\t\t\t\t\t\tkey: \"floor\",\n\t\t\t\t\t\tsortable: true,\n\t\t\t\t\t\tsort_type: \"number\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Disposition\",\n\t\t\t\t\t\tkey: \"layout\",\n\t\t\t\t\t\tsortable: true,\n\t\t\t\t\t\tsort_type: \"string\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Area\",\n\t\t\t\t\t\tkey: \"area\",\n\t\t\t\t\t\tunit: \" m\u00b2\",\n\t\t\t\t\t\tsortable: true,\n\t\t\t\t\t\tsort_type: \"number\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Parts of the apartment\",\n\t\t\t\t\t\tkey: \"parts\",\n\t\t\t\t\t\tsortable: false,\n\t\t\t\t\t\tsort_type: \"string\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Total incl.&nbsp;VAT\",\n\t\t\t\t\t\tkey: \"price\",\n\t\t\t\t\t\tunit: \" \" + \"CZK\",\n\t\t\t\t\t\tsortable: true,\n\t\t\t\t\t\tsort_type: \"number\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: \"Availability\",\n\t\t\t\t\t\tkey: \"status\",\n\t\t\t\t\t\tsortable: true,\n\t\t\t\t\t\tsort_type: \"string\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\tonlyAvailable: false,\n\t\t\t\tactiveFilters: [],\n\t\t\t\tactiveSortColumn: null,\n\t\t\t\tsortDirection: null,\n\t\t\t\tsortType: null,\n\t\t\t\tshowFilterPanel: false,\n\n\t\t\t\tfilterLayout: [],\n\t\t\t\tfilterMinArea: null,\n\t\t\t\tfilterMaxArea: null,\n\t\t\t\tfilterMinPrice: null,\n\t\t\t\tfilterMaxPrice: null,\n\t\t\t\tfilterStatus: [],\n\t\t\t\tfilterFloor: [],\n\n\t\t\t\tappliedFilterStatus: [],\n\t\t\t\tappliedFilterFloor: [],\n\t\t\t\tappliedFilterMinArea: 0,\n\t\t\t\tappliedFilterMaxArea: 999999,\n\t\t\t\tappliedFilterMinPrice: 0,\n\t\t\t\tappliedFilterMaxPrice: 999999999,\n\n\t\t\t\tminArea: 0,\n\t\t\t\tmaxArea: 0,\n\t\t\t\tminPrice: 0,\n\t\t\t\tmaxPrice: 0,\n\n\t\t\t\tinitRangeValues() {\n\t\t\t\t\tconst validAreas = this.items\n\t\t\t\t\t\t.map(item => item.area)\n\t\t\t\t\t\t.filter(value => value !== null && value !== undefined);\n\n\t\t\t\t\tif (validAreas.length > 0) {\n\t\t\t\t\t\tthis.minArea = Math.floor(Math.min(...validAreas));\n\t\t\t\t\t\tthis.maxArea = Math.ceil(Math.max(...validAreas));\n\t\t\t\t\t\tthis.filterMinArea = this.minArea;\n\t\t\t\t\t\tthis.filterMaxArea = this.maxArea;\n\t\t\t\t\t\tthis.appliedFilterMinArea = this.minArea;\n\t\t\t\t\t\tthis.appliedFilterMaxArea = this.maxArea;\n\t\t\t\t\t}\n\n\t\t\t\t\tconst validPrices = this.items\n\t\t\t\t\t\t.map(item => item.price)\n\t\t\t\t\t\t.filter(value => value !== null && value !== undefined);\n\n\t\t\t\t\tif (validPrices.length > 0) {\n\t\t\t\t\t\tthis.minPrice = Math.floor(Math.min(...validPrices));\n\t\t\t\t\t\tthis.maxPrice = Math.ceil(Math.max(...validPrices));\n\t\t\t\t\t\tthis.filterMinPrice = this.minPrice;\n\t\t\t\t\t\tthis.filterMaxPrice = this.maxPrice;\n\t\t\t\t\t\tthis.appliedFilterMinPrice = this.minPrice;\n\t\t\t\t\t\tthis.appliedFilterMaxPrice = this.maxPrice;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tsetSort(column, type) {\n\t\t\t\t\tif (this.activeSortColumn === column) {\n\t\t\t\t\t\tthis.sortDirection = this.sortDirection === \"asc\" ? \"desc\" : \"asc\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.activeSortColumn = column;\n\t\t\t\t\t\tthis.sortDirection = \"asc\";\n\t\t\t\t\t}\n\t\t\t\t\tthis.sortType = type;\n\t\t\t\t},\n\n\t\t\t\taddFilter(value, label) {\n\t\t\t\t\tthis.activeFilters = this.activeFilters.filter(filter => filter.value !== value);\n\t\t\t\t\tif (value === \"status-available\") {\n\t\t\t\t\t\tthis.activeFilters.unshift({ value, label });\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.activeFilters.push({ value, label });\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tremoveFilter(value) {\n\t\t\t\t\tthis.activeFilters = this.activeFilters.filter(filter => filter.value !== value);\n\n\t\t\t\t\tif (this.filterLayout.includes(value)) {\n\t\t\t\t\t\tthis.filterLayout = this.filterLayout.filter(layout => layout !== value);\n\t\t\t\t\t}\n\t\t\t\t\telse if (value === \"area-range\") {\n\t\t\t\t\t\tthis.filterMinArea = this.minArea;\n\t\t\t\t\t\tthis.filterMaxArea = this.maxArea;\n\t\t\t\t\t\tthis.appliedFilterMinArea = this.minArea;\n\t\t\t\t\t\tthis.appliedFilterMaxArea = this.maxArea;\n\t\t\t\t\t}\n\t\t\t\t\telse if (value === \"price-range\") {\n\t\t\t\t\t\tthis.filterMinPrice = this.minPrice;\n\t\t\t\t\t\tthis.filterMaxPrice = this.maxPrice;\n\t\t\t\t\t\tthis.appliedFilterMinPrice = this.minPrice;\n\t\t\t\t\t\tthis.appliedFilterMaxPrice = this.maxPrice;\n\t\t\t\t\t}\n\t\t\t\t\telse if (value.startsWith(\"floor-\")) {\n\t\t\t\t\t\tconst floor = value.replace(\"floor-\", \"\");\n\t\t\t\t\t\tthis.filterFloor = this.filterFloor.filter(f => f !== floor);\n\t\t\t\t\t\tthis.appliedFilterFloor = this.appliedFilterFloor.filter(f => f !== floor);\n\t\t\t\t\t}\n\t\t\t\t\telse if (value === \"status-available\") {\n\t\t\t\t\t\tthis.onlyAvailable = false;\n\t\t\t\t\t\tthis.filterStatus = this.filterStatus.filter(status => status !== \"available\");\n\t\t\t\t\t\tthis.appliedFilterStatus = this.appliedFilterStatus.filter(status => status !== \"available\");\n\t\t\t\t\t}\n\t\t\t\t\telse if (value === \"status-reserved\") {\n\t\t\t\t\t\tthis.filterStatus = this.filterStatus.filter(status => status !== \"reserved\");\n\t\t\t\t\t\tthis.appliedFilterStatus = this.appliedFilterStatus.filter(status => status !== \"reserved\");\n\t\t\t\t\t}\n\t\t\t\t\telse if (value === \"status-sold\") {\n\t\t\t\t\t\tthis.filterStatus = this.filterStatus.filter(status => status !== \"sold\");\n\t\t\t\t\t\tthis.appliedFilterStatus = this.appliedFilterStatus.filter(status => status !== \"sold\");\n\t\t\t\t\t}\n\t\t\t\t\telse if (value === \"status-not-available\") {\n\t\t\t\t\t\tthis.filterStatus = this.filterStatus.filter(status => status !== \"not-available\");\n\t\t\t\t\t\tthis.appliedFilterStatus = this.appliedFilterStatus.filter(status => status !== \"not-available\");\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tclearFilters() {\n\t\t\t\t\tthis.activeFilters = [];\n\n\t\t\t\t\tthis.filterLayout = [];\n\t\t\t\t\tthis.filterFloor = [];\n\t\t\t\t\tthis.filterMinArea = this.minArea;\n\t\t\t\t\tthis.filterMaxArea = this.maxArea;\n\t\t\t\t\tthis.filterMinPrice = this.minPrice;\n\t\t\t\t\tthis.filterMaxPrice = this.maxPrice;\n\t\t\t\t\tthis.filterStatus = [];\n\n\t\t\t\t\tthis.onlyAvailable = false;\n\t\t\t\t\tthis.appliedFilterStatus = [];\n\t\t\t\t\tthis.appliedFilterFloor = [];\n\t\t\t\t\tthis.appliedFilterMinArea = this.minArea;\n\t\t\t\t\tthis.appliedFilterMaxArea = this.maxArea;\n\t\t\t\t\tthis.appliedFilterMinPrice = this.minPrice;\n\t\t\t\t\tthis.appliedFilterMaxPrice = this.maxPrice;\n\t\t\t\t},\n\n\t\t\t\tfilteredItems() {\n\t\t\t\t\tlet filtered = this.items;\n\n\t\t\t\t\tif (this.appliedFilterStatus.length > 0) {\n\t\t\t\t\t\tfiltered = filtered.filter(item => this.appliedFilterStatus.includes(item.status));\n\t\t\t\t\t}\n\t\t\t\t\telse if (this.onlyAvailable) {\n\t\t\t\t\t\tfiltered = filtered.filter(item => item.status === \"available\");\n\t\t\t\t\t}\n\n\t\t\t\t\tif (this.appliedFilterFloor.length > 0) {\n\t\t\t\t\t\tfiltered = filtered.filter(item => this.appliedFilterFloor.includes(item.floor));\n\t\t\t\t\t}\n\n\t\t\t\t\tif (this.activeFilters.length > 0) {\n\t\t\t\t\t\tfiltered = filtered.filter(item => {\n\t\t\t\t\t\t\tlet includeItem = true;\n\n\t\t\t\t\t\t\tconst layoutFilters = this.activeFilters.filter(f => !f.value.startsWith(\"area-\") &&\n\t\t\t\t\t\t\t\t!f.value.startsWith(\"price-\") &&\n\t\t\t\t\t\t\t\t!f.value.startsWith(\"status-\") &&\n\t\t\t\t\t\t\t\t!f.value.startsWith(\"floor-\")\n\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\tif (layoutFilters.length > 0 && !layoutFilters.some(f => f.value === item.layout)) {\n\t\t\t\t\t\t\t\tincludeItem = false;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\treturn includeItem;\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tfiltered = filtered.filter(item => {\n\t\t\t\t\t\tif (item.area === null || item.area === undefined) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn item.area >= this.appliedFilterMinArea && item.area <= this.appliedFilterMaxArea;\n\t\t\t\t\t});\n\n\t\t\t\t\tfiltered = filtered.filter(item => {\n\t\t\t\t\t\tif (item.price === null || item.price === undefined) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn item.price >= this.appliedFilterMinPrice && item.price <= this.appliedFilterMaxPrice;\n\t\t\t\t\t});\n\n\t\t\t\t\tif (!this.activeSortColumn) {\n\t\t\t\t\t\treturn filtered;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn filtered.slice().sort((a, b) => {\n\t\t\t\t\t\tlet aVal = a[this.activeSortColumn];\n\t\t\t\t\t\tlet bVal = b[this.activeSortColumn];\n\n\t\t\t\t\t\tif (aVal === null && bVal === null) return 0;\n\t\t\t\t\t\tif (aVal === null) return this.sortDirection === \"asc\" ? -1 : 1;\n\t\t\t\t\t\tif (bVal === null) return this.sortDirection === \"asc\" ? 1 : -1;\n\n\t\t\t\t\t\tswitch (this.sortType) {\n\t\t\t\t\t\t\tcase \"number\":\n\t\t\t\t\t\t\t\taVal = parseFloat((aVal + \"\").replace(\/\\s+\/g, \"\").replace(\",\", \".\")) || 0;\n\t\t\t\t\t\t\t\tbVal = parseFloat((bVal + \"\").replace(\/\\s+\/g, \"\").replace(\",\", \".\")) || 0;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\tcase \"string\":\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\taVal = aVal + \"\";\n\t\t\t\t\t\t\t\tbVal = bVal + \"\";\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (aVal < bVal) return this.sortDirection === \"asc\" ? -1 : 1;\n\t\t\t\t\t\tif (aVal > bVal) return this.sortDirection === \"asc\" ? 1 : -1;\n\t\t\t\t\t\treturn 0;\n\t\t\t\t\t});\n\t\t\t\t},\n\n\t\t\t\tgetStatusInfo(status) {\n\t\t\t\t\tconst statusMap = {\n\t\t\t\t\t\tavailable: {\n\t\t\t\t\t\t\tcode: \"available\",\n\t\t\t\t\t\t\tlabel: \"Available\",\n\t\t\t\t\t\t\tis_sold: false,\n\t\t\t\t\t\t\tclass: \"bg-[#d0e8dd] text-[#3B6651]\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\treserved: {\n\t\t\t\t\t\t\tcode: \"reserved\",\n\t\t\t\t\t\t\tlabel: \"Reserved\",\n\t\t\t\t\t\t\tis_sold: false,\n\t\t\t\t\t\t\tclass: \"bg-[#C29578]\/10 text-[#C29578]\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsold: {\n\t\t\t\t\t\t\tcode: \"sold\",\n\t\t\t\t\t\t\tlabel: \"Sold\",\n\t\t\t\t\t\t\tis_sold: true,\n\t\t\t\t\t\t\tclass: \"bg-[#BC3D18]\/17 text-[#BC3D18]\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"not-available\": {\n\t\t\t\t\t\t\tcode: \"not-available\",\n\t\t\t\t\t\t\tlabel: \"Not for&nbsp;sale\",\n\t\t\t\t\t\t\tis_sold: false,\n\t\t\t\t\t\t\tclass: \"bg-[#393636]\/20 text-[#393636]\"\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\treturn statusMap[status] || statusMap.available;\n\t\t\t\t},\n\n\t\t\t\tformatValue(value, key, item = null) {\n\t\t\t\t\tif (value === null || value === undefined) {\n\t\t\t\t\t\treturn \"\u2014\";\n\t\t\t\t\t}\n\n\t\t\t\t\tif (key === \"floor\") {\n\t\t\t\t\t\treturn value + \". NP\";\n\t\t\t\t\t}\n\n\t\t\t\t\tif (key === \"price\") {\n\t\t\t\t\t\/\/ Hide price for sold, reserved, and not-available\n\t\t\t\t\tif (item && item.status !== \"available\") {\n\t\t\t\t\t\treturn \"\u2014\";\n\t\t\t\t\t}\n\n\t\t\t\t\t\/\/ Globally hide prices when toggle is on, or when price is 0\/empty\n\t\t\t\t\tif (this.hidePrices || ((!value || value == 0) && item && item.status === \"available\")) {\n\t\t\t\t\t\treturn \"On Request\";\n\t\t\t\t\t}\n\n\t\t\t\t\t\tif (value) {\n\t\t\t\t\t\t\tconst currency = \"CZK\";\n\t\t\t\t\t\t\treturn new Intl.NumberFormat(currency === \"EUR\" ? \"de-DE\" : \"cs-CZ\", {\n\t\t\t\t\t\t\t\tstyle: \"decimal\",\n\t\t\t\t\t\t\t\tminimumFractionDigits: currency === \"EUR\" ? 2 : 0,\n\t\t\t\t\t\t\t\tmaximumFractionDigits: currency === \"EUR\" ? 2 : 0\n\t\t\t\t\t\t\t}).format(value);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn value;\n\t\t\t\t},\n\n\t\t\t\tformatParts(item, vertical = false) {\n\t\t\t\t\tconst parts = [];\n\n\t\t\t\t\tif (item.terrace) {\n\t\t\t\t\t\tparts.push(\"Terrace\" + \" (\" + item.terrace + \" m\u00b2)\");\n\t\t\t\t\t}\n\n\t\t\t\t\tif (item.garden) {\n\t\t\t\t\t\tparts.push(\"Garden\" + \" (\" + item.garden + \" m\u00b2)\");\n\t\t\t\t\t}\n\n\t\t\t\t\tif (item.balcony) {\n\t\t\t\t\t\tparts.push(\"Balcony\" + \" (\" + item.balcony + \" m\u00b2)\");\n\t\t\t\t\t}\n\n\t\t\t\t\tif (item.loggia) {\n\t\t\t\t\t\tparts.push(\"Loggia\" + \" (\" + item.loggia + \" m\u00b2)\");\n\t\t\t\t\t}\n\n\t\t\t\t\tif (parts.length === 0) {\n\t\t\t\t\t\treturn \"\u2014\";\n\t\t\t\t\t}\n\n\t\t\t\t\tif (vertical) {\n\t\t\t\t\t\treturn parts.join(\"<br>\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn parts.join(\", \");\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tformatPriceWithCurrency(price) {\n\t\t\t\t\tconst currency = \"CZK\";\n\n\t\t\t\t\tconst formatter = new Intl.NumberFormat(currency === \"EUR\" ? \"de-DE\" : \"cs-CZ\", {\n\t\t\t\t\t\tstyle: \"decimal\",\n\t\t\t\t\t\tminimumFractionDigits: currency === \"EUR\" ? 2 : 0,\n\t\t\t\t\t\tmaximumFractionDigits: currency === \"EUR\" ? 2 : 0\n\t\t\t\t\t});\n\n\t\t\t\t\treturn formatter.format(price) + \" \" + currency;\n\t\t\t\t},\n\n\n\t\t\t\tstartDrag(event, type, field) {\n\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\tconst slider = event.target;\n\t\t\t\t\tconst container = slider.parentElement;\n\t\t\t\t\tconst containerRect = container.getBoundingClientRect();\n\t\t\t\t\tconst containerWidth = containerRect.width;\n\n\t\t\t\t\tconst fieldPrefix = field === \"area\" ? \"Area\" : \"Price\";\n\t\t\t\t\tconst minField = \"min\" + fieldPrefix;\n\t\t\t\t\tconst maxField = \"max\" + fieldPrefix;\n\t\t\t\t\tconst filterMinField = \"filter\" + minField.charAt(0).toUpperCase() + minField.slice(1);\n\t\t\t\t\tconst filterMaxField = \"filter\" + maxField.charAt(0).toUpperCase() + maxField.slice(1);\n\n\t\t\t\t\tconst handleMove = (moveEvent) => {\n\t\t\t\t\t\tconst x = Math.max(0, Math.min(moveEvent.clientX - containerRect.left, containerWidth));\n\t\t\t\t\t\tconst percentage = x \/ containerWidth;\n\n\t\t\t\t\t\tif (field === \"area\") {\n\t\t\t\t\t\t\tconst value = this.minArea + (this.maxArea - this.minArea) * percentage;\n\t\t\t\t\t\t\tif (type === \"min\") {\n\t\t\t\t\t\t\t\tthis.filterMinArea = Math.min(Math.round(value * 10) \/ 10, this.filterMaxArea - 0.1);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.filterMaxArea = Math.max(Math.round(value * 10) \/ 10, this.filterMinArea + 0.1);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tconst value = this.minPrice + (this.maxPrice - this.minPrice) * percentage;\n\t\t\t\t\t\t\tif (type === \"min\") {\n\t\t\t\t\t\t\t\tthis.filterMinPrice = Math.min(Math.round(value \/ 10000) * 10000, this.filterMaxPrice - 10000);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.filterMaxPrice = Math.max(Math.round(value \/ 10000) * 10000, this.filterMinPrice + 10000);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tconst handleTouchMove = (touchEvent) => {\n\t\t\t\t\t\tif (touchEvent.touches.length > 0) {\n\t\t\t\t\t\t\tconst touch = touchEvent.touches[0];\n\t\t\t\t\t\t\tconst x = Math.max(0, Math.min(touch.clientX - containerRect.left, containerWidth));\n\t\t\t\t\t\t\tconst percentage = x \/ containerWidth;\n\n\t\t\t\t\t\t\tif (field === \"area\") {\n\t\t\t\t\t\t\t\tconst value = this.minArea + (this.maxArea - this.minArea) * percentage;\n\t\t\t\t\t\t\t\tif (type === \"min\") {\n\t\t\t\t\t\t\t\t\tthis.filterMinArea = Math.min(Math.round(value * 10) \/ 10, this.filterMaxArea - 0.1);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tthis.filterMaxArea = Math.max(Math.round(value * 10) \/ 10, this.filterMinArea + 0.1);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tconst value = this.minPrice + (this.maxPrice - this.minPrice) * percentage;\n\t\t\t\t\t\t\t\tif (type === \"min\") {\n\t\t\t\t\t\t\t\t\tthis.filterMinPrice = Math.min(Math.round(value \/ 10000) * 10000, this.filterMaxPrice - 10000);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tthis.filterMaxPrice = Math.max(Math.round(value \/ 10000) * 10000, this.filterMinPrice + 10000);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\tconst handleUp = () => {\n\t\t\t\t\t\tdocument.removeEventListener(\"mousemove\", handleMove);\n\t\t\t\t\t\tdocument.removeEventListener(\"mouseup\", handleUp);\n\t\t\t\t\t\tdocument.removeEventListener(\"touchmove\", handleTouchMove);\n\t\t\t\t\t\tdocument.removeEventListener(\"touchend\", handleUp);\n\t\t\t\t\t};\n\n\t\t\t\t\tdocument.addEventListener(\"mousemove\", handleMove);\n\t\t\t\t\tdocument.addEventListener(\"mouseup\", handleUp);\n\t\t\t\t\tdocument.addEventListener(\"touchmove\", handleTouchMove, { passive: false });\n\t\t\t\t\tdocument.addEventListener(\"touchend\", handleUp);\n\t\t\t\t},\n\n\t\t\t\ttoggleFilterPanel() {\n\t\t\t\t\tthis.showFilterPanel = !this.showFilterPanel;\n\t\t\t\t},\n\n\t\t\t\tapplyFilter() {\n\t\t\t\t\tthis.activeFilters = [];\n\n\t\t\t\t\t\tif (this.onlyAvailable && !this.filterStatus.includes(\"available\")) {\n\t\t\t\t\t\t\tthis.filterStatus.push(\"available\");\n\t\t\t\t\t\t} else if (!this.onlyAvailable && this.filterStatus.includes(\"available\")) {\n\t\t\t\t\t\t\tthis.onlyAvailable = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\tif (this.filterLayout.length > 0) {\n\t\t\t\t\t\tthis.filterLayout.forEach(layout => {\n\t\t\t\t\t\t\tthis.addFilter(layout, layout);\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tif (this.filterMinArea > this.minArea || this.filterMaxArea < this.maxArea) {\n\t\t\t\t\t\tthis.addFilter(\"area-range\", this.filterMinArea + \" m\u00b2 - \" + this.filterMaxArea + \" m\u00b2\");\n\t\t\t\t\t\tthis.appliedFilterMinArea = this.filterMinArea;\n\t\t\t\t\t\tthis.appliedFilterMaxArea = this.filterMaxArea;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.appliedFilterMinArea = this.minArea;\n\t\t\t\t\t\tthis.appliedFilterMaxArea = this.maxArea;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (this.filterMinPrice > this.minPrice || this.filterMaxPrice < this.maxPrice) {\n\t\t\t\t\t\tthis.addFilter(\"price-range\",\n\t\t\t\t\t\t\tthis.formatPriceWithCurrency(this.filterMinPrice) + \" - \" +\n\t\t\t\t\t\t\tthis.formatPriceWithCurrency(this.filterMaxPrice));\n\n\t\t\t\t\t\tthis.appliedFilterMinPrice = this.filterMinPrice;\n\t\t\t\t\t\tthis.appliedFilterMaxPrice = this.filterMaxPrice;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.appliedFilterMinPrice = this.minPrice;\n\t\t\t\t\t\tthis.appliedFilterMaxPrice = this.maxPrice;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.appliedFilterFloor = [...this.filterFloor];\n\n\t\t\t\t\tif (this.filterFloor.length > 0) {\n\t\t\t\t\t\tthis.filterFloor.forEach(floor => {\n\t\t\t\t\t\t\tthis.addFilter(\"floor-\" + floor, floor + \". NP\");\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.appliedFilterStatus = [...this.filterStatus];\n\n\t\t\t\t\tif (this.filterStatus.includes(\"available\")) {\n\t\t\t\t\t\tthis.addFilter(\"status-available\", this.getStatusInfo(\"available\").label);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.filterStatus.includes(\"reserved\")) {\n\t\t\t\t\t\tthis.addFilter(\"status-reserved\", this.getStatusInfo(\"reserved\").label);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.filterStatus.includes(\"sold\")) {\n\t\t\t\t\t\tthis.addFilter(\"status-sold\", this.getStatusInfo(\"sold\").label);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.filterStatus.includes(\"not-available\")) {\n\t\t\t\t\t\tthis.addFilter(\"status-not-available\", this.getStatusInfo(\"not-available\").label);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.onlyAvailable) {\n\t\t\t\t\t\tthis.addFilter(\"status-available\", this.getStatusInfo(\"available\").label);\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.showFilterPanel = false;\n\t\t\t\t},\n\n\t\t\t\tresetFilter() {\n\t\t\t\t\tthis.filterLayout = [];\n\t\t\t\t\tthis.filterFloor = [];\n\t\t\t\t\tthis.filterMinArea = this.minArea;\n\t\t\t\t\tthis.filterMaxArea = this.maxArea;\n\t\t\t\t\tthis.filterMinPrice = this.minPrice;\n\t\t\t\t\tthis.filterMaxPrice = this.maxPrice;\n\t\t\t\t\tthis.filterStatus = [];\n\t\t\t\t\tthis.clearFilters();\n\t\t\t\t\tthis.onlyAvailable = false;\n\t\t\t\t}\n\t\t\t}'\n\t\tx-init=\"initRangeValues()\">\n\t\t<div\n\t\t\tx-show=\"showFilterPanel\"\n\t\t\tclass=\"fixed inset-0 z-40 m-0 bg-secondary-400\/50\"\n\t\t\t@click=\"showFilterPanel = false\"\n\t\t\tx-transition:enter=\"transition ease-out duration-300\"\n\t\t\tx-transition:enter-start=\"opacity-0\"\n\t\t\tx-transition:enter-end=\"opacity-100\"\n\t\t\tx-transition:leave=\"transition ease-in duration-200\"\n\t\t\tx-transition:leave-start=\"opacity-100\"\n\t\t\tx-transition:leave-end=\"opacity-0\">\n\t\t<\/div>\n\t\t<div\n\t\t\tx-show=\"showFilterPanel\"\n\t\t\tclass=\"fixed inset-y-0 right-0 w-full md:w-auto m-0 z-50\"\n\t\t\tx-transition:enter=\"transition ease-out duration-300\"\n\t\t\tx-transition:enter-start=\"translate-x-full\"\n\t\t\tx-transition:enter-end=\"translate-x-0\"\n\t\t\tx-transition:leave=\"transition ease-in duration-200\"\n\t\t\tx-transition:leave-start=\"translate-x-0\"\n\t\t\tx-transition:leave-end=\"translate-x-full\"\n\t\t\t@keydown.escape=\"showFilterPanel = false\">\n\t\t\t\t<div class=\"relative w-full 2xl:min-w-[54rem] h-full bg-white overflow-y-auto\" @click.stop>\n\t\t\t\t\t<div class=\"p-8 xl:p-10 2xl:px-12 2xl:py-14\">\n\t\t\t\t\t\t<div class=\"flex items-center justify-between mb-6 xl:mb-8 2xl:mb-13\">\n\t\t\t\t\t\t\t<h2 class=\"text-3xl\/tight sm:text-5xl\/tight lg:text-6xl\/tight xl:text-[4.7rem]\/tight\">Filter<\/h2>\n\t\t\t\t\t\t\t<button class=\"cursor-pointer group transition duration-150 ease-in-out\" @click=\"showFilterPanel = false\">\n\t\t\t\t\t\t\t\t<span class=\"sr-only\">Close<\/span>\n\t\t\t\t\t\t\t\t<svg class=\"svg-filtr-close size-5 md:size-6 text-neutral-950 group-hover:text-primary-500 transition-colors duration-150\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"currentColor\" viewBox=\"1 1 23.92 26\"><path d=\"M23.9166 2L2 26M2.00002 2L23.9167 26\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"\/><\/svg>\n\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"space-y-7 2xl:space-y-9\">\n\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t<h3 class=\"text-xl md:text-2xl mb-5\">Disposition<\/h3>\n\t\t\t\t\t\t\t\t<div class=\"flex flex-wrap gap-3 md:gap-6 text-lg md:text-xl\">\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"1+kk\" x-model=\"filterLayout\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">1+kk<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"2+kk\" x-model=\"filterLayout\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">2+kk<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"3+kk\" x-model=\"filterLayout\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">3+kk<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"4+kk\" x-model=\"filterLayout\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">4+kk<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t<h3 class=\"text-xl md:text-2xl mb-5\">Area<\/h3>\n\t\t\t\t\t\t\t\t<div class=\"relative pt-2 2xl:pt-7 pb-2\">\n\t\t\t\t\t\t\t\t\t<div class=\"relative\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute inset-x-0 h-0.5 bg-secondary-400 top-1\/2 -translate-y-1\/2\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute h-0.5 bg-primary-500 top-1\/2 -translate-y-1\/2\"\n\t\t\t\t\t\t\t\t\t\t\t:style=\"{\n\t\t\t\t\t\t\t\t\t\t\t\tleft: ((filterMinArea - minArea) \/ (maxArea - minArea) * 100) + '%',\n\t\t\t\t\t\t\t\t\t\t\t\tright: (100 - ((filterMaxArea - minArea) \/ (maxArea - minArea) * 100)) + '%'\n\t\t\t\t\t\t\t\t\t\t\t}\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute size-4.5 md:size-5.5 bg-white border border-secondary-400 rounded-full top-1\/2 -translate-y-1\/2 cursor-pointer\"\n\t\t\t\t\t\t\t\t\t\t\t:style=\"{\n\t\t\t\t\t\t\t\t\t\t\t\tleft: ((filterMinArea - minArea) \/ (maxArea - minArea) * 100) + '%' }\"\n\t\t\t\t\t\t\t\t\t\t\t\t@mousedown=\"startDrag($event, 'min', 'area')\"\n\t\t\t\t\t\t\t\t\t\t\t\t@touchstart=\"startDrag($event, 'min', 'area')\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute size-4.5 md:size-5.5 bg-white border border-secondary-400 rounded-full top-1\/2 -translate-y-1\/2 cursor-pointer\"\n\t\t\t\t\t\t\t\t\t\t\t:style=\"{\n\t\t\t\t\t\t\t\t\t\t\t\tright: (100 - ((filterMaxArea - minArea) \/ (maxArea - minArea) * 100)) + '%' }\"\n\t\t\t\t\t\t\t\t\t\t\t\t@mousedown=\"startDrag($event, 'max', 'area')\"\n\t\t\t\t\t\t\t\t\t\t\t\t@touchstart=\"startDrag($event, 'max', 'area')\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"mt-5 flex justify-between text-lg md:text-xl\">\n\t\t\t\t\t\t\t\t\t\t<span x-text=\"filterMinArea + ' m\u00b2'\"><\/span>\n\t\t\t\t\t\t\t\t\t\t<span x-text=\"filterMaxArea + ' m\u00b2'\"><\/span>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t<h3 class=\"text-xl md:text-2xl mb-5\">Price<\/h3>\n\t\t\t\t\t\t\t\t<div class=\"relative pt-2 2xl:pt-7 pb-2\">\n\t\t\t\t\t\t\t\t\t<div class=\"relative\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute inset-x-0 h-0.5 bg-secondary-400 top-1\/2 -translate-y-1\/2\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute h-0.5 bg-primary-500 top-1\/2 -translate-y-1\/2\"\n\t\t\t\t\t\t\t\t\t\t\t:style=\"{\n\t\t\t\t\t\t\t\t\t\t\t\tleft: ((filterMinPrice - minPrice) \/ (maxPrice - minPrice) * 100) + '%',\n\t\t\t\t\t\t\t\t\t\t\t\tright: (100 - ((filterMaxPrice - minPrice) \/ (maxPrice - minPrice) * 100)) + '%'\n\t\t\t\t\t\t\t\t\t\t\t}\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute size-4.5 md:size-5.5 bg-white border border-secondary-400 rounded-full top-1\/2 -translate-y-1\/2 cursor-pointer\"\n\t\t\t\t\t\t\t\t\t\t\t:style=\"{ left: ((filterMinPrice - minPrice) \/ (maxPrice - minPrice) * 100) + '%' }\"\n\t\t\t\t\t\t\t\t\t\t\t@mousedown=\"startDrag($event, 'min', 'price')\"\n\t\t\t\t\t\t\t\t\t\t\t@touchstart=\"startDrag($event, 'min', 'price')\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"absolute size-4.5 md:size-5.5 bg-white border border-secondary-400 rounded-full top-1\/2 -translate-y-1\/2 cursor-pointer\"\n\t\t\t\t\t\t\t\t\t\t\t:style=\"{ right: (100 - ((filterMaxPrice - minPrice) \/ (maxPrice - minPrice) * 100)) + '%' }\"\n\t\t\t\t\t\t\t\t\t\t\t@mousedown=\"startDrag($event, 'max', 'price')\"\n\t\t\t\t\t\t\t\t\t\t\t@touchstart=\"startDrag($event, 'max', 'price')\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"mt-5 flex justify-between text-lg md:text-xl\">\n\t\t\t\t\t\t\t\t\t\t<span x-text=\"formatPriceWithCurrency(filterMinPrice)\"><\/span>\n\t\t\t\t\t\t\t\t\t\t<span x-text=\"formatPriceWithCurrency(filterMaxPrice)\"><\/span>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t<h3 class=\"text-xl md:text-2xl mb-5\">Floor<\/h3>\n\t\t\t\t\t\t\t\t<div class=\"flex flex-wrap gap-3 md:gap-6 text-lg md:text-xl\">\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"1\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">1. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"2\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">2. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"3\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">3. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"4\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">4. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"5\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">5. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"6\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">6. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"7\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">7. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"8\" x-model=\"filterFloor\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">8. NP<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t<h3 class=\"text-xl md:text-2xl mb-5\">Availability<\/h3>\n\t\t\t\t\t\t\t\t<div class=\"flex flex-wrap gap-3 md:gap-6 text-lg md:text-xl\">\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" x-model=\"filterStatus\" value=\"available\" :checked=\"onlyAvailable || filterStatus.includes('available')\" @change=\"onlyAvailable = $event.target.checked\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">Available<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"reserved\" x-model=\"filterStatus\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">Reserved<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"sold\" x-model=\"filterStatus\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">Sold<\/span>\n\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<label class=\"inline-flex items-center cursor-pointer\">\n\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-checkbox size-4.5 md:size-5.5 cursor-pointer\" value=\"not-available\" x-model=\"filterStatus\">\n\t\t\t\t\t\t\t\t\t<span class=\"ml-2 md:ml-3\">Not for&nbsp;sale<\/span>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"flex flex-wrap gap-4 justify-between pt-3\">\n\t\t\t\t\t\t\t\t<button class=\"text-lg md:text-xl text-neutral-950 underline cursor-pointer hover:no-underline transition-all duration-150 ease-in-out\" @click=\"resetFilter()\">\n\t\t\t\t\t\t\t\t\tClear filter\n\t\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t<button class=\"btn btn-primary\" @click=\"applyFilter()\">\n\t\t\t\t\t\t\t\t\tConfirm selection\n\t\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\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<\/div>\n\t\t\t<div class=\"flex items-center justify-between flex-wrap gap-6 lg:gap-10 xl:gap-14\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"text-4xl\/tight sm:text-5xl\/tight lg:text-6xl\/tight xl:text-[4.7rem]\/tight\">\n\t\t\t\t\t\tOffer of&nbsp;units\n\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t<div class=\"flex items-center flex-wrap gap-4 md:gap-6 lg:gap-10 xl:gap-14\">\n\t\t\t\t\t<label class=\"form-check\">\n\t\t\t\t\t\t<div class=\"form-switch\">\n\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"form-switch-input\" x-model=\"onlyAvailable\" @change=\"if(onlyAvailable) {\n\t\t\t\t\t\t\t\t\tactiveFilters = activeFilters.filter(f => !f.value.startsWith('status-'));\n\n\t\t\t\t\t\t\t\t\tfilterStatus = filterStatus.filter(s => s === 'available');\n\t\t\t\t\t\t\t\t\tif (!filterStatus.includes('available')) {\n\t\t\t\t\t\t\t\t\t\tfilterStatus.push('available');\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tappliedFilterStatus = appliedFilterStatus.filter(s => s === 'available');\n\t\t\t\t\t\t\t\t\tif (!appliedFilterStatus.includes('available')) {\n\t\t\t\t\t\t\t\t\t\tappliedFilterStatus.push('available');\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tactiveFilters.unshift({ value: 'status-available', label: getStatusInfo('available').label });\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tremoveFilter('status-available');\n\t\t\t\t\t\t\t\t\tfilterStatus = filterStatus.filter(s => s !== 'available');\n\t\t\t\t\t\t\t\t\tappliedFilterStatus = appliedFilterStatus.filter(s => s !== 'available');\n\t\t\t\t\t\t\t\t}\">\n\n\t\t\t\t\t\t\t<div class=\"form-switch-label\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<span class=\"form-check-label\">\n\t\t\t\t\t\t\tOnly available properties\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<button class=\"btn btn-primary form-button\" @click=\"toggleFilterPanel()\">\n\t\t\t\t\t\tShow filter\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"flex flex-wrap gap-3 xl:gap-7\" x-show=\"activeFilters.length > 0\">\n\t\t\t\t<template x-for=\"filter in activeFilters\" :key=\"filter.value\">\n\t\t\t\t\t<div class=\"bg-white border border-primary-500 rounded px-2 sm:px-3 md:px-3.5 py-1.5 md:py-2 text-primary-500 text-base sm:text-lg md:text-xl font-semibold flex items-center gap-2\">\n\t\t\t\t\t\t<span x-text=\"filter.label\"><\/span>\n\t\t\t\t\t\t<button @click=\"removeFilter(filter.value)\" class=\"text-primary-500 hover:text-primary-700\">\n\t\t\t\t\t\t\t<svg class=\"svg-filtr-close size-2.5 text-primary-500 cursor-pointer group-hover:text-primary-700 transition-colors duration-150\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"currentColor\" viewBox=\"1 1 23.92 26\"><path d=\"M23.9166 2L2 26M2.00002 2L23.9167 26\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"\/><\/svg>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/template>\n\t\t\t\t<button @click=\"clearFilters()\" class=\"text-lg md:text-xl lowercase cursor-pointer underline hover:no-underline text-neutral-950\">\n\t\t\t\t\tRemove filter\n\t\t\t\t<\/button>\n\t\t\t<\/div>\n\t\t\t<div class=\"bg-white rounded-xl overflow-hidden hidden xl:block\">\n\t\t\t\t<table class=\"w-full\">\n\t\t\t\t\t<thead class=\"bg-secondary-950\">\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t<template x-for=\"(header, index) in headers\" :key=\"index\">\n\t\t\t\t\t\t\t\t<th class=\"whitespace-nowrap py-5 px-3 2xl:px-5 text-left text-white\" @click=\"header.sortable && setSort(header.key, header.sort_type)\">\n\t\t\t\t\t\t\t\t\t<div class=\"flex items-center gap-2 2xl:gap-3 font-normal text-xl 2xl:text-2xl\" :class=\"{'cursor-pointer': header.sortable}\">\n\t\t\t\t\t\t\t\t\t\t<span x-text=\"header.title\"><\/span>\n\t\t\t\t\t\t\t\t\t\t<template x-if=\"header.sortable\">\n\t\t\t\t\t\t\t\t\t\t\t<svg class=\"size-3 2xl:size-4\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewbox=\"12 9.17 10 15.67\">\n\t\t\t\t\t\t\t\t\t\t\t\t<path class=\"transition-colors\" :class=\"{'stroke-primary-500': activeSortColumn === header.key && sortDirection === 'asc'}\" d=\"M21.25 14.1665L17 9.9165L12.75 14.1665\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"square\"\/>\n\t\t\t\t\t\t\t\t\t\t\t\t<path class=\"transition-colors\" :class=\"{'stroke-primary-500': activeSortColumn === header.key && sortDirection === 'desc'}\" d=\"M12.75 19.8335L17 24.0835L21.25 19.8335\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"square\"\/>\n\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/th>\n\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t<th class=\"p-5\"><\/th>\n\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t<\/thead>\n\t\t\t\t\t<tbody class=\"divide-y divide-secondary-300\">\n\t\t\t\t\t\t<template x-for=\"(item, index) in filteredItems()\" :key=\"index\">\n\t\t\t\t\t\t\t<tr class=\"relative stretched-link-container hover:bg-secondary-300 cursor-pointer\">\n\t\t\t\t\t\t\t\t<template x-for=\"(header, hindex) in headers\" :key=\"hindex\">\n\t\t\t\t\t\t\t\t\t<td class=\"p-3 2xl:p-5 text-lg 2xl:text-xl\">\n\t\t\t\t\t\t\t\t\t\t<template x-if=\"header.key === 'status'\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"inline-block w-30 2xl:w-34 px-3 2xl:px-4 py-1 2xl:py-1.5 rounded-md text-lg 2xl:text-xl font-semibold text-center\" :class=\"getStatusInfo(item.status).class\" x-text=\"getStatusInfo(item.status).label\"><\/span>\n\t\t\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t\t\t<template x-if=\"header.key === 'parts'\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"whitespace-nowrap\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span x-html=\"formatParts(item, true)\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t\t\t<template x-if=\"header.key !== 'status' && header.key !== 'parts'\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"whitespace-nowrap\" :class=\"{'tabular-nums': header.key === 'price'}\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span x-text=\"formatValue(item[header.key], header.key, item)\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<template x-if=\"header.unit && item[header.key] !== null && header.key !== 'price'\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span x-text=\"header.unit\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t\t\t\t\t<template x-if=\"header.unit && header.key === 'price' && item.status === 'available' && item[header.key] > 0 && !hidePrices\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span x-text=\"header.unit\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t\t<td class=\"p-3 2xl:p-5 text-lg 2xl:text-xl\">\n\t\t\t\t\t\t\t\t\t<a :href=\"item.link\" class=\"text-primary-500 font-semibold flex items-center gap-2 stretched-link group\">\n\t\t\t\t\t\t\t\t\t\t<span>Show<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"transition-transform duration-300 transform group-hover:translate-x-2\">\n\t\t\t\t\t\t\t\t\t\t\t<svg class=\"svg-arrow-more size-3\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0.25 1.25 11.5 9.5\"><path d=\"M11 6L1 6M11 6L7 10M11 6L7 2\" stroke=\"#BC3D18\" stroke-width=\"1.5\" stroke-linecap=\"square\"\/><\/svg>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/template>\n\t\t\t\t\t<\/tbody>\n\t\t\t\t<\/table>\n\t\t\t<\/div>\n\t\t\t<div class=\"xl:hidden grid gap-6 sm:grid-cols-2 lg:grid-cols-3\">\n\t\t\t\t<template x-for=\"(item, index) in filteredItems()\" :key=\"index\">\n\t\t\t\t\t<div class=\"relative stretched-link-container p-5 bg-white border rounded-xl transition-shadow duration-300 ease-in-out hover:shadow-2xl cursor-pointer\">\n\t\t\t\t\t\t<template x-for=\"(header, hIndex) in headers\" :key=\"hIndex\">\n\t\t\t\t\t\t<div class=\"mb-2 last:mb-0\" x-show=\"item[header.key] !== null || header.key === 'status' || header.key === 'parts'\">\n\t\t\t\t\t\t\t<span class=\"font-semibold\" x-text=\"header.title + ':'\"><\/span>\n\t\t\t\t\t\t\t<template x-if=\"header.key === 'status'\">\n\t\t\t\t\t\t\t\t<span class=\"ml-1 px-2 py-1 rounded text-sm\" :class=\"getStatusInfo(item.status).class\" x-text=\"getStatusInfo(item.status).label\"><\/span>\n\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t<template x-if=\"header.key === 'parts'\">\n\t\t\t\t\t\t\t\t<span class=\"ml-1\" x-html=\"formatParts(item)\"><\/span>\n\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t<template x-if=\"header.key !== 'status' && header.key !== 'parts'\">\n\t\t\t\t\t\t\t\t<span class=\"ml-1\" :class=\"{'tabular-nums': header.key === 'price'}\" x-text=\"formatValue(item[header.key], header.key, item)\"><\/span>\n\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t<template x-if=\"header.unit && item[header.key] !== null && header.key !== 'status' && header.key !== 'parts' && header.key !== 'price'\">\n\t\t\t\t\t\t\t\t<span x-text=\"header.unit\"><\/span>\n\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t\t<template x-if=\"header.unit && header.key === 'price' && item.status === 'available' && item[header.key] > 0 && !hidePrices\">\n\t\t\t\t\t\t\t\t<span x-text=\"header.unit\"><\/span>\n\t\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/template>\n\t\t\t\t\t\t<a :href=\"item.link\" class=\"text-primary-500 font-semibold flex items-center gap-2 mt-4 stretched-link group\">\n\t\t\t\t\t\t\t<span>Show<\/span>\n\t\t\t\t\t\t\t<span class=\"transition-transform duration-300 transform group-hover:translate-x-2\">\n\t\t\t\t\t\t\t\t<svg class=\"svg-arrow-more size-3\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0.25 1.25 11.5 9.5\"><path d=\"M11 6L1 6M11 6L7 10M11 6L7 2\" stroke=\"#BC3D18\" stroke-width=\"1.5\" stroke-linecap=\"square\"\/><\/svg>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/template>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":5,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-1761","page","type-page","status-publish","hentry"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Rezidence Ponavia\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Apartment selection | Rezidence Ponavia\" \/>\n\t\t<meta property=\"og:description\" content=\". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.ponavia-rezidence.cz\/wp-content\/uploads\/trikaya-ponavia-iv-exterier-4-3-4k-1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.ponavia-rezidence.cz\/wp-content\/uploads\/trikaya-ponavia-iv-exterier-4-3-4k-1.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"3000\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1688\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-10-23T08:18:35+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-01T08:08:50+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Apartment selection | Rezidence Ponavia\" \/>\n\t\t<meta name=\"twitter:description\" content=\". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.ponavia-rezidence.cz\/wp-content\/uploads\/trikaya-ponavia-iv-exterier-4-3-4k-1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/choosing-an-apartment\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/choosing-an-apartment\\\/#listItem\",\"name\":\"Apartment selection\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/choosing-an-apartment\\\/#listItem\",\"position\":2,\"name\":\"Apartment selection\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/#organization\",\"name\":\"Rezidence Ponavia\",\"url\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/choosing-an-apartment\\\/#webpage\",\"url\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/choosing-an-apartment\\\/\",\"name\":\"Apartment selection | Rezidence Ponavia\",\"description\":\". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/choosing-an-apartment\\\/#breadcrumblist\"},\"datePublished\":\"2025-10-23T10:18:35+02:00\",\"dateModified\":\"2026-06-01T10:08:50+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/\",\"name\":\"Ponavia Rezidence\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ponavia-rezidence.cz\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Apartment selection | Rezidence Ponavia<\/title>\n\n","aioseo_head_json":{"title":"Apartment selection | Rezidence Ponavia","description":". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show","canonical_url":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/www.ponavia-rezidence.cz\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/#listItem","name":"Apartment selection"}},{"@type":"ListItem","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/#listItem","position":2,"name":"Apartment selection","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/#organization","name":"Rezidence Ponavia","url":"https:\/\/www.ponavia-rezidence.cz\/en\/"},{"@type":"WebPage","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/#webpage","url":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/","name":"Apartment selection | Rezidence Ponavia","description":". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.ponavia-rezidence.cz\/en\/#website"},"breadcrumb":{"@id":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/#breadcrumblist"},"datePublished":"2025-10-23T10:18:35+02:00","dateModified":"2026-06-01T10:08:50+02:00"},{"@type":"WebSite","@id":"https:\/\/www.ponavia-rezidence.cz\/en\/#website","url":"https:\/\/www.ponavia-rezidence.cz\/en\/","name":"Ponavia Rezidence","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.ponavia-rezidence.cz\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Rezidence Ponavia","og:type":"article","og:title":"Apartment selection | Rezidence Ponavia","og:description":". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show","og:url":"https:\/\/www.ponavia-rezidence.cz\/en\/choosing-an-apartment\/","og:image":"https:\/\/www.ponavia-rezidence.cz\/wp-content\/uploads\/trikaya-ponavia-iv-exterier-4-3-4k-1.png","og:image:secure_url":"https:\/\/www.ponavia-rezidence.cz\/wp-content\/uploads\/trikaya-ponavia-iv-exterier-4-3-4k-1.png","og:image:width":3000,"og:image:height":1688,"article:published_time":"2025-10-23T08:18:35+00:00","article:modified_time":"2026-06-01T08:08:50+00:00","twitter:card":"summary","twitter:title":"Apartment selection | Rezidence Ponavia","twitter:description":". floor from available East view West view Filter Close Disposition 1+kk 2+kk 3+kk 4+kk Area Price Floor 1. NP 2. NP 3. NP 4. NP 5. NP 6. NP 7. NP 8. NP Availability Available Reserved Sold Not for sale Clear filter Confirm selection Offer of units Only available properties Show filter Remove filter Show Show","twitter:image":"https:\/\/www.ponavia-rezidence.cz\/wp-content\/uploads\/trikaya-ponavia-iv-exterier-4-3-4k-1.png"},"aioseo_meta_data":{"post_id":"1761","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":false,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-06-01 08:08:55","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":null,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-01-08 14:34:22","updated":"2026-06-01 10:41:03"},"_links":{"self":[{"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/pages\/1761","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/comments?post=1761"}],"version-history":[{"count":3,"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/pages\/1761\/revisions"}],"predecessor-version":[{"id":1764,"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/pages\/1761\/revisions\/1764"}],"wp:attachment":[{"href":"https:\/\/www.ponavia-rezidence.cz\/en\/wp-json\/wp\/v2\/media?parent=1761"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}