

{"id":25724,"date":"2026-04-09T11:44:42","date_gmt":"2026-04-09T09:44:42","guid":{"rendered":"https:\/\/aquaelite.it\/pocket\/"},"modified":"2026-04-10T12:45:12","modified_gmt":"2026-04-10T10:45:12","slug":"pocket","status":"publish","type":"page","link":"https:\/\/aquaelite.it\/en\/pocket\/","title":{"rendered":"Pocket"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"25724\" class=\"elementor elementor-25724 elementor-25455\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a118da e-con-full e-flex qodef-elementor-content-no e-con e-parent\" data-id=\"5a118da\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-969782a elementor-widget elementor-widget-qi_addons_for_elementor_text_marquee\" data-id=\"969782a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"qi_addons_for_elementor_text_marquee.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-qi-text-marquee qodef-layout--default\">\n\t<div class=\"qodef-m-content\">\n\t\t<div class=\"qodef-m-text qodef-text--original\">\n\t\t\t\t\t\t\t<span class=\"qodef-m-text-item elementor-repeater-item-0db92ec\" >POCKET<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"qodef-m-text-item elementor-repeater-item-6f8a77b\" >POCKET<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"qodef-m-text-item elementor-repeater-item-0ebaa5e\" >POCKET<\/span>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"qodef-m-text qodef-text--copy\">\n\t\t\t\t\t\t\t<span class=\"qodef-m-text-item elementor-repeater-item-0db92ec\" >POCKET<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"qodef-m-text-item elementor-repeater-item-6f8a77b\" >POCKET<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"qodef-m-text-item elementor-repeater-item-0ebaa5e\" >POCKET<\/span>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd6f47e elementor-widget elementor-widget-html\" data-id=\"bd6f47e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\/* Contenitore principale *\/\n.menu-progress {\n    flex: 1 1 25%;\n    max-width: 25%;\n    position: relative;\n    height: 100%;\n    display: flex !important;\n    align-items: center;\n    justify-content: center;\n    overflow: hidden;\n    background-color: transparent;\n    border-right: 1px solid #c34628;\n    --progress: 0%; \/* Variabile gestita dallo script *\/\n}\n\n.menu-progress:last-child { border-right: none; }\n\n\/* IL TESTO DI BASE (ARANCIONE) *\/\n.menu-progress h4 {\n    color: #c34628 !important;\n    margin: 0 !important;\n    padding: 0px 0;\n    z-index: 1;\n    text-align: center;\n    width: 100%;\n}\n\n\/* LA MASCHERA CHE SCORRE (BARRA ROSSA + TESTO BIANCO) *\/\n.menu-progress::after {\n    content: attr(data-text); \/* Copia il testo dell'H4 *\/\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    z-index: 2;\n    \n    \/* Colori del livello superiore *\/\n    background-color: #c34628;\n    color: #EEE9DE;\n    \n    \/* Centramento perfetto (deve essere identico all'H4) *\/\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    text-align: center;\n    font-family: \"Instrument Sans\";\n    font-size: 25px;\n    font-weight: 500;\n    text-transform: inherit;\n    letter-spacing: inherit;\n\n    \/* IL SEGRETO: Tagliamo questo livello in base alla progressione *\/\n    \/* L'area visibile va da 0 a --progress *\/\n    clip-path: inset(0 calc(100% - var(--progress)) 0 0);\n    \n    transition: clip-path 0.1s linear;\n    pointer-events: none;\n}<\/style><script>document.addEventListener('DOMContentLoaded', function() {\n    const menuItems = document.querySelectorAll('.menu-progress');\n\n    \/\/ 1. Sincronizziamo il testo per ogni voce del menu\n    menuItems.forEach(item => {\n        const h4Text = item.querySelector('h4').innerText;\n        item.setAttribute('data-text', h4Text);\n    });\n\n    const sectionsConfig = [\n        { ids: ['concept'], class: '.concept-link' },\n        { ids: ['designer-1', 'designer-2'], class: '.designer-link' },\n        { ids: ['finiture'], class: '.finiture-link' },\n        { ids: ['contatti'], class: '.contatti-link' }\n    ];\n\n    function updateProgress() {\n        sectionsConfig.forEach(config => {\n            const menuItem = document.querySelector(config.class);\n            if (!menuItem) return;\n\n            let progress = 0;\n            const firstSec = document.getElementById(config.ids[0]);\n            const lastSec = document.getElementById(config.ids[config.ids.length - 1]);\n\n            if (firstSec && lastSec) {\n                const rectStart = firstSec.getBoundingClientRect();\n                const totalHeight = (lastSec.offsetTop + lastSec.offsetHeight) - firstSec.offsetTop;\n                const triggerPoint = 100; \/\/ Pixel dal top per attivare il riempimento\n\n                if (rectStart.top <= triggerPoint) {\n                    progress = (Math.abs(rectStart.top - triggerPoint) \/ totalHeight) * 100;\n                }\n            }\n\n            progress = Math.min(Math.max(progress, 0), 100);\n            menuItem.style.setProperty('--progress', progress + '%');\n        });\n    }\n\n    window.addEventListener('scroll', updateProgress);\n    updateProgress(); \/\/ Esegui all'avvio\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fdb269c elementor-hidden-tablet elementor-hidden-mobile e-grid e-con-full qodef-elementor-content-no e-con e-parent\" data-id=\"fdb269c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eca3dbd elementor-widget__width-inherit menu-progress concept-link elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"eca3dbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--center qodef-title-break--disabled\">\n\t\t<h4 class=\"qodef-m-title\" style=\"color: #C3462800\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"#concept\" target=\"_self\">\n\t\t\t\t\tConcept\t\t\t\t\t<\/a>\n\t\t\t<\/h4>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4431587 elementor-widget__width-inherit menu-progress designer-link elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"4431587\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--center qodef-title-break--disabled\">\n\t\t<h4 class=\"qodef-m-title\" style=\"color: #C34628\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"#designer-1\" target=\"_self\">\n\t\t\t\t\tDesigner\t\t\t\t\t<\/a>\n\t\t\t<\/h4>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8787dcb elementor-widget__width-inherit menu-progress finiture-link elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"8787dcb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--center qodef-title-break--disabled\">\n\t\t<h4 class=\"qodef-m-title\" style=\"color: #C34628\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"#finiture\" target=\"_self\">\n\t\t\t\t\tFinishes\t\t\t\t\t<\/a>\n\t\t\t<\/h4>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1912971 elementor-widget__width-inherit menu-progress contatti-link elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"1912971\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--center qodef-title-break--disabled\">\n\t\t<h4 class=\"qodef-m-title\" style=\"color: #C34628\">\n\t\t\t\t\t<a itemprop=\"url\" href=\"https:\/\/aquaelite.it\/contatti\/\" target=\"_self\">\n\t\t\t\t\tContatti\t\t\t\t\t<\/a>\n\t\t\t<\/h4>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3321994 e-flex e-con-boxed qodef-elementor-content-no e-con e-parent\" data-id=\"3321994\" data-element_type=\"container\" data-e-type=\"container\" id=\"concept\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-8a6291d e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"8a6291d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-09d8f0b e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"09d8f0b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-009a790 elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"009a790\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--left qodef-title-break--disabled\">\n\t\t<h2 class=\"qodef-m-title\" style=\"color: #C34628\">\n\t\t\t\t\tTake away<br \/> to restore value.\t\t\t<\/h2>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a88ddea elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"a88ddea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Everyday spaces are measured, intimate, and real. Pocket is based on the principle of subtraction: eliminating the superfluous to highlight what truly matters. A single size, 40\u00d740 cm, with just two functions: water and light.  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-985986b e-transform elementor-widget elementor-widget-image\" data-id=\"985986b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"650\" height=\"650\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-5_4-1-650x650.jpg\" class=\"attachment-madelyn_core_image_size_square size-madelyn_core_image_size_square wp-image-25468\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-5_4-1-650x650.jpg 650w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-5_4-1-150x150.jpg 150w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-5_4-1-100x100.jpg 100w\" sizes=\"(max-width: 650px) 100vw, 650px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d29b67 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"6d29b67\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d6f95a0 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"d6f95a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1463\" height=\"2048\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-scaled.jpg\" class=\"attachment-full size-full wp-image-25464\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-scaled.jpg 1463w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-214x300.jpg 214w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-731x1024.jpg 731w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-768x1075.jpg 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-1097x1536.jpg 1097w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Render_v02-600x840.jpg 600w\" sizes=\"(max-width: 1463px) 100vw, 1463px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a74148 elementor-widget__width-initial elementor-absolute elementor-widget elementor-widget-image\" data-id=\"5a74148\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"911\" height=\"514\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-8.png\" class=\"attachment-large size-large wp-image-25545\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-8.png 911w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-8-300x169.png 300w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-8-768x433.png 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-8-600x339.png 600w\" sizes=\"(max-width: 911px) 100vw, 911px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4185185 elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"4185185\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--left qodef-title-break--disabled\">\n\t\t<h3 class=\"qodef-m-title\" style=\"color: #C34628\">\n\t\t\t\t\tA moment<br \/> of luxury, every day.\t\t\t<\/h3>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-083846d elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"083846d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\">Luxury isn\u2019t just for special occasions. It\u2019s a subtle quality that weaves itself into everyday life. Pocket brings this sense of well-being to the simple act of showering.  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-624e644 e-con-full e-flex qodef-elementor-content-no e-con e-parent\" data-id=\"624e644\" data-element_type=\"container\" data-e-type=\"container\" id=\"designer-1\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7c6e356 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"7c6e356\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-193953f elementor-widget elementor-widget-image\" data-id=\"193953f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/elementor\/thumbs\/PHOTO-2026-03-10-11-02-48-2-rlqvx5lm9me8kuqhcdffffow2lseslfe2af3lcifps.jpg\" title=\"PHOTO-2026-03-10-11-02-48 2\" alt=\"PHOTO-2026-03-10-11-02-48 2\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4fbb4e3 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"4fbb4e3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dd88dfe elementor-widget__width-initial elementor-absolute elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"dd88dfe\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.6,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.4,&quot;sizes&quot;:[]},&quot;motion_fx_rotateZ_effect&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.5,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;],&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_rotateZ_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"822\" height=\"822\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7.png\" class=\"attachment-large size-large wp-image-25543\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7.png 822w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-300x300.png 300w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-150x150.png 150w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-768x768.png 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-650x650.png 650w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-600x600.png 600w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-100x100.png 100w\" sizes=\"(max-width: 822px) 100vw, 822px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6a91488 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"6a91488\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-e7bd156 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"e7bd156\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bb8a0e8 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"bb8a0e8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c938d13 elementor-widget-tablet__width-initial elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"c938d13\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--left\">\n\t\t<h2 class=\"qodef-m-title\" style=\"color: #EEE9DE\">\n\t\t\t\t\tBruna Rapisarda's perspective.\t\t\t<\/h2>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c505d83 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"c505d83\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-78b160f e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"78b160f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5b01cb elementor-widget elementor-widget-text-editor\" data-id=\"a5b01cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Inspired by the Japanese principle of Ma\u2014space as an active element\u2014and by Ikebana, the art of creating through subtraction. Rounded edges, soft surfaces: an object that complements the home environment without overwhelming it. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-94c7a1e elementor-widget__width-initial elementor-hidden-desktop elementor-widget elementor-widget-image\" data-id=\"94c7a1e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.4,&quot;sizes&quot;:[]},&quot;motion_fx_rotateZ_effect&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.5,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;mobile&quot;],&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_rotateZ_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"822\" height=\"822\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7.png\" class=\"attachment-large size-large wp-image-25543\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7.png 822w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-300x300.png 300w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-150x150.png 150w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-768x768.png 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-650x650.png 650w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-600x600.png 600w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Group-7-100x100.png 100w\" sizes=\"(max-width: 822px) 100vw, 822px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b97b74f e-con-full e-flex qodef-elementor-content-no e-con e-parent\" data-id=\"b97b74f\" data-element_type=\"container\" data-e-type=\"container\" id=\"designer-2\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-8ff39de e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"8ff39de\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c62371e elementor-widget__width-auto e-transform elementor-widget elementor-widget-text-editor\" data-id=\"c62371e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:108,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Elite in<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4cf9db1 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"4cf9db1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3071e3d elementor-widget elementor-widget-image\" data-id=\"3071e3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.4,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;],&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1072\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2.jpg\" class=\"attachment-full size-full wp-image-25476\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2.jpg 1920w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-300x168.jpg 300w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1024x572.jpg 1024w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-768x429.jpg 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1536x858.jpg 1536w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-600x335.jpg 600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a89e2d9 elementor-absolute elementor-widget elementor-widget-image\" data-id=\"a89e2d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"661\" height=\"787\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket_Schizzo-2-2-1.png\" class=\"attachment-full size-full wp-image-25555\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket_Schizzo-2-2-1.png 661w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket_Schizzo-2-2-1-252x300.png 252w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket_Schizzo-2-2-1-600x714.png 600w\" sizes=\"(max-width: 661px) 100vw, 661px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ef851ac elementor-widget elementor-widget-image\" data-id=\"ef851ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1440\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1.jpg\" class=\"attachment-full size-full wp-image-25486\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1.jpg 1920w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1-300x225.jpg 300w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1-1024x768.jpg 1024w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1-768x576.jpg 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1-1536x1152.jpg 1536w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/pocket-2-1-600x450.jpg 600w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3cf07a5 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"3cf07a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e6a1ea8 elementor-widget__width-auto e-transform elementor-widget elementor-widget-text-editor\" data-id=\"e6a1ea8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-77,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: right;\">your pocket<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-23ba7ec e-con-full e-flex qodef-elementor-content-no e-con e-parent\" data-id=\"23ba7ec\" data-element_type=\"container\" data-e-type=\"container\" id=\"finiture\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-df6926a e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"df6926a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5b689fb e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"5b689fb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7f919ad e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"7f919ad\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d06446 elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"6d06446\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--left qodef-title-break--disabled\">\n\t\t<h2 class=\"qodef-m-title\" style=\"color: #C34628\">\n\t\t\t\t\tFour new finishes, four moments of the day\t\t\t<\/h2>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b973032 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"b973032\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\">Pocket is available in four finishes designed to blend seamlessly into any home setting. A subtle presence that adapts without imposing itself. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c7296a9 e-grid e-con-full qodef-elementor-content-no e-con e-child\" data-id=\"c7296a9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-291765b e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"291765b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2b4d321 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"2b4d321\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-05d10a9 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"05d10a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"fas fa-circle\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5dbb4ef elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"5dbb4ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\">RAL <br><strong>2013<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cc29170 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"cc29170\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ee4f890 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"ee4f890\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ad55caf elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"ad55caf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"fas fa-circle\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2ebc03a elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"2ebc03a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\">RAL <br><strong>7033<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3aaeeb3 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"3aaeeb3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-496af16 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"496af16\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b33034b elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"b33034b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"fas fa-circle\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-62d2f74 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"62d2f74\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\">RAL <br><strong>1035<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-63dac3a e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"63dac3a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bf02418 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"bf02418\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6e1121d elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"6e1121d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"fas fa-circle\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b7d0483 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"b7d0483\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\">RAL <br><strong>1015<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7499c44 e-con-full e-flex qodef-elementor-content-no e-con e-child\" data-id=\"7499c44\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0c46cab elementor-widget elementor-widget-image\" data-id=\"0c46cab\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_rotateZ_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;motion_fx_rotateZ_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:80}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"819\" height=\"1024\" src=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1-819x1024.png\" class=\"attachment-large size-large wp-image-25482\" alt=\"\" srcset=\"https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1-819x1024.png 819w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1-240x300.png 240w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1-768x960.png 768w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1-1229x1536.png 1229w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1-600x750.png 600w, https:\/\/aquaelite.it\/wp-content\/uploads\/2026\/04\/Pocket-2_1-1.png 1500w\" sizes=\"(max-width: 819px) 100vw, 819px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-bef9358 elementor-section-full_width qodef-elementor-back-btn-skin-light elementor-section-items-stretch elementor-section-stretched elementor-section-height-min-height elementor-section-height-default qodef-elementor-content-no qodef-section-title-text-holder-no qodef-section-line-animation-holder-no\" data-id=\"bef9358\" data-element_type=\"section\" data-e-type=\"section\" id=\"contatti\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-28e74f9\" data-id=\"28e74f9\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-260b886 elementor-widget elementor-widget-spacer\" data-id=\"260b886\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4d55d3d\" data-id=\"4d55d3d\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58505ff e-flex e-con-boxed qodef-elementor-content-no e-con e-parent\" data-id=\"58505ff\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf0bc8e elementor-widget elementor-widget-madelyn_core_section_title\" data-id=\"bf0bc8e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_section_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"qodef-shortcode qodef-m qodef-section-title qodef-alignment--left qodef-title-break--disabled\">\n\t\t<h3 class=\"qodef-m-title\" style=\"color: #EEE9DE\">\n\t\t\t\t\tDiscover Pocket at our Ipunto0 showroom\t\t\t<\/h3>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f029c2 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"5f029c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p2\"><strong>Via Montebello 27, Milano<\/strong><br><em>Brera Design District<br>Fermata Metro: Moscova-Turati<\/em><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a20807 elementor-widget elementor-widget-spacer\" data-id=\"0a20807\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ed20ed1 elementor-widget elementor-widget-madelyn_core_button\" data-id=\"ed20ed1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"madelyn_core_button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<a class=\"qodef-shortcode qodef-m qodef-button qodef-layout--outlined qodef-html--link qodef-btn-custom-hover-color\" href=\"https:\/\/aquaelite.it\/en\/contacts\/\" target=\"_self\" data-color=\"#EEE9DE\" data-hover-color=\"#C34628\" style=\"color: #EEE9DE;border-color: #EEE9DE\">\n\t<span class=\"qodef-m-text\">Contacts us now<\/span>\n<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>POCKET POCKET POCKET POCKET POCKET POCKET Concept Designer Finishes Contatti Take away to restore value. Everyday spaces are measured, intimate, and real. Pocket is based on the principle of subtraction: eliminating the superfluous to highlight what truly matters. A single size, 40\u00d740 cm, with just two functions: water and light. A moment of luxury, every [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-full-width.php","meta":{"content-type":"","footnotes":""},"class_list":["post-25724","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/pages\/25724","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/comments?post=25724"}],"version-history":[{"count":2,"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/pages\/25724\/revisions"}],"predecessor-version":[{"id":25726,"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/pages\/25724\/revisions\/25726"}],"wp:attachment":[{"href":"https:\/\/aquaelite.it\/en\/wp-json\/wp\/v2\/media?parent=25724"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}