{"id":7971,"date":"2023-03-27T14:51:18","date_gmt":"2023-03-27T12:51:18","guid":{"rendered":"https:\/\/chiccodoro.com\/caffe-chicco-doro\/"},"modified":"2026-06-03T09:15:33","modified_gmt":"2026-06-03T07:15:33","slug":"caffe-chicco-doro","status":"publish","type":"page","link":"https:\/\/chiccodoro.com\/en\/","title":{"rendered":"Caff\u00e8 Chicco d&#8217;Oro"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7971\" class=\"elementor elementor-7971 elementor-19\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1bed7e7 chicco-hero-bloom e-flex e-con-boxed e-con e-parent\" data-id=\"1bed7e7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-b1c64b6 e-flex e-con-boxed e-con e-child\" data-id=\"b1c64b6\" 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-d0dc2a8 elementor-widget elementor-widget-html\" data-id=\"d0dc2a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n  .chicco-hero-bloom {\n    position: relative;\n    overflow: hidden;\n    z-index: 0;\n    isolation: isolate;\n  }\n\n  .chicco-hero-bloom .chicco-flower-canvas {\n    position: absolute;\n    inset: 0;\n    width: 100%;\n    height: 100%;\n    pointer-events: none !important;\n    user-select: none;\n    z-index: 1;\n  }\n\n  .chicco-hero-bloom > *:not(.chicco-flower-canvas) {\n    position: relative;\n    z-index: 2;\n  }\n\n  .elementor-location-header,\n  .elementor-location-header .elementor-widget-nav-menu,\n  .elementor-location-header .elementor-nav-menu,\n  .elementor-location-header .elementor-nav-menu--main,\n  .elementor-location-header .elementor-nav-menu--dropdown,\n  .elementor-location-header .sub-menu {\n    position: relative;\n    z-index: 99999 !important;\n  }\n\n  .elementor-location-header .elementor-nav-menu--dropdown,\n  .elementor-location-header .sub-menu {\n    pointer-events: auto !important;\n  }\n<\/style>\n\n<script>\n(() => {\n  const HERO_CLASS = 'chicco-hero-bloom';\n\n  const CONFIG = {\n    maxParticles: 90,\n    spawnEveryMs: 26,\n    flowersPerMove: 2,\n    idleFlowers: true,\n    idleEveryMs: 900,\n    petalColours: ['#ffffff', '#fff4b8', '#ffd21f', '#f7d35a', '#f6b6d8', '#c58be8'],\n    centreColours: ['#f1bf00', '#6b3a18', '#8a5a24'],\n    coffeeColour: '#5a2b12',\n    gravity: 0.008,\n    wind: 0.012,\n    fadeSpeed: 0.009,\n    minSize: 5,\n    maxSize: 15\n  };\n\n  function initBloomHero(hero) {\n    if (!hero || hero.dataset.bloomReady === 'true') return;\n    hero.dataset.bloomReady = 'true';\n\n    const canvas = document.createElement('canvas');\n    canvas.className = 'chicco-flower-canvas';\n    hero.prepend(canvas);\n\n    const ctx = canvas.getContext('2d');\n    let width = 0;\n    let height = 0;\n    let particles = [];\n    let lastSpawn = 0;\n    let lastIdle = 0;\n    let mouse = { x: 0, y: 0, active: false };\n\n    const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n    if (prefersReducedMotion) return;\n\n    function resize() {\n      const rect = hero.getBoundingClientRect();\n      const dpr = Math.min(window.devicePixelRatio || 1, 2);\n\n      width = rect.width;\n      height = rect.height;\n\n      canvas.width = width * dpr;\n      canvas.height = height * dpr;\n      canvas.style.width = width + 'px';\n      canvas.style.height = height + 'px';\n\n      ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n    }\n\n    function rand(min, max) {\n      return Math.random() * (max - min) + min;\n    }\n\n    function pick(arr) {\n      return arr[Math.floor(Math.random() * arr.length)];\n    }\n\n    function spawn(x, y, burst = false) {\n      const count = burst ? 12 : CONFIG.flowersPerMove;\n\n      for (let i = 0; i < count; i++) {\n        if (particles.length >= CONFIG.maxParticles) particles.shift();\n\n        const isBean = Math.random() < 0.14;\n\n        particles.push({\n          x: x + rand(-14, 14),\n          y: y + rand(-12, 12),\n          vx: rand(-0.45, 0.45),\n          vy: rand(-0.95, -0.15),\n          size: rand(CONFIG.minSize, CONFIG.maxSize),\n          rotation: rand(0, Math.PI * 2),\n          spin: rand(-0.035, 0.035),\n          life: 1,\n          type: isBean ? 'bean' : 'flower',\n          petals: Math.floor(rand(5, 8)),\n          petalColour: pick(CONFIG.petalColours),\n          centreColour: pick(CONFIG.centreColours)\n        });\n      }\n    }\n\n    function drawFlower(p) {\n      ctx.save();\n      ctx.translate(p.x, p.y);\n      ctx.rotate(p.rotation);\n      ctx.globalAlpha = Math.max(p.life, 0);\n\n      const petals = p.petals;\n      const petalLength = p.size * 1.05;\n      const petalWidth = p.size * 0.46;\n\n      ctx.fillStyle = p.petalColour;\n\n      for (let i = 0; i < petals; i++) {\n        const angle = (Math.PI * 2 \/ petals) * i;\n        ctx.save();\n        ctx.rotate(angle);\n        ctx.beginPath();\n        ctx.ellipse(0, -petalLength * 0.52, petalWidth, petalLength, 0, 0, Math.PI * 2);\n        ctx.fill();\n        ctx.restore();\n      }\n\n      ctx.fillStyle = p.centreColour;\n      ctx.beginPath();\n      ctx.arc(0, 0, p.size * 0.34, 0, Math.PI * 2);\n      ctx.fill();\n\n      ctx.restore();\n    }\n\n    function drawBean(p) {\n      ctx.save();\n      ctx.translate(p.x, p.y);\n      ctx.rotate(p.rotation);\n      ctx.globalAlpha = Math.max(p.life * 0.75, 0);\n\n      ctx.fillStyle = CONFIG.coffeeColour;\n      ctx.beginPath();\n      ctx.ellipse(0, 0, p.size * 0.38, p.size * 0.72, 0, 0, Math.PI * 2);\n      ctx.fill();\n\n      ctx.strokeStyle = 'rgba(255, 210, 90, 0.55)';\n      ctx.lineWidth = 1;\n      ctx.beginPath();\n      ctx.moveTo(0, -p.size * 0.48);\n      ctx.bezierCurveTo(p.size * 0.16, -p.size * 0.18, -p.size * 0.16, p.size * 0.18, 0, p.size * 0.48);\n      ctx.stroke();\n\n      ctx.restore();\n    }\n\n    function animate(time) {\n      ctx.clearRect(0, 0, width, height);\n\n      if (CONFIG.idleFlowers && time - lastIdle > CONFIG.idleEveryMs && !mouse.active) {\n        lastIdle = time;\n        spawn(rand(width * 0.15, width * 0.85), rand(height * 0.28, height * 0.76), false);\n      }\n\n      particles = particles.filter(p => p.life > 0);\n\n      for (const p of particles) {\n        p.vy += CONFIG.gravity;\n        p.vx += Math.sin(time * 0.001 + p.y * 0.01) * CONFIG.wind;\n\n        p.x += p.vx;\n        p.y += p.vy;\n        p.rotation += p.spin;\n        p.life -= CONFIG.fadeSpeed;\n\n        if (p.type === 'bean') {\n          drawBean(p);\n        } else {\n          drawFlower(p);\n        }\n      }\n\n      requestAnimationFrame(animate);\n    }\n\n    function pointerPosition(event) {\n      const rect = hero.getBoundingClientRect();\n      return {\n        x: event.clientX - rect.left,\n        y: event.clientY - rect.top\n      };\n    }\n\n    hero.addEventListener('pointermove', event => {\n      const now = performance.now();\n      if (now - lastSpawn < CONFIG.spawnEveryMs) return;\n\n      lastSpawn = now;\n      mouse = { ...pointerPosition(event), active: true };\n      spawn(mouse.x, mouse.y, false);\n    }, { passive: true });\n\n    hero.addEventListener('pointerenter', event => {\n      mouse = { ...pointerPosition(event), active: true };\n      spawn(mouse.x, mouse.y, true);\n    }, { passive: true });\n\n    hero.addEventListener('pointerleave', () => {\n      mouse.active = false;\n    }, { passive: true });\n\n    hero.addEventListener('click', event => {\n      const pos = pointerPosition(event);\n      spawn(pos.x, pos.y, true);\n    }, { passive: true });\n\n    resize();\n    window.addEventListener('resize', resize, { passive: true });\n    requestAnimationFrame(animate);\n  }\n\n  function boot() {\n    document.querySelectorAll('.' + HERO_CLASS).forEach(initBloomHero);\n  }\n\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', boot);\n  } else {\n    boot();\n  }\n\n  window.addEventListener('elementor\/frontend\/init', boot);\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7a67b2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"a7a67b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Savor the aroma of spring, one sip at a time&#8230;<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3f66e2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f3f66e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The days are getting longer, the pleasure multiplies.<br\/>Nature awakens, and with the right roast, so do you. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e560f14 elementor-mobile-align-justify elementor-widget elementor-widget-button\" data-id=\"e560f14\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/barista\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8328ea0 e-flex e-con-boxed e-con e-parent\" data-id=\"8328ea0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-12cec52 elementor-widget elementor-widget-text-editor\" data-id=\"12cec52\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t\ud83c\udf3f The Chicco d&#8217;Oro Coffee Museum will be closed during the months of July and August \u2615\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cd12f9f e-flex e-con-boxed e-con e-parent\" data-id=\"cd12f9f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-218b86e e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"218b86e\" 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-b6fded3 e-con-full e-flex e-con e-child\" data-id=\"b6fded3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9667060 elementor-widget elementor-widget-image\" data-id=\"9667060\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/scopri-barista\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"650\" height=\"293\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/01\/cdo_latino_magenta_yellow_v2.svg\" class=\"attachment-large size-large wp-image-16518\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ec257bc elementor-widget elementor-widget-image\" data-id=\"ec257bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/scopri-decaffeinato-cuor-doro\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"682\" height=\"1024\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/chicco-d-oro-caffe-latino-home-682x1024-2.webp\" class=\"attachment-large size-large wp-image-8450\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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<div class=\"elementor-element elementor-element-afd85cb e-con-full e-flex e-con e-child\" data-id=\"afd85cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-db72fe5 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"db72fe5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Explore the origins of coffee. <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bc8132d elementor-widget elementor-widget-text-editor\" data-id=\"bc8132d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Caff\u00e8 Latino is a special blend of excellent Arabica coffee, both natural and washed, originating from the highlands and mountainous regions of Latin America.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e38169 elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"0e38169\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/coffee-beans\/cafe-latino\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-6bcdc5d e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"6bcdc5d\" 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-9461ba6 e-con-full e-flex e-con e-child\" data-id=\"9461ba6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b15a992 elementor-widget elementor-widget-image\" data-id=\"b15a992\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/scopri-barista\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"381\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/01\/cd_logo_barista_w_shadow-1024x488.webp\" class=\"attachment-large size-large wp-image-15548\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/01\/cd_logo_barista_w_shadow-1024x488.webp 1024w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/01\/cd_logo_barista_w_shadow-300x143.webp 300w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/01\/cd_logo_barista_w_shadow-768x366.webp 768w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/01\/cd_logo_barista_w_shadow.webp 1339w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dd61bc8 elementor-widget elementor-widget-image\" data-id=\"dd61bc8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/scopri-decaffeinato-cuor-doro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"570\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/08\/co-grani-barista.png\" class=\"attachment-large size-large wp-image-7955\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/08\/co-grani-barista.png 400w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/08\/co-grani-barista-211x300.png 211w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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<div class=\"elementor-element elementor-element-0762274 e-con-full e-flex e-con e-child\" data-id=\"0762274\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c248f8b elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"c248f8b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">At home, just like at the caf\u00e9!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-383862f elementor-widget elementor-widget-text-editor\" data-id=\"383862f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A rich blend, with a bouquet derived from excellent raw materials and a traditional roasting process managed with modern control systems.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eaa0d31 elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"eaa0d31\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/coffee-beans\/cafe-latino\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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 class=\"elementor-element elementor-element-a4f25de elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"a4f25de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Discover the product lines...<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-443c62f elementor-widget elementor-widget-template\" data-id=\"443c62f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"8520\" class=\"elementor elementor-8520 elementor-8451 elementor-8451\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-bdfe92c e-con-full e-flex e-con e-parent\" data-id=\"bdfe92c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6067261 e-n-tabs-tablet elementor-widget elementor-widget-n-tabs\" data-id=\"6067261\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;horizontal_scroll_mobile&quot;:&quot;disable&quot;,&quot;horizontal_scroll&quot;:&quot;disable&quot;}\" data-widget_type=\"nested-tabs.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-tabs\" data-widget-number=\"101085793\" aria-label=\"Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.\">\n\t\t\t<div class=\"e-n-tabs-heading\" role=\"tablist\">\n\t\t\t\t\t<button id=\"e-n-tab-title-1010857931\" data-tab-title-id=\"e-n-tab-title-1010857931\" class=\"e-n-tab-title\" aria-selected=\"true\" data-tab-index=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"e-n-tab-content-1010857931\" style=\"--n-tabs-title-order: 1;\">\n\t\t\t\t\t<span class=\"e-n-tab-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 186.31 198.08\"><path d=\"M43.08 142.12c-19.55-5.34-30.99-18.81-37.65-36.77-7.77-20.95-6.94-42 .81-62.82C11.1 29.46 18.75 18.31 30.03 9.95 42.29.86 55.88-2.39 70.79 1.82c11.01 3.1 19.48 9.9 26.09 19.04 10.09 13.94 14.28 29.77 14.15 46.77-.05 6.57-.98 13.13-1.51 19.85.9-.04 2.18-.1 3.44-.16 16.08-.73 31.39 2.2 45.47 10.18 11.87 6.73 21.2 15.92 25.49 29.2 5.24 16.19 1.63 30.88-8.9 43.9-10.38 12.84-24.18 20.4-39.96 24.43-17.26 4.41-34.47 4.17-51.38-1.63-15.39-5.28-28.09-14.1-35.84-28.93-3.31-6.35-4.81-13.16-4.78-20.31v-2.05h.01ZM171.72 129c-.45-1.04-.71-1.73-1.05-2.38-5.84-11.52-15.71-18.31-27.4-22.63-16.08-5.94-32.47-5.98-48.82-1.15-13.71 4.05-25.44 11.18-33.49 23.41-3.23 4.91-5.17 10.31-5.5 16.39 3.48 1.04 6.89 1.99 10.25 3.08 8.24 2.7 16.57 3.83 25.17 2.02 8.09-1.7 14.83-5.81 21.23-10.92 14.58-11.64 31.09-15.21 49.24-10.71 3.35.83 6.65 1.85 10.36 2.89ZM57.63 156.29c.43.98.71 1.67 1.03 2.33 4.52 9.03 11.84 15.2 20.66 19.65 14.18 7.15 29.24 8.78 44.78 6.47 13.87-2.06 26.4-7.23 36.78-16.9 6.71-6.25 11.36-13.7 12.8-22.95.3-1.9-.26-2.66-2.08-3.09-2.91-.7-5.78-1.59-8.63-2.52-7.97-2.6-16.05-3.57-24.36-1.89-8.33 1.68-15.19 5.98-21.74 11.21-13.51 10.79-28.93 14.46-45.91 11.16-4.38-.86-8.66-2.24-13.34-3.48Zm-12.07-26.38c2.08-4.28 4.04-8.39 6.07-12.48 3.82-7.68 5.54-15.77 4.76-24.35-.66-7.15-3.25-13.59-6.78-19.77-5.6-9.8-7.89-20.4-7.05-31.66.56-7.66 2.77-14.84 6.18-21.69 1.08-2.16 2.12-4.35 3.17-6.52-.12-.17-.23-.34-.34-.51-2.51.94-5.12 1.67-7.51 2.84-10.54 5.14-17.8 13.59-23.07 23.8-7.41 14.35-9.85 29.67-7.93 45.64 1.53 12.74 5.92 24.35 14.73 33.96 4.8 5.23 10.5 9.03 17.78 10.73h.01Zm23.31-28.88c.27-.04.42-.02.52-.09 7.79-5.06 16.23-8.63 25.22-10.97.58-.15 1.25-.97 1.43-1.6 2.25-8 3.11-16.17 2.7-24.47-.67-13.66-4.36-26.33-12.91-37.26-4.77-6.09-10.68-10.68-18.2-12.91-.64-.19-1.94.07-2.15.5-3.01 6.18-6.49 12.24-8.67 18.72-4.22 12.52-2.28 24.6 4.39 35.96 5.52 9.41 8.06 19.6 7.64 30.53-.02.52.02 1.04.04 1.59Z\"><\/path><\/svg>\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 186.31 198.08\"><path d=\"M43.08 142.12c-19.55-5.34-30.99-18.81-37.65-36.77-7.77-20.95-6.94-42 .81-62.82C11.1 29.46 18.75 18.31 30.03 9.95 42.29.86 55.88-2.39 70.79 1.82c11.01 3.1 19.48 9.9 26.09 19.04 10.09 13.94 14.28 29.77 14.15 46.77-.05 6.57-.98 13.13-1.51 19.85.9-.04 2.18-.1 3.44-.16 16.08-.73 31.39 2.2 45.47 10.18 11.87 6.73 21.2 15.92 25.49 29.2 5.24 16.19 1.63 30.88-8.9 43.9-10.38 12.84-24.18 20.4-39.96 24.43-17.26 4.41-34.47 4.17-51.38-1.63-15.39-5.28-28.09-14.1-35.84-28.93-3.31-6.35-4.81-13.16-4.78-20.31v-2.05h.01ZM171.72 129c-.45-1.04-.71-1.73-1.05-2.38-5.84-11.52-15.71-18.31-27.4-22.63-16.08-5.94-32.47-5.98-48.82-1.15-13.71 4.05-25.44 11.18-33.49 23.41-3.23 4.91-5.17 10.31-5.5 16.39 3.48 1.04 6.89 1.99 10.25 3.08 8.24 2.7 16.57 3.83 25.17 2.02 8.09-1.7 14.83-5.81 21.23-10.92 14.58-11.64 31.09-15.21 49.24-10.71 3.35.83 6.65 1.85 10.36 2.89ZM57.63 156.29c.43.98.71 1.67 1.03 2.33 4.52 9.03 11.84 15.2 20.66 19.65 14.18 7.15 29.24 8.78 44.78 6.47 13.87-2.06 26.4-7.23 36.78-16.9 6.71-6.25 11.36-13.7 12.8-22.95.3-1.9-.26-2.66-2.08-3.09-2.91-.7-5.78-1.59-8.63-2.52-7.97-2.6-16.05-3.57-24.36-1.89-8.33 1.68-15.19 5.98-21.74 11.21-13.51 10.79-28.93 14.46-45.91 11.16-4.38-.86-8.66-2.24-13.34-3.48Zm-12.07-26.38c2.08-4.28 4.04-8.39 6.07-12.48 3.82-7.68 5.54-15.77 4.76-24.35-.66-7.15-3.25-13.59-6.78-19.77-5.6-9.8-7.89-20.4-7.05-31.66.56-7.66 2.77-14.84 6.18-21.69 1.08-2.16 2.12-4.35 3.17-6.52-.12-.17-.23-.34-.34-.51-2.51.94-5.12 1.67-7.51 2.84-10.54 5.14-17.8 13.59-23.07 23.8-7.41 14.35-9.85 29.67-7.93 45.64 1.53 12.74 5.92 24.35 14.73 33.96 4.8 5.23 10.5 9.03 17.78 10.73h.01Zm23.31-28.88c.27-.04.42-.02.52-.09 7.79-5.06 16.23-8.63 25.22-10.97.58-.15 1.25-.97 1.43-1.6 2.25-8 3.11-16.17 2.7-24.47-.67-13.66-4.36-26.33-12.91-37.26-4.77-6.09-10.68-10.68-18.2-12.91-.64-.19-1.94.07-2.15.5-3.01 6.18-6.49 12.24-8.67 18.72-4.22 12.52-2.28 24.6 4.39 35.96 5.52 9.41 8.06 19.6 7.64 30.53-.02.52.02 1.04.04 1.59Z\"><\/path><\/svg>\t\t<\/span>\n\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tCoffee beans\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1010857932\" data-tab-title-id=\"e-n-tab-title-1010857932\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1010857932\" style=\"--n-tabs-title-order: 2;\">\n\t\t\t\t\t<span class=\"e-n-tab-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 175.71 198.21\"><path fill=\"none\" d=\"M50.18 107.15c2.56-2.17 5.26-4.24 7.87-6.25l1.77-1.36c1.94-1.5 3.71-2.8 5.4-3.96 2.25-1.54 4.51-3.06 6.77-4.59 2.13-1.43 4.25-2.86 6.36-4.31 4.48-3.06 9.75-6.68 14.92-10.31 6.38-4.48 10.99-8.26 14.95-12.26l1.01-1.01c1.5-1.5 3.05-3.06 4.45-4.66 3.23-3.68 6.23-7.77 8.9-12.14 3.41-5.58 5.9-11.05 7.62-16.72.84-2.77 1.46-5.11 1.74-7.55.11-.9.2-1.8.3-2.7.12-1.13.24-2.27.38-3.4v-.04c-.03-.02-.08-.06-.15-.1-2.85-1.71-5.54-2.96-8.24-3.83-2.12-.68-4.4-1.27-6.97-1.8-1.41-.29-2.87-.4-4.41-.5l-.39-.03c-1.83-.13-3.99-.27-6.19-.28h-.14c-1.17 0-2.34.11-3.59.23l-.44.04c-.37.04-.75.07-1.12.1-1.36.12-2.64.23-3.89.49-3.09.65-5.62 1.29-7.97 2.02-2.89.89-5.89 1.96-8.9 3.15-2.05.82-4.09 1.89-5.89 2.84-2.3 1.21-4.55 2.41-6.72 3.77a135.81 135.81 0 0 0-7.67 5.18c-1.75 1.27-3.47 2.67-5.13 4.03l-1.54 1.25c-1.2.97-2.43 1.97-3.54 3.03-2.47 2.37-4.48 4.37-6.31 6.31-1.72 1.82-3.35 3.77-4.75 5.46-5.02 6.05-9.14 11.87-12.6 17.76-2.8 4.77-5.1 9.25-7.04 13.7-.21.48-.42.95-.63 1.43-.76 1.72-1.54 3.5-2.2 5.26-.89 2.38-1.73 4.94-2.51 7.61-.79 2.7-1.47 5.47-2.09 8.09-.36 1.52-.68 3.13-.97 4.95-.25 1.54-.41 3.15-.57 4.69v.06c-.06.5-.12 1-.17 1.51-.17 1.49-.34 2.9-.35 4.32-.04 3.95.05 7.88.15 11.91.03 1.15.16 2.41.4 3.86.14.82.32 1.63.51 2.48.19.86.39 1.76.54 2.66.5 3 1.53 5.83 2.47 8.2 1.72 4.33 3.52 7.72 5.65 10.64.14-.71.3-1.41.45-2.11.17-.78.34-1.56.49-2.34.61-3.04 1.68-5.92 2.63-8.46 1.74-4.67 4.17-8.95 6.54-12.87 3.45-5.72 7.86-10.68 12.45-15.69 2.49-2.71 5.27-5.12 8.38-7.75Z\"><\/path><path d=\"M42.68 128.2c3.11-4.02 5.92-7.12 8.85-9.77 2.49-2.25 5.13-4.45 7.68-6.58l.66-.55c2-1.67 3.87-3.15 5.72-4.55.82-.62 1.68-1.19 2.58-1.78.57-.38 1.14-.76 1.71-1.15.89-.62 1.78-1.25 2.66-1.88 1.18-.84 2.39-1.7 3.6-2.53 2.63-1.8 5.26-3.59 7.9-5.38 4.75-3.23 9.67-6.57 14.48-9.9 2.25-1.56 4.41-3.28 6.5-4.94.52-.42 1.04-.83 1.57-1.24l.49-.39c1.76-1.39 3.58-2.82 5.27-4.38 4.8-4.42 8.72-8.69 11.97-13.06 2.45-3.29 4.46-6.1 6.27-9.08 1.89-3.12 3.51-6.45 5.02-9.6 1.09-2.29 2.11-4.78 3.03-7.41 1.35-3.89 2.29-7.79 2.77-11.6.2-1.57.41-3.13.62-4.7l.28-2.14c.04-.34-.04-.67-.21-.94 0-.28 0-.54.01-.79.14-1.74-.54-3.24-1.96-4.34a32.2 32.2 0 0 0-2.99-2.02c-3.84-2.31-7.57-3.93-11.41-4.97-.49-.13-.99-.27-1.48-.41-1.79-.5-3.65-1.02-5.54-1.35-2.29-.41-4.77-.66-7.36-.76-1.51-.06-3.02 0-4.49.04-1.1.03-2.23.07-3.33.06-2.37-.02-4.63.38-6.83.76l-1.05.18c-4.6.79-9.2 2.03-13.68 3.69-5.34 1.98-9.63 3.88-13.5 5.98-5.67 3.08-10.6 6.22-15.1 9.62-2.63 1.99-5.17 4.17-7.62 6.28-.62.53-1.23 1.06-1.85 1.59-1.56 1.33-2.78 2.49-3.85 3.66l-1.51 1.64c-2.78 3.02-5.66 6.15-8.35 9.37-4.43 5.29-8.55 11.2-12.6 18.06-3.53 5.98-6.65 12.47-9.53 19.83l-.38.97c-.68 1.72-1.38 3.5-1.94 5.31-.9 2.89-1.68 5.85-2.43 8.72l-.03.13c-.39 1.49-.75 3.12-1.11 4.98-.38 1.98-.73 4.06-1.07 6.34-.18 1.21-.31 2.43-.43 3.61l-.07.72c-.04.39-.07.79-.09 1.18-.02.31-.04.62-.07.92l-.15 1.44c-.1.9-.2 1.82-.25 2.76-.06 1.15-.04 2.3-.02 3.42l.02 1.06c.02 1.39.05 2.83.14 4.26.08 1.33.24 2.65.4 3.93l.17 1.47c.17 1.46.34 2.96.61 4.45.32 1.76.78 3.5 1.23 5.21l.19.73c.44 1.66.89 3.38 1.48 5.05.72 2.04 1.62 4.05 2.4 5.74 3.34 7.25 7.85 13.34 13.41 18.09.99.85 1.99 1.27 2.98 1.27.48 0 .96-.1 1.44-.3.98-.41 1.99-.89 2.65-1.77.54-.72.8-1.72.81-3.08v-1.32c0-2.41-.01-4.68.41-6.94.1-.54.19-1.08.29-1.62.28-1.59.54-3.09.95-4.57.58-2.1 1.32-4.56 2.36-6.89 1.73-3.88 3.19-6.75 4.72-9.3 1.9-3.16 4.1-6.1 6.01-8.55Zm-13.33 2.39c-2.37 3.92-4.8 8.2-6.54 12.87-.95 2.54-2.02 5.43-2.63 8.46-.16.78-.32 1.56-.49 2.34-.15.7-.31 1.41-.45 2.11-2.13-2.91-3.93-6.31-5.65-10.64-.94-2.37-1.97-5.2-2.47-8.2-.15-.9-.35-1.8-.54-2.66-.19-.85-.37-1.66-.51-2.48-.24-1.44-.37-2.7-.4-3.86-.1-4.02-.19-7.96-.15-11.91.01-1.42.18-2.82.35-4.32.06-.5.12-1 .17-1.51v-.06c.17-1.55.33-3.15.58-4.69.29-1.81.61-3.43.97-4.95.63-2.62 1.3-5.39 2.09-8.09.78-2.67 1.63-5.23 2.51-7.61.66-1.77 1.44-3.55 2.2-5.26.21-.48.42-.95.63-1.43 1.94-4.45 4.24-8.93 7.04-13.7 3.46-5.9 7.58-11.71 12.6-17.76 1.4-1.69 3.03-3.64 4.75-5.46 1.83-1.94 3.84-3.95 6.31-6.31 1.11-1.06 2.34-2.06 3.54-3.03l1.54-1.25c1.66-1.36 3.38-2.76 5.13-4.03 2.52-1.83 5.1-3.58 7.67-5.18 2.18-1.36 4.42-2.56 6.72-3.77 1.8-.95 3.84-2.02 5.89-2.84 3.01-1.2 6-2.26 8.9-3.15 2.35-.73 4.88-1.37 7.97-2.02 1.25-.26 2.53-.37 3.89-.49.37-.03.75-.06 1.12-.1l.44-.04c1.24-.12 2.42-.23 3.59-.23h.14c2.2.02 4.36.15 6.19.28l.39.03c1.54.11 3 .21 4.41.5 2.57.53 4.86 1.12 6.97 1.8 2.7.86 5.4 2.12 8.24 3.83.08.05.12.08.15.1v.04c-.14 1.13-.26 2.26-.38 3.4-.1.9-.19 1.8-.3 2.7-.29 2.44-.9 4.79-1.74 7.55-1.72 5.67-4.21 11.13-7.62 16.72-2.67 4.38-5.66 8.46-8.9 12.14-1.41 1.6-2.95 3.15-4.45 4.66l-1.01 1.01c-3.97 4-8.58 7.78-14.95 12.26-5.17 3.63-10.44 7.25-14.92 10.31-2.11 1.45-4.24 2.88-6.36 4.31-2.26 1.52-4.52 3.05-6.77 4.59-1.69 1.16-3.46 2.45-5.4 3.96l-1.77 1.36c-2.61 2.01-5.3 4.08-7.87 6.25-3.12 2.64-5.9 5.04-8.38 7.75-4.59 5.01-9 9.97-12.45 15.69Z\"><\/path><path d=\"m175.6 61.17-.03-.62c-.11-1.97-.24-4.29-.43-6.58-.13-1.59-.29-3.28-.59-4.93-.34-1.89-.82-3.78-1.28-5.54-.57-2.18-1.16-4.43-1.88-6.62-.68-2.05-1.38-4.18-2.4-6.16-1.36-2.64-2.94-5.19-4.47-7.65l-.27-.44c-.79-1.28-1.78-2.09-3.03-2.49-1.45-.46-2.95-.22-4.11.65-1.18.87-1.9 2.3-1.88 3.74.02 2.33-.07 4.2-.29 5.88-.23 1.73-.61 3.57-1.25 5.97-.51 1.91-1.1 3.7-1.76 5.33-.89 2.17-1.93 4.32-2.92 6.32-2.57 5.17-6.04 9.77-8.77 13.2-2.53 3.18-5.47 6.14-8.31 9l-.99.99c-3.44 3.48-7.54 6.95-12.53 10.63-4.97 3.67-10.08 7.2-13.98 9.86-3.89 2.66-7.87 5.34-11.72 7.94-3.4 2.29-6.79 4.57-10.17 6.88-2.03 1.39-3.96 2.84-6.23 4.61l-.16.13c-1.96 1.52-3.98 3.1-5.85 4.82-2.29 2.11-1.72 3.85-.86 5.6.52 1.06 1.51 1.87 2.74 2.24.45.13.91.2 1.36.2.76 0 1.49-.19 2.12-.56.55-.33 1.05-.71 1.49-1.04 1.25-.96 2.5-1.92 3.75-2.89 2.61-2.02 5.31-4.12 8.03-6.08 3.31-2.4 6.76-4.74 10.1-7l3.09-2.1c.75-.51 1.54-1.01 2.3-1.5.77-.49 1.56-.99 2.34-1.52l2.63-1.79c3.25-2.2 6.6-4.48 9.85-6.8 7.96-5.67 14.17-10.8 19.55-16.12 6.61-6.55 11.88-13.1 16.12-20.01 3.57-5.83 6.05-11.36 7.55-16.85.31.92.62 1.84.92 2.75a44.11 44.11 0 0 1 1.92 8.49c.22 1.76.4 3.51.53 5.2l.04.46c.15 1.83.3 3.72.32 5.56.02 2.03-.1 4.12-.21 6.14v.08c-.06 1.01-.18 2.05-.29 3.06l-.12 1.16c-.04.36-.07.71-.1 1.07-.09.99-.18 1.93-.32 2.87-.22 1.5-.5 3-.81 4.47l-.12.54c-.46 2.13-.93 4.34-1.5 6.45-.54 1.99-1.21 4.13-2.11 6.74l-.48 1.4c-.76 2.24-1.55 4.55-2.51 6.7-1.07 2.39-2.25 4.8-3.38 7.13-.94 1.93-1.91 3.92-2.83 5.91-.46.99-.68 2.58-.09 3.73.8 1.57 2.23 2.62 3.81 2.81 1.5.18 2.97-.41 4.03-1.63.55-.63.93-1.36 1.2-1.93l.19-.39c2.1-4.41 4.26-8.96 6.35-13.47.49-1.06.87-2.15 1.24-3.2.11-.32.22-.63.34-.95l.17-.48c.48-1.32.97-2.68 1.4-4.05.79-2.51 1.49-4.78 2.12-7.14.48-1.8.86-3.63 1.22-5.41l.11-.53c.37-1.79.72-3.55.98-5.31.25-1.73.47-3.58.7-6 .23-2.39.44-4.73.55-7.08.06-1.31-.01-2.61-.08-3.86ZM91.86 149.68c-.03-6.87-4.89-11.28-11.3-11.39-6.22-.11-11.22 5.14-11.18 11.31.04 6.36 5.22 10.93 11.14 11.24 6.4-.18 11.36-4.7 11.33-11.15ZM142.01 130.99c-5.48.3-10.24 5.04-10.27 11.08-.03 6.17 5.07 11.42 11.11 11.35 6.87-.04 11.24-5.18 11.36-10.9.14-6.46-4.68-11.94-12.21-11.53ZM81.11 175.82c-6.39-.08-11.42 4.48-11.21 11.78.15 5.47 4.66 10.76 11.04 10.59 6.13.4 11.6-4.89 11.36-11.37-.24-6.4-4.39-10.92-11.19-11ZM111.44 176.17c5.49-.27 11.01-4.82 10.64-11.82-.29-5.43-4.22-10.85-12.03-10.62-5.07.15-10.45 4.8-10.39 11.05-.2 5.75 4.69 11.74 11.78 11.39Z\"><\/path><path d=\"M115.28 133.57c6.03.06 11.99-5.25 11.15-12.56-.58-5.02-4.73-10.55-12.41-9.83-5.64.54-9.9 4.78-9.96 11.3-.05 6.06 4.67 10.99 11.22 11.08ZM46.84 155.77c-6.54-.09-10.98 5.05-11.19 11.04-.11 3.14 1.28 5.79 3.52 7.92 2.49 2.38 5.5 3.66 9 3.28 4.97-.53 9.92-4.65 10-11.05.08-6.08-4.67-11.39-11.32-11.2Z\"><\/path><\/svg>\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 175.71 198.21\"><path fill=\"none\" d=\"M50.18 107.15c2.56-2.17 5.26-4.24 7.87-6.25l1.77-1.36c1.94-1.5 3.71-2.8 5.4-3.96 2.25-1.54 4.51-3.06 6.77-4.59 2.13-1.43 4.25-2.86 6.36-4.31 4.48-3.06 9.75-6.68 14.92-10.31 6.38-4.48 10.99-8.26 14.95-12.26l1.01-1.01c1.5-1.5 3.05-3.06 4.45-4.66 3.23-3.68 6.23-7.77 8.9-12.14 3.41-5.58 5.9-11.05 7.62-16.72.84-2.77 1.46-5.11 1.74-7.55.11-.9.2-1.8.3-2.7.12-1.13.24-2.27.38-3.4v-.04c-.03-.02-.08-.06-.15-.1-2.85-1.71-5.54-2.96-8.24-3.83-2.12-.68-4.4-1.27-6.97-1.8-1.41-.29-2.87-.4-4.41-.5l-.39-.03c-1.83-.13-3.99-.27-6.19-.28h-.14c-1.17 0-2.34.11-3.59.23l-.44.04c-.37.04-.75.07-1.12.1-1.36.12-2.64.23-3.89.49-3.09.65-5.62 1.29-7.97 2.02-2.89.89-5.89 1.96-8.9 3.15-2.05.82-4.09 1.89-5.89 2.84-2.3 1.21-4.55 2.41-6.72 3.77a135.81 135.81 0 0 0-7.67 5.18c-1.75 1.27-3.47 2.67-5.13 4.03l-1.54 1.25c-1.2.97-2.43 1.97-3.54 3.03-2.47 2.37-4.48 4.37-6.31 6.31-1.72 1.82-3.35 3.77-4.75 5.46-5.02 6.05-9.14 11.87-12.6 17.76-2.8 4.77-5.1 9.25-7.04 13.7-.21.48-.42.95-.63 1.43-.76 1.72-1.54 3.5-2.2 5.26-.89 2.38-1.73 4.94-2.51 7.61-.79 2.7-1.47 5.47-2.09 8.09-.36 1.52-.68 3.13-.97 4.95-.25 1.54-.41 3.15-.57 4.69v.06c-.06.5-.12 1-.17 1.51-.17 1.49-.34 2.9-.35 4.32-.04 3.95.05 7.88.15 11.91.03 1.15.16 2.41.4 3.86.14.82.32 1.63.51 2.48.19.86.39 1.76.54 2.66.5 3 1.53 5.83 2.47 8.2 1.72 4.33 3.52 7.72 5.65 10.64.14-.71.3-1.41.45-2.11.17-.78.34-1.56.49-2.34.61-3.04 1.68-5.92 2.63-8.46 1.74-4.67 4.17-8.95 6.54-12.87 3.45-5.72 7.86-10.68 12.45-15.69 2.49-2.71 5.27-5.12 8.38-7.75Z\"><\/path><path d=\"M42.68 128.2c3.11-4.02 5.92-7.12 8.85-9.77 2.49-2.25 5.13-4.45 7.68-6.58l.66-.55c2-1.67 3.87-3.15 5.72-4.55.82-.62 1.68-1.19 2.58-1.78.57-.38 1.14-.76 1.71-1.15.89-.62 1.78-1.25 2.66-1.88 1.18-.84 2.39-1.7 3.6-2.53 2.63-1.8 5.26-3.59 7.9-5.38 4.75-3.23 9.67-6.57 14.48-9.9 2.25-1.56 4.41-3.28 6.5-4.94.52-.42 1.04-.83 1.57-1.24l.49-.39c1.76-1.39 3.58-2.82 5.27-4.38 4.8-4.42 8.72-8.69 11.97-13.06 2.45-3.29 4.46-6.1 6.27-9.08 1.89-3.12 3.51-6.45 5.02-9.6 1.09-2.29 2.11-4.78 3.03-7.41 1.35-3.89 2.29-7.79 2.77-11.6.2-1.57.41-3.13.62-4.7l.28-2.14c.04-.34-.04-.67-.21-.94 0-.28 0-.54.01-.79.14-1.74-.54-3.24-1.96-4.34a32.2 32.2 0 0 0-2.99-2.02c-3.84-2.31-7.57-3.93-11.41-4.97-.49-.13-.99-.27-1.48-.41-1.79-.5-3.65-1.02-5.54-1.35-2.29-.41-4.77-.66-7.36-.76-1.51-.06-3.02 0-4.49.04-1.1.03-2.23.07-3.33.06-2.37-.02-4.63.38-6.83.76l-1.05.18c-4.6.79-9.2 2.03-13.68 3.69-5.34 1.98-9.63 3.88-13.5 5.98-5.67 3.08-10.6 6.22-15.1 9.62-2.63 1.99-5.17 4.17-7.62 6.28-.62.53-1.23 1.06-1.85 1.59-1.56 1.33-2.78 2.49-3.85 3.66l-1.51 1.64c-2.78 3.02-5.66 6.15-8.35 9.37-4.43 5.29-8.55 11.2-12.6 18.06-3.53 5.98-6.65 12.47-9.53 19.83l-.38.97c-.68 1.72-1.38 3.5-1.94 5.31-.9 2.89-1.68 5.85-2.43 8.72l-.03.13c-.39 1.49-.75 3.12-1.11 4.98-.38 1.98-.73 4.06-1.07 6.34-.18 1.21-.31 2.43-.43 3.61l-.07.72c-.04.39-.07.79-.09 1.18-.02.31-.04.62-.07.92l-.15 1.44c-.1.9-.2 1.82-.25 2.76-.06 1.15-.04 2.3-.02 3.42l.02 1.06c.02 1.39.05 2.83.14 4.26.08 1.33.24 2.65.4 3.93l.17 1.47c.17 1.46.34 2.96.61 4.45.32 1.76.78 3.5 1.23 5.21l.19.73c.44 1.66.89 3.38 1.48 5.05.72 2.04 1.62 4.05 2.4 5.74 3.34 7.25 7.85 13.34 13.41 18.09.99.85 1.99 1.27 2.98 1.27.48 0 .96-.1 1.44-.3.98-.41 1.99-.89 2.65-1.77.54-.72.8-1.72.81-3.08v-1.32c0-2.41-.01-4.68.41-6.94.1-.54.19-1.08.29-1.62.28-1.59.54-3.09.95-4.57.58-2.1 1.32-4.56 2.36-6.89 1.73-3.88 3.19-6.75 4.72-9.3 1.9-3.16 4.1-6.1 6.01-8.55Zm-13.33 2.39c-2.37 3.92-4.8 8.2-6.54 12.87-.95 2.54-2.02 5.43-2.63 8.46-.16.78-.32 1.56-.49 2.34-.15.7-.31 1.41-.45 2.11-2.13-2.91-3.93-6.31-5.65-10.64-.94-2.37-1.97-5.2-2.47-8.2-.15-.9-.35-1.8-.54-2.66-.19-.85-.37-1.66-.51-2.48-.24-1.44-.37-2.7-.4-3.86-.1-4.02-.19-7.96-.15-11.91.01-1.42.18-2.82.35-4.32.06-.5.12-1 .17-1.51v-.06c.17-1.55.33-3.15.58-4.69.29-1.81.61-3.43.97-4.95.63-2.62 1.3-5.39 2.09-8.09.78-2.67 1.63-5.23 2.51-7.61.66-1.77 1.44-3.55 2.2-5.26.21-.48.42-.95.63-1.43 1.94-4.45 4.24-8.93 7.04-13.7 3.46-5.9 7.58-11.71 12.6-17.76 1.4-1.69 3.03-3.64 4.75-5.46 1.83-1.94 3.84-3.95 6.31-6.31 1.11-1.06 2.34-2.06 3.54-3.03l1.54-1.25c1.66-1.36 3.38-2.76 5.13-4.03 2.52-1.83 5.1-3.58 7.67-5.18 2.18-1.36 4.42-2.56 6.72-3.77 1.8-.95 3.84-2.02 5.89-2.84 3.01-1.2 6-2.26 8.9-3.15 2.35-.73 4.88-1.37 7.97-2.02 1.25-.26 2.53-.37 3.89-.49.37-.03.75-.06 1.12-.1l.44-.04c1.24-.12 2.42-.23 3.59-.23h.14c2.2.02 4.36.15 6.19.28l.39.03c1.54.11 3 .21 4.41.5 2.57.53 4.86 1.12 6.97 1.8 2.7.86 5.4 2.12 8.24 3.83.08.05.12.08.15.1v.04c-.14 1.13-.26 2.26-.38 3.4-.1.9-.19 1.8-.3 2.7-.29 2.44-.9 4.79-1.74 7.55-1.72 5.67-4.21 11.13-7.62 16.72-2.67 4.38-5.66 8.46-8.9 12.14-1.41 1.6-2.95 3.15-4.45 4.66l-1.01 1.01c-3.97 4-8.58 7.78-14.95 12.26-5.17 3.63-10.44 7.25-14.92 10.31-2.11 1.45-4.24 2.88-6.36 4.31-2.26 1.52-4.52 3.05-6.77 4.59-1.69 1.16-3.46 2.45-5.4 3.96l-1.77 1.36c-2.61 2.01-5.3 4.08-7.87 6.25-3.12 2.64-5.9 5.04-8.38 7.75-4.59 5.01-9 9.97-12.45 15.69Z\"><\/path><path d=\"m175.6 61.17-.03-.62c-.11-1.97-.24-4.29-.43-6.58-.13-1.59-.29-3.28-.59-4.93-.34-1.89-.82-3.78-1.28-5.54-.57-2.18-1.16-4.43-1.88-6.62-.68-2.05-1.38-4.18-2.4-6.16-1.36-2.64-2.94-5.19-4.47-7.65l-.27-.44c-.79-1.28-1.78-2.09-3.03-2.49-1.45-.46-2.95-.22-4.11.65-1.18.87-1.9 2.3-1.88 3.74.02 2.33-.07 4.2-.29 5.88-.23 1.73-.61 3.57-1.25 5.97-.51 1.91-1.1 3.7-1.76 5.33-.89 2.17-1.93 4.32-2.92 6.32-2.57 5.17-6.04 9.77-8.77 13.2-2.53 3.18-5.47 6.14-8.31 9l-.99.99c-3.44 3.48-7.54 6.95-12.53 10.63-4.97 3.67-10.08 7.2-13.98 9.86-3.89 2.66-7.87 5.34-11.72 7.94-3.4 2.29-6.79 4.57-10.17 6.88-2.03 1.39-3.96 2.84-6.23 4.61l-.16.13c-1.96 1.52-3.98 3.1-5.85 4.82-2.29 2.11-1.72 3.85-.86 5.6.52 1.06 1.51 1.87 2.74 2.24.45.13.91.2 1.36.2.76 0 1.49-.19 2.12-.56.55-.33 1.05-.71 1.49-1.04 1.25-.96 2.5-1.92 3.75-2.89 2.61-2.02 5.31-4.12 8.03-6.08 3.31-2.4 6.76-4.74 10.1-7l3.09-2.1c.75-.51 1.54-1.01 2.3-1.5.77-.49 1.56-.99 2.34-1.52l2.63-1.79c3.25-2.2 6.6-4.48 9.85-6.8 7.96-5.67 14.17-10.8 19.55-16.12 6.61-6.55 11.88-13.1 16.12-20.01 3.57-5.83 6.05-11.36 7.55-16.85.31.92.62 1.84.92 2.75a44.11 44.11 0 0 1 1.92 8.49c.22 1.76.4 3.51.53 5.2l.04.46c.15 1.83.3 3.72.32 5.56.02 2.03-.1 4.12-.21 6.14v.08c-.06 1.01-.18 2.05-.29 3.06l-.12 1.16c-.04.36-.07.71-.1 1.07-.09.99-.18 1.93-.32 2.87-.22 1.5-.5 3-.81 4.47l-.12.54c-.46 2.13-.93 4.34-1.5 6.45-.54 1.99-1.21 4.13-2.11 6.74l-.48 1.4c-.76 2.24-1.55 4.55-2.51 6.7-1.07 2.39-2.25 4.8-3.38 7.13-.94 1.93-1.91 3.92-2.83 5.91-.46.99-.68 2.58-.09 3.73.8 1.57 2.23 2.62 3.81 2.81 1.5.18 2.97-.41 4.03-1.63.55-.63.93-1.36 1.2-1.93l.19-.39c2.1-4.41 4.26-8.96 6.35-13.47.49-1.06.87-2.15 1.24-3.2.11-.32.22-.63.34-.95l.17-.48c.48-1.32.97-2.68 1.4-4.05.79-2.51 1.49-4.78 2.12-7.14.48-1.8.86-3.63 1.22-5.41l.11-.53c.37-1.79.72-3.55.98-5.31.25-1.73.47-3.58.7-6 .23-2.39.44-4.73.55-7.08.06-1.31-.01-2.61-.08-3.86ZM91.86 149.68c-.03-6.87-4.89-11.28-11.3-11.39-6.22-.11-11.22 5.14-11.18 11.31.04 6.36 5.22 10.93 11.14 11.24 6.4-.18 11.36-4.7 11.33-11.15ZM142.01 130.99c-5.48.3-10.24 5.04-10.27 11.08-.03 6.17 5.07 11.42 11.11 11.35 6.87-.04 11.24-5.18 11.36-10.9.14-6.46-4.68-11.94-12.21-11.53ZM81.11 175.82c-6.39-.08-11.42 4.48-11.21 11.78.15 5.47 4.66 10.76 11.04 10.59 6.13.4 11.6-4.89 11.36-11.37-.24-6.4-4.39-10.92-11.19-11ZM111.44 176.17c5.49-.27 11.01-4.82 10.64-11.82-.29-5.43-4.22-10.85-12.03-10.62-5.07.15-10.45 4.8-10.39 11.05-.2 5.75 4.69 11.74 11.78 11.39Z\"><\/path><path d=\"M115.28 133.57c6.03.06 11.99-5.25 11.15-12.56-.58-5.02-4.73-10.55-12.41-9.83-5.64.54-9.9 4.78-9.96 11.3-.05 6.06 4.67 10.99 11.22 11.08ZM46.84 155.77c-6.54-.09-10.98 5.05-11.19 11.04-.11 3.14 1.28 5.79 3.52 7.92 2.49 2.38 5.5 3.66 9 3.28 4.97-.53 9.92-4.65 10-11.05.08-6.08-4.67-11.39-11.32-11.2Z\"><\/path><\/svg>\t\t<\/span>\n\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tGround coffee\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1010857933\" data-tab-title-id=\"e-n-tab-title-1010857933\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"3\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1010857933\" style=\"--n-tabs-title-order: 3;\">\n\t\t\t\t\t<span class=\"e-n-tab-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 400 400\"><g><g id=\"Layer_1\"><g><path d=\"M349.5,104.4c-3.2-3.1-8.2-3.1-11.4,0-3.5,3.3-3.4,8.7,0,12,27.8,27.2,44.5,64.9,44.6,105.9,0,81.6-66.5,148.1-148.1,148.1s-84.8-19.9-111.9-51.3c-3.1-3.6-8.5-3.9-12-.7-3.2,3-3.5,8.1-.6,11.4,30.2,35,74.8,57.2,124.5,57.2,90.7,0,164.6-73.9,164.6-164.6-.1-45.7-18.7-87.7-49.7-117.9Z\"><\/path><path d=\"M242,323.8c-34.1,2.5-64.9-12.7-84-37.4-3-3.9-8.7-4.4-12.3-1-3.1,2.9-3.5,7.7-1,11,21.1,27.3,54.3,44.8,91.5,44.3,61.4-.9,111.6-51.5,111.8-112.9.2-34.2-14.9-65-38.8-85.9-3.2-2.8-8.1-2.8-11.2.1s-3.5,9,.2,12.2c21.8,19,35,47.6,33.1,79.1-3,47.9-41.4,86.9-89.4,90.5Z\"><\/path><path d=\"M13.7,344.1c1.4-1.3,2.3-3.2,2.5-5.1l21.6-221.3c.4-4.1,3.9-7.3,8.1-7.3h212.8c2.1,0,4-.8,5.6-2.2l.7-.6c5.3-5,1.8-14-5.6-14H66.6c-6.9,0-10.6-8.1-6.2-13.3l40.1-47.4c1.5-1.8,3.8-2.9,6.2-2.9h115.7c2.4,0,4.6,1,6.2,2.9l45.8,54.1c3,3.5,8.4,3.8,11.7.7l.2-.2c3.1-3,3.4-7.8.6-11.1l-51-60.3c-1.5-1.8-3.8-2.9-6.1-2.9H99.2c-2.3,0-4.6,1-6.1,2.9L25.1,96.4c-.2.2-.3.4-.4.6,0,.1-.2.2-.2.4-.2.4-.5.8-.7,1.3,0,.1,0,.2-.1.3-.1.4-.2.7-.3,1.1,0,.2,0,.3,0,.5,0,.2,0,.4,0,.5L0,337.4c-.7,7.4,8.2,11.8,13.6,6.7h0Z\"><\/path><path d=\"M382.4,29c-3.1-3.3-8.4-3.5-11.7-.4L12.6,364.5c-3.3,3.1-3.5,8.4-.4,11.7,1.6,1.7,3.8,2.6,6,2.6s4.1-.7,5.7-2.2L382,40.7c3.3-3.1,3.5-8.4.4-11.7Z\"><\/path><\/g><\/g><\/g><\/svg>\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 400 400\"><g><g id=\"Layer_1\"><g><path d=\"M349.5,104.4c-3.2-3.1-8.2-3.1-11.4,0-3.5,3.3-3.4,8.7,0,12,27.8,27.2,44.5,64.9,44.6,105.9,0,81.6-66.5,148.1-148.1,148.1s-84.8-19.9-111.9-51.3c-3.1-3.6-8.5-3.9-12-.7-3.2,3-3.5,8.1-.6,11.4,30.2,35,74.8,57.2,124.5,57.2,90.7,0,164.6-73.9,164.6-164.6-.1-45.7-18.7-87.7-49.7-117.9Z\"><\/path><path d=\"M242,323.8c-34.1,2.5-64.9-12.7-84-37.4-3-3.9-8.7-4.4-12.3-1-3.1,2.9-3.5,7.7-1,11,21.1,27.3,54.3,44.8,91.5,44.3,61.4-.9,111.6-51.5,111.8-112.9.2-34.2-14.9-65-38.8-85.9-3.2-2.8-8.1-2.8-11.2.1s-3.5,9,.2,12.2c21.8,19,35,47.6,33.1,79.1-3,47.9-41.4,86.9-89.4,90.5Z\"><\/path><path d=\"M13.7,344.1c1.4-1.3,2.3-3.2,2.5-5.1l21.6-221.3c.4-4.1,3.9-7.3,8.1-7.3h212.8c2.1,0,4-.8,5.6-2.2l.7-.6c5.3-5,1.8-14-5.6-14H66.6c-6.9,0-10.6-8.1-6.2-13.3l40.1-47.4c1.5-1.8,3.8-2.9,6.2-2.9h115.7c2.4,0,4.6,1,6.2,2.9l45.8,54.1c3,3.5,8.4,3.8,11.7.7l.2-.2c3.1-3,3.4-7.8.6-11.1l-51-60.3c-1.5-1.8-3.8-2.9-6.1-2.9H99.2c-2.3,0-4.6,1-6.1,2.9L25.1,96.4c-.2.2-.3.4-.4.6,0,.1-.2.2-.2.4-.2.4-.5.8-.7,1.3,0,.1,0,.2-.1.3-.1.4-.2.7-.3,1.1,0,.2,0,.3,0,.5,0,.2,0,.4,0,.5L0,337.4c-.7,7.4,8.2,11.8,13.6,6.7h0Z\"><\/path><path d=\"M382.4,29c-3.1-3.3-8.4-3.5-11.7-.4L12.6,364.5c-3.3,3.1-3.5,8.4-.4,11.7,1.6,1.7,3.8,2.6,6,2.6s4.1-.7,5.7-2.2L382,40.7c3.3-3.1,3.5-8.4.4-11.7Z\"><\/path><\/g><\/g><\/g><\/svg>\t\t<\/span>\n\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tCapsules and Pods\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1010857934\" data-tab-title-id=\"e-n-tab-title-1010857934\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"4\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1010857934\" style=\"--n-tabs-title-order: 4;\">\n\t\t\t\t\t<span class=\"e-n-tab-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 161.66 198.28\"><g><path d=\"M143.64 165.04c1.57 0 3.05-.02 4.52 0 7.69.1 13.2 4.87 13.4 11.86.16 5.67.09 11.35.02 17.03-.03 2.94-1.69 4.33-4.97 4.33H5.12c-3.49 0-5.06-1.41-5.08-4.62-.04-5.49-.09-10.97.01-16.46.13-7.19 5.63-12.07 13.52-12.15 1.41-.02 2.83 0 4.53 0v-2.21c0-35.69 0-71.37-.04-107.06 0-.95-.33-2.06-.93-2.82-3.84-4.88-5.83-10.27-5.83-16.27 0-9.03-.01-18.07.02-27.1 0-1.09-.08-1.87-1.4-2.45C8.12 6.33 7.55 4.74 7.98 3 8.41 1.25 9.76.26 11.72.03c.56-.07 1.13-.03 1.71-.03H148.3c3.27 0 5.08 1.1 5.39 3.29.23 1.62-.3 3.07-1.92 3.78-1.38.6-1.49 1.45-1.49 2.6.03 8.71-.04 17.42.04 26.14.06 6.42-1.85 12.2-6.05 17.37a3.53 3.53 0 0 0-.74 2.1c-.04 36.07-.03 72.15-.03 108.22 0 .44.06.87.11 1.53Zm-35.46-36.47h10.31c3.73.01 5.26 1.4 5.28 4.85.02 3.29 0 6.58 0 9.87.06 12.83 1.01 12.03-13.06 11.96h-2.01c-.79 3.51-1.48 6.61-2.16 9.66h28.29V60.49c-7.65 4.13-15.93 3.3-24.24 3.39 0 3.72.02 7.25 0 10.78-.02 3.31-1.58 4.73-5.19 4.74-3.17.01-6.34 0-9.67 0 0 3.96.01 7.69 0 11.42-.01 3.32-1.54 4.75-5.15 4.77-6.46.02-12.93.02-19.39 0-3.76-.01-5.29-1.41-5.3-4.82-.01-3.73 0-7.45 0-11.37H56.8c-4.37 0-5.76-1.25-5.76-5.18V63.87c-8.36-.06-16.63.73-24.2-3.36v104.43h28.32c-.54-2.73-1.48-5.42-1.53-8.11-.18-10.13-.08-20.26-.07-30.39 0-3.46 1.5-4.83 5.27-4.84 6.46-.01 12.93 0 19.39 0 8.31 0 16.61-.01 24.93 0 3.52 0 5.01 1.39 5.05 4.62.01.7 0 1.39 0 2.35h-.03ZM19.86 7.83v1.91c0 8.84-.03 17.68 0 26.52.04 11.54 9.21 19.83 21.96 19.84 25.99.02 51.99.02 77.97 0 12.86-.01 21.95-8.3 21.97-20.02.02-8.78 0-17.55 0-26.33 0-.62-.06-1.24-.1-1.92H19.86ZM8.61 190.45h144.46v-11.83c0-4.63-1.32-5.83-6.44-5.83H14.98c-.71 0-1.43-.03-2.13.03-2.47.24-4.14 1.63-4.2 3.89-.12 4.5-.04 9.01-.04 13.73Zm53.46-61.01v1.78c0 8.45-.01 16.91 0 25.36.01 5.23 3.52 8.42 9.29 8.45 6.25.03 12.5.02 18.75 0 6.1-.02 9.5-3.09 9.51-8.61.02-8.39 0-16.78 0-25.17v-1.82H62.05h.01Zm-2.45-57.96h42.31v-7.45H59.62v7.45Zm14.96 8.01v8.25h12.46v-8.25H74.58Zm40.51 67.91v-10.91h-6.76v10.91h6.76Z\"><\/path><path d=\"M41.91 46.53c-7.09.02-12.72-5.05-12.78-11.48-.06-6.47 5.72-11.77 12.79-11.73 6.98.04 12.73 5.3 12.72 11.64 0 6.39-5.69 11.55-12.73 11.57Zm-4.23-11.66c-.04 2.16 1.69 3.83 4.03 3.89 2.41.07 4.37-1.65 4.35-3.83-.01-2.09-1.89-3.82-4.18-3.84-2.27-.02-4.17 1.68-4.22 3.78ZM115.77 45.74c-3.83 0-7.67.02-11.5 0-2.99-.02-4.78-1.5-4.77-3.86 0-2.34 1.82-3.86 4.8-3.87 7.81-.02 15.63-.03 23.43 0 2.96.01 4.78 1.54 4.77 3.89 0 2.35-1.8 3.82-4.8 3.85-3.98.03-7.95 0-11.93 0ZM115.97 31.9c-3.9 0-7.81.03-11.71-.01-3-.03-4.78-1.53-4.76-3.87.01-2.33 1.82-3.84 4.81-3.86 7.81-.04 15.61-.04 23.42 0 2.98.02 4.78 1.57 4.76 3.9-.01 2.33-1.8 3.79-4.81 3.83-3.9.04-7.81.01-11.71.01Z\"><\/path><\/g><\/svg>\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 161.66 198.28\"><g><path d=\"M143.64 165.04c1.57 0 3.05-.02 4.52 0 7.69.1 13.2 4.87 13.4 11.86.16 5.67.09 11.35.02 17.03-.03 2.94-1.69 4.33-4.97 4.33H5.12c-3.49 0-5.06-1.41-5.08-4.62-.04-5.49-.09-10.97.01-16.46.13-7.19 5.63-12.07 13.52-12.15 1.41-.02 2.83 0 4.53 0v-2.21c0-35.69 0-71.37-.04-107.06 0-.95-.33-2.06-.93-2.82-3.84-4.88-5.83-10.27-5.83-16.27 0-9.03-.01-18.07.02-27.1 0-1.09-.08-1.87-1.4-2.45C8.12 6.33 7.55 4.74 7.98 3 8.41 1.25 9.76.26 11.72.03c.56-.07 1.13-.03 1.71-.03H148.3c3.27 0 5.08 1.1 5.39 3.29.23 1.62-.3 3.07-1.92 3.78-1.38.6-1.49 1.45-1.49 2.6.03 8.71-.04 17.42.04 26.14.06 6.42-1.85 12.2-6.05 17.37a3.53 3.53 0 0 0-.74 2.1c-.04 36.07-.03 72.15-.03 108.22 0 .44.06.87.11 1.53Zm-35.46-36.47h10.31c3.73.01 5.26 1.4 5.28 4.85.02 3.29 0 6.58 0 9.87.06 12.83 1.01 12.03-13.06 11.96h-2.01c-.79 3.51-1.48 6.61-2.16 9.66h28.29V60.49c-7.65 4.13-15.93 3.3-24.24 3.39 0 3.72.02 7.25 0 10.78-.02 3.31-1.58 4.73-5.19 4.74-3.17.01-6.34 0-9.67 0 0 3.96.01 7.69 0 11.42-.01 3.32-1.54 4.75-5.15 4.77-6.46.02-12.93.02-19.39 0-3.76-.01-5.29-1.41-5.3-4.82-.01-3.73 0-7.45 0-11.37H56.8c-4.37 0-5.76-1.25-5.76-5.18V63.87c-8.36-.06-16.63.73-24.2-3.36v104.43h28.32c-.54-2.73-1.48-5.42-1.53-8.11-.18-10.13-.08-20.26-.07-30.39 0-3.46 1.5-4.83 5.27-4.84 6.46-.01 12.93 0 19.39 0 8.31 0 16.61-.01 24.93 0 3.52 0 5.01 1.39 5.05 4.62.01.7 0 1.39 0 2.35h-.03ZM19.86 7.83v1.91c0 8.84-.03 17.68 0 26.52.04 11.54 9.21 19.83 21.96 19.84 25.99.02 51.99.02 77.97 0 12.86-.01 21.95-8.3 21.97-20.02.02-8.78 0-17.55 0-26.33 0-.62-.06-1.24-.1-1.92H19.86ZM8.61 190.45h144.46v-11.83c0-4.63-1.32-5.83-6.44-5.83H14.98c-.71 0-1.43-.03-2.13.03-2.47.24-4.14 1.63-4.2 3.89-.12 4.5-.04 9.01-.04 13.73Zm53.46-61.01v1.78c0 8.45-.01 16.91 0 25.36.01 5.23 3.52 8.42 9.29 8.45 6.25.03 12.5.02 18.75 0 6.1-.02 9.5-3.09 9.51-8.61.02-8.39 0-16.78 0-25.17v-1.82H62.05h.01Zm-2.45-57.96h42.31v-7.45H59.62v7.45Zm14.96 8.01v8.25h12.46v-8.25H74.58Zm40.51 67.91v-10.91h-6.76v10.91h6.76Z\"><\/path><path d=\"M41.91 46.53c-7.09.02-12.72-5.05-12.78-11.48-.06-6.47 5.72-11.77 12.79-11.73 6.98.04 12.73 5.3 12.72 11.64 0 6.39-5.69 11.55-12.73 11.57Zm-4.23-11.66c-.04 2.16 1.69 3.83 4.03 3.89 2.41.07 4.37-1.65 4.35-3.83-.01-2.09-1.89-3.82-4.18-3.84-2.27-.02-4.17 1.68-4.22 3.78ZM115.77 45.74c-3.83 0-7.67.02-11.5 0-2.99-.02-4.78-1.5-4.77-3.86 0-2.34 1.82-3.86 4.8-3.87 7.81-.02 15.63-.03 23.43 0 2.96.01 4.78 1.54 4.77 3.89 0 2.35-1.8 3.82-4.8 3.85-3.98.03-7.95 0-11.93 0ZM115.97 31.9c-3.9 0-7.81.03-11.71-.01-3-.03-4.78-1.53-4.76-3.87.01-2.33 1.82-3.84 4.81-3.86 7.81-.04 15.61-.04 23.42 0 2.98.02 4.78 1.57 4.76 3.9-.01 2.33-1.8 3.79-4.81 3.83-3.9.04-7.81.01-11.71.01Z\"><\/path><\/g><\/svg>\t\t<\/span>\n\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tMachines\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1010857935\" data-tab-title-id=\"e-n-tab-title-1010857935\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"5\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1010857935\" style=\"--n-tabs-title-order: 5;\">\n\t\t\t\t\t<span class=\"e-n-tab-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 400 400\"><defs><style>      .cls-1 {        fill: none;      }    <\/style><\/defs><g><g id=\"Layer_1\"><g id=\"uuid-568e8ef6-b7e0-4a5f-a01d-6d6be6a6ace7\"><path d=\"M233.2,223.6h-20.4l11.4-42.9c.8-3.1-.6-6.4-3.6-7.9s-6.4-.7-8.5,1.9l-50.7,63.5c-1.6,2.1-2,4.9-.8,7.3s3.6,3.9,6.2,3.9h20.5l-11.4,42.9c-.8,3.1.6,6.5,3.6,7.9,1,.5,2.1.7,3.1.7,2,0,4-.9,5.4-2.6l50.7-63.5c1.6-2.1,2-4.9.8-7.3s-3.6-3.9-6.2-3.9h0Z\"><\/path><path d=\"M387.4,125.1l-5.9-10.1c.9-1.2,1.5-2.7,1.6-4.3l4.3-36c.4-3.3.1-6.6-.8-9.8l-.3-1.1c-1.3-4.5-3.9-8.5-7.4-11.6-3.4-3-7.5-4.9-12-5.7-19.6-3.3-39.6-5.7-59.4-7.1-4.5-.3-9,.6-13,2.7-4.2,2.2-7.6,5.5-10,9.5l-.5,1c-1.6,2.9-2.7,6-3.1,9.3l-4.3,36c-.2,1.6,0,3.2.6,4.6l-8.1,8.4c-.6.6-1.2,1.2-1.7,1.9-.4-.6-.8-1.1-1.2-1.6l-7.9-10.3c.8-1.5,1.2-3.2,1.2-5v-40.2c0-3.7-.7-7.3-2.2-10.7l-.5-1.1c-2.1-4.8-5.4-8.9-9.7-11.8-4.1-2.8-9-4.4-13.9-4.7-22.1-1.1-44.4-1.1-66.5,0-5,.2-9.8,1.9-13.9,4.7-4.3,2.9-7.7,7-9.7,11.8l-.5,1.1c-1.4,3.4-2.2,7-2.2,10.7v40.2c0,1.8.4,3.5,1.2,5l-7.8,10.3c-.4.5-.8,1.1-1.2,1.6-.6-.6-1.1-1.3-1.7-1.9l-8.1-8.4c.5-1.4.8-3,.6-4.6l-4.3-36c-.4-3.3-1.4-6.4-3.1-9.3l-.5-1c-2.3-4.1-5.8-7.4-10-9.5-4-2.1-8.5-3-13-2.7-19.8,1.4-39.8,3.8-59.4,7.1-4.4.8-8.6,2.7-12,5.7-3.5,3.1-6.1,7.1-7.4,11.6l-.3,1.1c-.9,3.2-1.2,6.5-.8,9.8l4.3,36c.2,1.6.8,3.1,1.6,4.3l-5.9,10.1c-5.5,9.4-7.8,20.5-6.6,31.3l20.7,173.3c.4,3.7,1.6,7.3,3.4,10.5l.5.9c3,5.4,7.7,9.8,13.3,12.3,4.2,1.9,8.8,2.8,13.4,2.6,14.1-.7,28.3-1.9,42.4-3.6,8.2-1,16.3-2.1,24.4-3.4.2.6.4,1.2.7,1.8l.4,1c2.6,6.3,7.2,11.8,13,15.3,4.4,2.6,9.4,4.2,14.5,4.6,15.7,1.1,31.4,1.6,47.2,1.6s31.6-.5,47.2-1.6c5.1-.4,10.1-2,14.5-4.6,5.8-3.6,10.5-9,13-15.3l.4-1c.2-.6.5-1.2.7-1.8,8.1,1.3,16.2,2.4,24.4,3.4,14.1,1.7,28.3,2.9,42.4,3.6,4.6.2,9.2-.7,13.4-2.6,5.6-2.5,10.3-6.9,13.3-12.3l.5-.9c1.8-3.3,3-6.8,3.4-10.5l20.7-173.3c1.3-10.8-1-21.9-6.5-31.2h0ZM25.3,68.5l.3-1.1c.6-2.2,1.9-4.2,3.7-5.7,1.6-1.4,3.5-2.3,5.6-2.7l3.2,26.7,12.3-1.5-3.2-27.2c3.6-.5,7.3-1.1,10.9-1.5l3.3,27.4,12.3-1.5-3.3-27.5c3.7-.4,7.3-.8,11-1.1l3.2,27.2,12.3-1.5-3.2-26.7c2.1,0,4.2.4,6.1,1.3,2.1,1.1,3.8,2.7,4.9,4.7l.5,1c.8,1.4,1.3,3,1.5,4.6l4,33.1-81.9,9.8-4-33.1c-.2-1.6,0-3.2.4-4.8h0ZM122.5,144.8v191.9c-21.7,3.5-43.8,5.8-65.7,6.9-2.6.1-5.3-.4-7.7-1.5-3.2-1.5-5.9-4-7.6-7l-.5-.9c-1-1.9-1.7-3.9-1.9-6l-20.7-173.3c-1-8.1.8-16.4,4.9-23.5l7.4-12.5,81.3-9.7,10.1,10.4c1.6,1.6,3,3.3,4.2,5.2-2.4,6.4-3.8,13.2-3.8,20h0ZM154.2,55.7c0-1.8.4-3.6,1.1-5.3l.5-1.1c1-2.4,2.7-4.4,4.8-5.8,1.9-1.3,4.2-2.1,6.5-2.3v29.9h13.8v-30.5c4.1-.1,8.1-.2,12.2-.2v30.7h13.8v-30.7c4.1,0,8.2.1,12.2.2v30.5h13.8v-29.9c2.3.2,4.6,1,6.6,2.3,2.1,1.5,3.8,3.5,4.8,5.8l.5,1.1c.7,1.7,1.1,3.4,1.1,5.3v37h-91.6v-37h0ZM263.7,174v164.7c0,2.4-.5,4.7-1.4,6.9l-.4,1h0c-1.5,3.6-4.1,6.8-7.4,8.8-2.5,1.5-5.4,2.4-8.3,2.6-30.7,2.1-61.9,2.1-92.6,0-2.9-.2-5.8-1.1-8.3-2.6-3.3-2-6-5.1-7.4-8.8h0s-.4-1-.4-1c-.9-2.2-1.4-4.5-1.4-6.9v-193.9c0-6.6,1.6-13.1,4.6-19,1.1-2.2,2.4-4.3,3.9-6.3l9.8-12.8h90.9l9.8,12.8c1.5,2,2.8,4.1,3.9,6.3,1,1.8,1.8,3.7,2.4,5.7,1.4,4.3,2.2,8.8,2.2,13.3v29.2h0ZM293.2,63.6c.2-1.6.7-3.2,1.5-4.6l.5-1c1.2-2,2.9-3.7,4.9-4.7,1.9-1,4-1.4,6.1-1.3l-3.2,26.7,12.3,1.5,3.2-27.2c3.7.3,7.3.7,11,1.1l-3.3,27.5,12.3,1.5,3.3-27.5c3.6.5,7.3,1,10.9,1.5l-3.2,27.2,12.3,1.5,3.2-26.7c2.1.4,4,1.3,5.6,2.7,1.8,1.5,3,3.5,3.7,5.7l.3,1.1c.5,1.6.6,3.2.4,4.8l-4,33.1-81.9-9.8,4-33.1h0ZM381.6,154.9l-20.7,173.3c-.3,2.1-.9,4.1-1.9,6l-.5.9c-1.7,3.1-4.4,5.6-7.6,7-2.4,1.1-5,1.6-7.7,1.5-21.9-1.1-44-3.4-65.7-6.9v-191.9c0-6.8-1.3-13.6-3.8-20,1.2-1.9,2.6-3.6,4.2-5.2l10.1-10.4,81.3,9.7,7.4,12.5c3.4,5.8,5.2,12.4,5.2,19.1s0,2.9-.3,4.4h0Z\"><\/path><rect class=\"cls-1\" width=\"400\" height=\"400\"><\/rect><\/g><\/g><\/g><\/svg>\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 400 400\"><defs><style>      .cls-1 {        fill: none;      }    <\/style><\/defs><g><g id=\"Layer_1\"><g id=\"uuid-568e8ef6-b7e0-4a5f-a01d-6d6be6a6ace7\"><path d=\"M233.2,223.6h-20.4l11.4-42.9c.8-3.1-.6-6.4-3.6-7.9s-6.4-.7-8.5,1.9l-50.7,63.5c-1.6,2.1-2,4.9-.8,7.3s3.6,3.9,6.2,3.9h20.5l-11.4,42.9c-.8,3.1.6,6.5,3.6,7.9,1,.5,2.1.7,3.1.7,2,0,4-.9,5.4-2.6l50.7-63.5c1.6-2.1,2-4.9.8-7.3s-3.6-3.9-6.2-3.9h0Z\"><\/path><path d=\"M387.4,125.1l-5.9-10.1c.9-1.2,1.5-2.7,1.6-4.3l4.3-36c.4-3.3.1-6.6-.8-9.8l-.3-1.1c-1.3-4.5-3.9-8.5-7.4-11.6-3.4-3-7.5-4.9-12-5.7-19.6-3.3-39.6-5.7-59.4-7.1-4.5-.3-9,.6-13,2.7-4.2,2.2-7.6,5.5-10,9.5l-.5,1c-1.6,2.9-2.7,6-3.1,9.3l-4.3,36c-.2,1.6,0,3.2.6,4.6l-8.1,8.4c-.6.6-1.2,1.2-1.7,1.9-.4-.6-.8-1.1-1.2-1.6l-7.9-10.3c.8-1.5,1.2-3.2,1.2-5v-40.2c0-3.7-.7-7.3-2.2-10.7l-.5-1.1c-2.1-4.8-5.4-8.9-9.7-11.8-4.1-2.8-9-4.4-13.9-4.7-22.1-1.1-44.4-1.1-66.5,0-5,.2-9.8,1.9-13.9,4.7-4.3,2.9-7.7,7-9.7,11.8l-.5,1.1c-1.4,3.4-2.2,7-2.2,10.7v40.2c0,1.8.4,3.5,1.2,5l-7.8,10.3c-.4.5-.8,1.1-1.2,1.6-.6-.6-1.1-1.3-1.7-1.9l-8.1-8.4c.5-1.4.8-3,.6-4.6l-4.3-36c-.4-3.3-1.4-6.4-3.1-9.3l-.5-1c-2.3-4.1-5.8-7.4-10-9.5-4-2.1-8.5-3-13-2.7-19.8,1.4-39.8,3.8-59.4,7.1-4.4.8-8.6,2.7-12,5.7-3.5,3.1-6.1,7.1-7.4,11.6l-.3,1.1c-.9,3.2-1.2,6.5-.8,9.8l4.3,36c.2,1.6.8,3.1,1.6,4.3l-5.9,10.1c-5.5,9.4-7.8,20.5-6.6,31.3l20.7,173.3c.4,3.7,1.6,7.3,3.4,10.5l.5.9c3,5.4,7.7,9.8,13.3,12.3,4.2,1.9,8.8,2.8,13.4,2.6,14.1-.7,28.3-1.9,42.4-3.6,8.2-1,16.3-2.1,24.4-3.4.2.6.4,1.2.7,1.8l.4,1c2.6,6.3,7.2,11.8,13,15.3,4.4,2.6,9.4,4.2,14.5,4.6,15.7,1.1,31.4,1.6,47.2,1.6s31.6-.5,47.2-1.6c5.1-.4,10.1-2,14.5-4.6,5.8-3.6,10.5-9,13-15.3l.4-1c.2-.6.5-1.2.7-1.8,8.1,1.3,16.2,2.4,24.4,3.4,14.1,1.7,28.3,2.9,42.4,3.6,4.6.2,9.2-.7,13.4-2.6,5.6-2.5,10.3-6.9,13.3-12.3l.5-.9c1.8-3.3,3-6.8,3.4-10.5l20.7-173.3c1.3-10.8-1-21.9-6.5-31.2h0ZM25.3,68.5l.3-1.1c.6-2.2,1.9-4.2,3.7-5.7,1.6-1.4,3.5-2.3,5.6-2.7l3.2,26.7,12.3-1.5-3.2-27.2c3.6-.5,7.3-1.1,10.9-1.5l3.3,27.4,12.3-1.5-3.3-27.5c3.7-.4,7.3-.8,11-1.1l3.2,27.2,12.3-1.5-3.2-26.7c2.1,0,4.2.4,6.1,1.3,2.1,1.1,3.8,2.7,4.9,4.7l.5,1c.8,1.4,1.3,3,1.5,4.6l4,33.1-81.9,9.8-4-33.1c-.2-1.6,0-3.2.4-4.8h0ZM122.5,144.8v191.9c-21.7,3.5-43.8,5.8-65.7,6.9-2.6.1-5.3-.4-7.7-1.5-3.2-1.5-5.9-4-7.6-7l-.5-.9c-1-1.9-1.7-3.9-1.9-6l-20.7-173.3c-1-8.1.8-16.4,4.9-23.5l7.4-12.5,81.3-9.7,10.1,10.4c1.6,1.6,3,3.3,4.2,5.2-2.4,6.4-3.8,13.2-3.8,20h0ZM154.2,55.7c0-1.8.4-3.6,1.1-5.3l.5-1.1c1-2.4,2.7-4.4,4.8-5.8,1.9-1.3,4.2-2.1,6.5-2.3v29.9h13.8v-30.5c4.1-.1,8.1-.2,12.2-.2v30.7h13.8v-30.7c4.1,0,8.2.1,12.2.2v30.5h13.8v-29.9c2.3.2,4.6,1,6.6,2.3,2.1,1.5,3.8,3.5,4.8,5.8l.5,1.1c.7,1.7,1.1,3.4,1.1,5.3v37h-91.6v-37h0ZM263.7,174v164.7c0,2.4-.5,4.7-1.4,6.9l-.4,1h0c-1.5,3.6-4.1,6.8-7.4,8.8-2.5,1.5-5.4,2.4-8.3,2.6-30.7,2.1-61.9,2.1-92.6,0-2.9-.2-5.8-1.1-8.3-2.6-3.3-2-6-5.1-7.4-8.8h0s-.4-1-.4-1c-.9-2.2-1.4-4.5-1.4-6.9v-193.9c0-6.6,1.6-13.1,4.6-19,1.1-2.2,2.4-4.3,3.9-6.3l9.8-12.8h90.9l9.8,12.8c1.5,2,2.8,4.1,3.9,6.3,1,1.8,1.8,3.7,2.4,5.7,1.4,4.3,2.2,8.8,2.2,13.3v29.2h0ZM293.2,63.6c.2-1.6.7-3.2,1.5-4.6l.5-1c1.2-2,2.9-3.7,4.9-4.7,1.9-1,4-1.4,6.1-1.3l-3.2,26.7,12.3,1.5,3.2-27.2c3.7.3,7.3.7,11,1.1l-3.3,27.5,12.3,1.5,3.3-27.5c3.6.5,7.3,1,10.9,1.5l-3.2,27.2,12.3,1.5,3.2-26.7c2.1.4,4,1.3,5.6,2.7,1.8,1.5,3,3.5,3.7,5.7l.3,1.1c.5,1.6.6,3.2.4,4.8l-4,33.1-81.9-9.8,4-33.1h0ZM381.6,154.9l-20.7,173.3c-.3,2.1-.9,4.1-1.9,6l-.5.9c-1.7,3.1-4.4,5.6-7.6,7-2.4,1.1-5,1.6-7.7,1.5-21.9-1.1-44-3.4-65.7-6.9v-191.9c0-6.8-1.3-13.6-3.8-20,1.2-1.9,2.6-3.6,4.2-5.2l10.1-10.4,81.3,9.7,7.4,12.5c3.4,5.8,5.2,12.4,5.2,19.1s0,2.9-.3,4.4h0Z\"><\/path><rect class=\"cls-1\" width=\"400\" height=\"400\"><\/rect><\/g><\/g><\/g><\/svg>\t\t<\/span>\n\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tOther Products\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"e-n-tabs-content\">\n\t\t\t\t<div id=\"e-n-tab-content-1010857931\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1010857931\" data-tab-index=\"1\" style=\"--n-tabs-title-order: 1;\" class=\"e-active elementor-element elementor-element-ab5acb3 cdo-shadow-01 e-flex e-con-boxed e-con e-child\" data-id=\"ab5acb3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72aab97 elementor-widget__width-initial elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"72aab97\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"450\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2025\/02\/cdo-home-caffe-in-grani.webp\" class=\"attachment-large size-large wp-image-12970\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2025\/02\/cdo-home-caffe-in-grani.webp 450w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2025\/02\/cdo-home-caffe-in-grani-300x300.webp 300w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2025\/02\/cdo-home-caffe-in-grani-150x150.webp 150w\" sizes=\"(max-width: 450px) 100vw, 450px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-874a94b elementor-widget__width-initial elementor-absolute elementor-hidden-mobile elementor-hidden-tablet elementor-invisible elementor-widget elementor-widget-image\" data-id=\"874a94b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;zoomIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"967\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/cdo-home-chicchi-explode.webp\" class=\"attachment-large size-large wp-image-8476\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-39c5b99 e-con-full e-flex e-con e-child\" data-id=\"39c5b99\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4277af elementor-widget elementor-widget-heading\" data-id=\"c4277af\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Coffee beans<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-22aedfb elementor-widget elementor-widget-heading\" data-id=\"22aedfb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">When a bean turns to Chicco D\u2019Oro<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa91269 elementor-widget elementor-widget-text-editor\" data-id=\"aa91269\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>There are beans and beans, grains and grains. Since 1949, we&#8217;ve seen many arrive at our company. Green and disoriented after a long journey. Every bean has a story. Every story has an aroma, a territory.     <br><br>We have learned to select them, get to know them, blend them, and roast them with a typical, unique roasting process that makes every bean that leaves here an authentic and inimitable Chicco D&#8217;Oro, waiting to be ground to become our coffee.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-541f0fb elementor-mobile-align-justify elementor-widget elementor-widget-button\" data-id=\"541f0fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/coffee-beans\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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<div id=\"e-n-tab-content-1010857932\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1010857932\" data-tab-index=\"2\" style=\"--n-tabs-title-order: 2;\" class=\" elementor-element elementor-element-6dbe292 e-con-full e-flex e-con e-child\" data-id=\"6dbe292\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c49ee7f elementor-widget__width-initial elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"c49ee7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"803\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/cdo-home-splash-macinato-2.webp\" class=\"attachment-large size-large wp-image-9104\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3b4dfb2 elementor-widget__width-initial elementor-absolute elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"3b4dfb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;zoomIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"688\" height=\"623\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/chicco-macinato-2.webp\" class=\"attachment-large size-large wp-image-8482\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-928faed e-con-full e-flex e-con e-child\" data-id=\"928faed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fce4d6a elementor-widget elementor-widget-heading\" data-id=\"fce4d6a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ground coffee<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cdd4914 elementor-widget elementor-widget-heading\" data-id=\"cdd4914\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">It's the grind, baby!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9d2d155 elementor-widget elementor-widget-text-editor\" data-id=\"9d2d155\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>If making good coffee is an art, grinding is no less so. Grinding means transforming the bean into powder while keeping its characteristics intact. <\/p><p>That&#8217;s why we carefully choose the fineness of the grind, its ideal degree, to give lovers of the classic method that emotion made of aromas, sounds, and sensations that only homemade coffee can provide.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-adbc4bf elementor-mobile-align-justify elementor-widget elementor-widget-button\" data-id=\"adbc4bf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/ground-coffee\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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 id=\"e-n-tab-content-1010857933\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1010857933\" data-tab-index=\"3\" style=\"--n-tabs-title-order: 3;\" class=\" elementor-element elementor-element-1022924 e-con-full e-flex e-con e-child\" data-id=\"1022924\" 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-aa10ba2 e-flex e-con-boxed e-con e-child\" data-id=\"aa10ba2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e15b9cb e-flex e-con-boxed e-con e-child\" data-id=\"e15b9cb\" 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-db65252 elementor-widget elementor-widget-heading\" data-id=\"db65252\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Capsules and Pods<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3081201 elementor-widget elementor-widget-heading\" data-id=\"3081201\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Different formats, the same quality as always<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-af5c848 elementor-align-start elementor-mobile-align-start elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"af5c848\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"uuid-894f5cf2-0c23-4e2c-82b7-a98542616f43\" viewBox=\"0 0 193.82 182.43\"><g id=\"uuid-9465d791-46a9-4d30-8922-06779db25a04\"><path d=\"m189.9,174.3h-11.8l-12.89-131.81c0-.09-.03-.17-.04-.26-.01-.08-.02-.17-.04-.25-.04-.18-.1-.36-.16-.54-.02-.05-.03-.1-.05-.15-.09-.22-.2-.42-.32-.62-.04-.06-.08-.11-.12-.17-.07-.1-.13-.19-.21-.28L131.38,1.38c-.74-.88-1.82-1.38-2.95-1.38h-63.05c-1.13,0-2.2.5-2.95,1.38L29.56,40.22c-.08.09-.14.19-.2.28-.04.06-.09.11-.12.17-.12.2-.23.4-.32.62-.02.05-.03.1-.05.15-.07.18-.12.36-.16.54-.02.08-.03.16-.04.25-.01.09-.04.17-.04.26l-12.89,131.81H3.92c-2.16,0-3.92,1.82-3.92,4.07s1.76,4.07,3.92,4.07h185.98c2.16,0,3.92-1.82,3.92-4.07s-1.76-4.07-3.92-4.07ZM36.05,46.97h121.73l12.45,127.33H23.6l12.45-127.33Zm31.11-38.84h59.5l26,30.71H41.16l26-30.71Z\" stroke-width=\"0\"><\/path><g id=\"uuid-569c628c-0f71-416f-aeaf-933d5eacc70b\"><path d=\"m128.44,152.2h-63.06c-6.46,0-11.71-5.25-11.71-11.71v-63.06c0-6.46,5.25-11.71,11.71-11.71h63.06c6.46,0,11.71,5.25,11.71,11.71v63.06c0,6.46-5.25,11.71-11.71,11.71Zm-63.06-82.23c-4.11,0-7.46,3.35-7.46,7.46v63.06c0,4.11,3.35,7.46,7.46,7.46h63.06c4.11,0,7.46-3.35,7.46-7.46v-63.06c0-4.11-3.35-7.46-7.46-7.46h-63.06Z\" stroke-width=\"0\"><\/path><path d=\"m98.39,129.94c-8.06,0-9.09-5.53-9.09-18.31s1.03-18.36,9.09-18.36c4.25,0,5.88,2.49,5.88,9.14h14.03c.56-10.73-5.32-16.6-19.9-16.6-23.59,0-23.59,12.61-23.59,25.82s0,25.82,23.59,25.82c13.34,0,20.63-4.29,20.63-17.63h-14.11c-.17,3.9.09,10.12-6.52,10.12\" stroke-width=\"0\"><\/path><\/g><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><b>Capsules with Caffitaly system:<\/b> an elegant fusion of technology and taste, designed to offer an extraordinary coffee experience with every sip.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 193.82 182.43\"><g><path d=\"M0 182.43v-12.38h9.04c2.84 0 2.78 0 3.04-3.09 1.18-14 2.4-27.99 3.61-41.98 1.19-13.93 2.39-27.85 3.58-41.78 1.16-13.65 2.31-27.3 3.52-40.95.06-.75.5-1.59.98-2.13C35.58 27.04 47.42 13.98 59.28.98c.5-.56 1.41-.94 2.14-.94 23.67-.05 47.35-.05 71.03 0 .77 0 1.73.47 2.28 1.06 11.78 12.9 23.53 25.85 35.22 38.85.63.71 1.07 1.89 1.16 2.9 1.8 20.3 3.53 40.59 5.27 60.89 1.45 16.91 2.87 33.81 4.31 50.72.39 4.57.82 9.14 1.15 13.72.1 1.4.53 1.91 1.84 1.88 3.34-.09 6.68-.03 10.13-.03v12.38H0Zm170.6-12.51c-.3-3.53-.6-6.91-.88-10.29-1.43-16.9-2.86-33.81-4.3-50.71-1.61-18.84-3.26-37.68-4.82-56.52-.15-1.79-.67-2.29-2.29-2.29-40.91.05-81.82.05-122.73 0-1.81 0-2.17.73-2.3 2.49-.48 6.65-1.08 13.31-1.65 19.95-1.2 13.99-2.42 27.98-3.62 41.97-1.22 14.2-2.45 28.4-3.66 42.6-.36 4.21-.69 8.42-1.05 12.78h147.3ZM151.56 37.5c-.38-.51-.51-.73-.69-.92-6.96-7.68-13.91-15.38-20.92-23-.58-.63-1.65-.97-2.5-.97-20.33-.05-40.65-.06-60.97.02-.98 0-2.2.6-2.92 1.37-6.67 7.21-13.25 14.52-19.85 21.81-.42.47-.81.96-1.41 1.7h109.27Z\"><\/path><path d=\"M76.6 150.78c-7.86-3.35-13.82-11.09-16.64-21.93-5.87-22.71 6.98-50.1 27.66-59.07 17.73-7.69 35.2.24 41.37 18.77 8.26 24.8-7.11 56.34-30.98 63.54-6.81 2.05-13.38 1.93-21.41-1.3ZM98.14 82.9c-8.82-.28-19.21 9.29-23.41 21.45-3.63 10.5-1.78 23.93 3.78 27.66L98.14 82.9Zm-6.51 54.5c8.82.27 19.24-9.32 23.41-21.45 3.62-10.53 1.78-23.93-3.78-27.66L91.63 137.4Z\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><b>Aluminum capsules compatible with the Nespresso\u00ae system:<\/b> a trio of blends that satisfy all palates, ranging from intense and full-bodied coffees to those more delicate and aromatic.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xml:space=\"preserve\" style=\"enable-background:new 0 0 193.8 182.4\" viewBox=\"0 0 193.8 182.4\">  <path d=\"M96.4 181.1c-43.8 0-79.5-35.7-79.5-79.5 0-34.5 22.8-65.5 55.6-75.8L84.4 8.6c3-4.4 7.6-7 12.4-7 4.8 0 9.4 2.6 12.4 7.1l12.1 17.4c32.6 10.8 54.5 41 54.6 75.5 0 43.8-35.7 79.5-79.5 79.5zm.4-171.5c-2.1 0-4.3 1.3-5.8 3.5L77.5 32.6l-1.4.4C46 41.9 24.9 70.1 24.9 101.6c0 39.4 32.1 71.5 71.5 71.5s71.5-32.1 71.5-71.5c-.1-31.5-20.3-58.9-50.3-68.3l-1.3-.4-13.7-19.7c-1.5-2.3-3.7-3.6-5.8-3.6z\"><\/path>  <path d=\"M96.4 158.8c-30.2 0-54.8-24.6-54.8-54.8s24.6-54.8 54.8-54.8c30.2 0 54.8 24.6 54.8 54.8s-24.6 54.8-54.8 54.8zm0-101.6c-25.8 0-46.8 21-46.8 46.8s21 46.8 46.8 46.8c25.8 0 46.8-21 46.8-46.8s-21-46.8-46.8-46.8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><b>Coffee pods:<\/b> With an unaltered aroma, our individually packaged pods guarantee fresh coffee, always ready to use.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-globe-americas\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\"><b>Single-origin selection:<\/b> We uncover precious beans in hidden regions like India, Honduras, Peru, and Indonesia, highlighting the unique qualities of each origin. <\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2a49dd6 elementor-mobile-align-justify elementor-widget elementor-widget-button\" data-id=\"2a49dd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/capsules-and-pods\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-926bba2 elementor-absolute elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"926bba2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;zoomIn&quot;,&quot;_animation_delay&quot;:600}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"568\" height=\"568\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/chicco-cialde.webp\" class=\"attachment-large size-large wp-image-8493\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-17f4475 elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"17f4475\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/capsule-1.webp\" class=\"attachment-large size-large wp-image-8491\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1010857934\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1010857934\" data-tab-index=\"4\" style=\"--n-tabs-title-order: 4;\" class=\" elementor-element elementor-element-da8dd1c e-con-full e-flex e-con e-child\" data-id=\"da8dd1c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-307c94c e-con-full e-flex e-con e-child\" data-id=\"307c94c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-522f9b7 elementor-widget elementor-widget-heading\" data-id=\"522f9b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Caffitaly Capsule Machines<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-651c7e0 elementor-widget elementor-widget-heading\" data-id=\"651c7e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">An innovative system to reach new frontiers of taste.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9af3a55 elementor-widget elementor-widget-text-editor\" data-id=\"9af3a55\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Discover our catalog of coffee machines: the S21, compact with a unique design, the S07 with a larger water tank, and the S04, an iconic Caffitaly machine that has been in our catalog for a long time, always promising excellent performance.<\/p><p> <\/p><p>Find the perfect machine for you and savor the art of coffee at any time, combining design, innovation, and taste.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f147aa1 elementor-mobile-align-justify elementor-widget elementor-widget-button\" data-id=\"f147aa1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/coffee-machines\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1730f2f e-con-full e-flex e-con e-child\" data-id=\"1730f2f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-04b685c elementor-hidden-mobile elementor-widget elementor-widget-image-carousel\" data-id=\"04b685c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;none&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;effect&quot;:&quot;fade&quot;,&quot;speed&quot;:700,&quot;autoplay_speed&quot;:1300,&quot;autoplay&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carosello Immagini\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 3\"><figure class=\"swiper-slide-inner\"><img class=\"swiper-slide-image swiper-lazy\" data-src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/elementor\/thumbs\/cdo-hm-03-r2b7dc4pos7da74rkev0f97ppa7sbaookw9eeqto7o.webp\" alt=\"cdo-hm-03\" \/><div class=\"swiper-lazy-preloader\"><\/div><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 3\"><figure class=\"swiper-slide-inner\"><img class=\"swiper-slide-image swiper-lazy\" data-src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/elementor\/thumbs\/cdo-hm-02-r2b7d4m063x2pbfosblzvb40y78ulputvv1ikj4tlg.webp\" alt=\"cdo-hm-02\" \/><div class=\"swiper-lazy-preloader\"><\/div><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 3\"><figure class=\"swiper-slide-inner\"><img class=\"swiper-slide-image swiper-lazy\" data-src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/elementor\/thumbs\/cdo-hm-01-r2b7cu9s2xix5lupgp53lvpyeynt91ps6fv6ahk5hw.webp\" alt=\"cdo-hm-01\" \/><div class=\"swiper-lazy-preloader\"><\/div><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1010857935\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1010857935\" data-tab-index=\"5\" style=\"--n-tabs-title-order: 5;\" class=\" elementor-element elementor-element-c09b77a e-flex e-con-boxed e-con e-child\" data-id=\"c09b77a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-958348a e-con-full e-flex e-con e-child\" data-id=\"958348a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57cbc60 elementor-widget elementor-widget-heading\" data-id=\"57cbc60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/chiccodoro.com\/altri-prodotti-show\/\">Other Products<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2198b9c elementor-widget elementor-widget-heading\" data-id=\"2198b9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Much more than just coffee<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f18aed elementor-widget elementor-widget-text-editor\" data-id=\"1f18aed\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>In addition to our classic coffee packs, we&#8217;ve developed a range of special products that offer you unbeatable energy and flavor. <br><br>Thanks to our exclusive combination of high-quality coffee and energizing ingredients, every sip prepares you to tackle the day with vigor. Discover the future of coffee with us. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-94b9355 elementor-mobile-align-justify elementor-widget elementor-widget-button\" data-id=\"94b9355\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/discover-other-chicco-doro-products\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-3aa4051 elementor-hidden-mobile elementor-widget elementor-widget-image-carousel\" data-id=\"3aa4051\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;none&quot;,&quot;autoplay_speed&quot;:2500,&quot;effect&quot;:&quot;fade&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carosello d&#039;immagini\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper swiper-image-stretch\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 2\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3aa4051\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI5OTcsInVybCI6Imh0dHBzOlwvXC9jaGljY29kb3JvLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDJcL2NoaWNjby1kb3JvLXNsaWRlLXNob3R0aW5pLndlYnAiLCJzbGlkZXNob3ciOiIzYWE0MDUxIn0%3D\" href=\"https:\/\/chiccodoro.com\/altri-prodotti-show\/\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2025\/02\/chicco-doro-slide-shottini.webp\" alt=\"chicco-doro-slide-shottini\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 2\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3aa4051\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwMDEsInVybCI6Imh0dHBzOlwvXC9jaGljY29kb3JvLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDJcL2NoaWNjby1kb3JvLXNsaWRlLWNhZmZlLW1pbGsud2VicCIsInNsaWRlc2hvdyI6IjNhYTQwNTEifQ%3D%3D\" href=\"https:\/\/chiccodoro.com\/altri-prodotti-show\/\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2025\/02\/chicco-doro-slide-caffe-milk.webp\" alt=\"chicco-doro-slide-caffe-milk\" \/><\/figure><\/a><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d1749cb elementor-widget__width-initial elementor-absolute elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"d1749cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;,&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"399\" height=\"513\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/ice.png\" class=\"attachment-large size-large wp-image-8511\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-46ab0fb e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"46ab0fb\" 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-9dd08fa e-con-full e-flex e-con e-child\" data-id=\"9dd08fa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99cf9e7 elementor-widget elementor-widget-image\" data-id=\"99cf9e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/scopri-decaffeinato-cuor-doro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"437\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/3home.png\" class=\"attachment-large size-large wp-image-9388\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3d799e7 elementor-widget elementor-widget-image\" data-id=\"3d799e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/scopri-decaffeinato-cuor-doro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"317\" height=\"381\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/2home-1.webp\" class=\"attachment-large size-large wp-image-9382\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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<div class=\"elementor-element elementor-element-97baf1e e-con-full e-flex e-con e-child\" data-id=\"97baf1e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8461d73 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"8461d73\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Cuor d\u2019Oro Decaffeinated<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd9d303 elementor-widget elementor-widget-text-editor\" data-id=\"cd9d303\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Cuor D&#8217;Oro has all the full flavor and rich aroma of a true espresso, thanks to the most modern processes we use to extract the caffeine while preserving the aromatic qualities of the bean.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c976110 elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"c976110\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/decaffeinated-cuor-doro\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-4a118a9 e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"4a118a9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-f4f32d0 e-grid e-con-full e-con e-child\" data-id=\"f4f32d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-940df41 e-con-full e-flex e-con e-child\" data-id=\"940df41\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a579d3d elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"a579d3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Chicco Labs<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3c00225 elementor-widget elementor-widget-heading\" data-id=\"3c00225\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Spotify playlists, monthly wallpapers, and much more. A place for your imagination. <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-480b076 elementor-widget elementor-widget-image\" data-id=\"480b076\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"271\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/04\/cdo-mock-spring.webp\" class=\"attachment-large size-large wp-image-16519\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/04\/cdo-mock-spring.webp 500w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/04\/cdo-mock-spring-300x163.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\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-0a35c60 elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"0a35c60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"479\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/04\/moka-cdo.webp\" class=\"attachment-large size-large wp-image-16520\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/04\/moka-cdo.webp 400w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/04\/moka-cdo-251x300.webp 251w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\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-3b85c71 elementor-align-justify elementor-widget__width-inherit elementor-absolute elementor-widget elementor-widget-button\" data-id=\"3b85c71\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/chicco-doro-labs\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Visit and discover the Lab<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-17664e3 e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"17664e3\" 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-34a848e e-transform elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"34a848e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-4,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_laptop&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet_extra&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"738\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/07\/cdo-shottini-1024x945.png\" class=\"attachment-large size-large wp-image-8180\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/07\/cdo-shottini-1024x945.png 1024w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/07\/cdo-shottini-300x277.png 300w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/07\/cdo-shottini-768x708.png 768w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/07\/cdo-shottini.png 1084w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0a1c6e5 e-con-full e-flex e-con e-child\" data-id=\"0a1c6e5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f95261b elementor-widget__width-inherit elementor-widget elementor-widget-image\" data-id=\"f95261b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"320\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/07\/Power-Energy-Logo.svg\" class=\"attachment-large size-large wp-image-8187\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a4cf6a5 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"a4cf6a5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Energia a portata di mano!<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-218f828 elementor-widget elementor-widget-text-editor\" data-id=\"218f828\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Power Chicco d\u2019Oro is an energy supplement available in three flavors: Coffee, Orange, and Anise. Thanks to its formulation with carbohydrates, amino acids, plant extracts, and caffeine from Chicco d\u2019Oro instant coffee, it helps support intense physical and mental activities. It is gluten-free and lactose-free, but is not recommended for children, pregnant, or breastfeeding women due to its high caffeine content.  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ecc864a elementor-widget__width-initial elementor-mobile-align-justify elementor-widget-tablet__width-auto elementor-widget-mobile__width-inherit elementor-tablet-align-justify elementor-widget elementor-widget-button\" data-id=\"ecc864a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-size-sm\" role=\"button\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-fb7be00 e-con-full e-flex e-con e-child\" data-id=\"fb7be00\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6716722 e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"6716722\" 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-63a9306 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"63a9306\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Coffee break? Sip and get going! <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bab2877 elementor-widget elementor-widget-text-editor\" data-id=\"bab2877\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The afternoon calls, Chicco d&#8217;Oro answers! Get ready and enjoy a sip of energy for the final push of the day. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f29d68 elementor-widget elementor-widget-html\" data-id=\"9f29d68\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<iframe style=\"border-radius:12px\" src=\"https:\/\/open.spotify.com\/embed\/playlist\/0EDPNvwsliRDGawdCVD5tX?utm_source=generator\" width=\"100%\" height=\"480\" frameborder=\"0\" allowfullscreen=\"\" allow=\"autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture\" loading=\"lazy\"><\/iframe>\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-1dbec80 e-con-full cdo-shadow-01 e-flex e-con e-child\" data-id=\"1dbec80\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fcd13c3 elementor-hidden-mobile elementor-absolute elementor-widget elementor-widget-image\" data-id=\"fcd13c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;_position&quot;:&quot;absolute&quot;,&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_devices&quot;:[&quot;desktop&quot;,&quot;laptop&quot;,&quot;tablet_extra&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/Collezione_2026_ONLINE-1.pdf\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"600\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-front.webp\" class=\"attachment-large size-large wp-image-15945\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-front.webp 1000w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-front-300x225.webp 300w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-front-768x576.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3e01073 elementor-widget elementor-widget-image\" data-id=\"3e01073\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&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;:1,&quot;sizes&quot;:[]},&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_devices&quot;:[&quot;desktop&quot;,&quot;laptop&quot;,&quot;tablet_extra&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/Collezione_2026_ONLINE-1.pdf\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"600\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-inside.webp\" class=\"attachment-large size-large wp-image-15946\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-inside.webp 1000w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-inside-300x225.webp 300w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2026\/03\/punti-26-inside-768x576.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c3ed230 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"c3ed230\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Loyalty Program<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8840dde elementor-widget elementor-widget-heading\" data-id=\"8840dde\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Collect points and win fantastic prizes!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a34235 elementor-widget elementor-widget-text-editor\" data-id=\"0a34235\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>English: Immerse yourself in the aromatic world of Caff\u00e8 Chicco d&#8217;Oro and get rewarded for every sip! With our loyalty program, every purchase becomes a step towards exclusive rewards. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-76cb21e elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"76cb21e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/chicco-doro-loyalty-points\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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<div class=\"elementor-element elementor-element-06f22c7 e-con-full e-flex e-con e-parent\" data-id=\"06f22c7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-285b51f e-con-full e-flex e-con e-child\" data-id=\"285b51f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-143566e elementor-widget elementor-widget-heading\" data-id=\"143566e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Discover the world of Chicco d'Oro<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-25c02ef elementor-widget elementor-widget-heading\" data-id=\"25c02ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">In every cup of our coffee, you will find our tradition, our quality, and our vision.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-20b9ce2 elementor-widget elementor-widget-text-editor\" data-id=\"20b9ce2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div class=\"page\" title=\"Page 4\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>We are Chicco d&#8217;Oro, proud of our history, with our eyes set on the future. Our tradition and quality are reflected in every cup of coffee. &nbsp;<\/p>\n<p>We are explorers in search of the finest coffees, connoisseurs who select the best beans, and aficionados of the diverse aromatic nuances, like the Tradition blend since 1949. We combine tradition, technology, and innovation to ensure quality and taste. <\/p>\n<p>We are Chicco d&#8217;Oro, present in caf\u00e9s and at home, in beans, ground coffee, capsules, or cans. Born in Switzerland, we are now everywhere, even online. We are a story, a family, and a bean, offering quality coffee since 1949.  <\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-61cdacc elementor-widget elementor-widget-button\" data-id=\"61cdacc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chiccodoro.com\/en\/company\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover more<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a9ec75d e-con-full e-flex e-con e-child\" data-id=\"a9ec75d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9ac5137 e-flex e-con-boxed e-con e-parent\" data-id=\"9ac5137\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5644159 elementor-widget elementor-widget-template\" data-id=\"5644159\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"8329\" class=\"elementor elementor-8329 elementor-4341 elementor-4341\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5f902b4 e-con-full e-flex e-con e-child\" data-id=\"5f902b4\" 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-1e6dd951 e-con-full e-flex e-con e-child\" data-id=\"1e6dd951\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-276dcf6a elementor-widget-mobile__width-initial elementor-widget elementor-widget-heading\" data-id=\"276dcf6a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The irresistible aroma of novelties<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c598f0f elementor-widget-mobile__width-initial elementor-hidden-desktop elementor-hidden-laptop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-align-center elementor-widget elementor-widget-lottie\" data-id=\"c598f0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;source_json&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/chiccodoro.com\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/chicco-news.json&quot;,&quot;id&quot;:2000,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;loop&quot;:&quot;yes&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;source&quot;:&quot;media_file&quot;,&quot;caption_source&quot;:&quot;none&quot;,&quot;link_to&quot;:&quot;none&quot;,&quot;trigger&quot;:&quot;arriving_to_viewport&quot;,&quot;viewport&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;play_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;end_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;renderer&quot;:&quot;svg&quot;}\" data-widget_type=\"lottie.default\">\n\t\t\t\t\t<div class=\"e-lottie__container\"><div class=\"e-lottie__animation\"><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-57f85219 elementor-widget elementor-widget-text-editor\" data-id=\"57f85219\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Sign up to receive information, news, contests and our promotions. We will never give the email to a third party and we do not spam. This is a promise \u270c\ufe0f  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-73e46ced e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"73e46ced\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7cca7c7f elementor-align-center elementor-widget elementor-widget-lottie\" data-id=\"7cca7c7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;source_json&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/chiccodoro.com\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/chicco-news.json&quot;,&quot;id&quot;:2000,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;loop&quot;:&quot;yes&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;source&quot;:&quot;media_file&quot;,&quot;caption_source&quot;:&quot;none&quot;,&quot;link_to&quot;:&quot;none&quot;,&quot;trigger&quot;:&quot;arriving_to_viewport&quot;,&quot;viewport&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;play_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;end_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:100,&quot;sizes&quot;:[]},&quot;renderer&quot;:&quot;svg&quot;}\" data-widget_type=\"lottie.default\">\n\t\t\t\t\t<div class=\"e-lottie__container\"><div class=\"e-lottie__animation\"><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-74c6fb10 e-con-full e-flex e-con e-child\" data-id=\"74c6fb10\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5e47dc41 elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"5e47dc41\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Newsletter CdO - EN\" aria-label=\"Newsletter CdO - EN\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"8329\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"5e47dc41\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Chicco d&#039;Oro Coffee - The Italian Espresso of Swiss Quality\" \/>\n\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"7971\"\/>\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Your email\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-radio elementor-field-group elementor-column elementor-field-group-list_id elementor-col-100 elementor-field-required\">\n\t\t\t\t\t<div class=\"elementor-field-subgroup  elementor-subgroup-inline\"><span class=\"elementor-field-option\"><input type=\"radio\" value=\"6\" id=\"form-field-list_id-0\" name=\"form_fields[list_id]\" required=\"required\"> <label for=\"form-field-list_id-0\">Italiano<\/label><\/span><span class=\"elementor-field-option\"><input type=\"radio\" value=\"10\" id=\"form-field-list_id-1\" name=\"form_fields[list_id]\" required=\"required\"> <label for=\"form-field-list_id-1\">Deutsch<\/label><\/span><span class=\"elementor-field-option\"><input type=\"radio\" value=\"11\" id=\"form-field-list_id-2\" name=\"form_fields[list_id]\" required=\"required\"> <label for=\"form-field-list_id-2\">Fran\u00e7ais<\/label><\/span><span class=\"elementor-field-option\"><input type=\"radio\" value=\"9\" id=\"form-field-list_id-3\" name=\"form_fields[list_id]\" required=\"required\"> <label for=\"form-field-list_id-3\">English<\/label><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text\">\n\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_14eb1c9]\" id=\"form-field-field_14eb1c9\" class=\"elementor-field elementor-size-sm \" style=\"display:none !important;\">\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-recaptcha_v3 elementor-field-group elementor-column elementor-field-group-field_11a78ad elementor-col-100 recaptcha_v3-bottomright\">\n\t\t\t\t\t<div class=\"elementor-field\" id=\"form-field-field_11a78ad\"><div class=\"elementor-g-recaptcha\" data-sitekey=\"6LfIZ-QqAAAAAL90Am0PQhruPa6mT8sitaI_gWUI\" data-type=\"v3\" data-action=\"Form\" data-badge=\"bottomright\" data-size=\"invisible\"><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Sign up<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e27f636 elementor-widget elementor-widget-text-editor\" data-id=\"e27f636\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div style=\"font-size: 0.8rem; line-height: 1.2; color: #fff; text-align: center; padding: 0 1em;\">\nThis site is protected by reCAPTCHA and the Google\n<a style=\"color: #fff;\" href=\"https:\/\/policies.google.com\/privacy\" target=\"_blank\" rel=\"noopener\">Privacy Policy<\/a>\nand\n<a style=\"color: #fff;\" href=\"https:\/\/policies.google.com\/terms\" target=\"_blank\" rel=\"noopener\">Terms of Service<\/a>\napply.<\/div>\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\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-5afa302 e-flex e-con-boxed e-con e-parent\" data-id=\"5afa302\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-66d6bd3 e-grid e-con-full e-con e-child\" data-id=\"66d6bd3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b09d4c8 elementor-widget elementor-widget-image\" data-id=\"b09d4c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"300\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/04\/cert-9001.png\" class=\"attachment-large size-large wp-image-15983\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/04\/cert-9001.png 400w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/04\/cert-9001-300x225.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b0dcf65 elementor-widget elementor-widget-image\" data-id=\"b0dcf65\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"300\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/04\/cert-fssc2k.png\" class=\"attachment-large size-large wp-image-15985\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/04\/cert-fssc2k.png 400w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2023\/04\/cert-fssc2k-300x225.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aba9892 elementor-widget elementor-widget-image\" data-id=\"aba9892\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"255\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/09\/biosuisse-eu-bio.svg\" class=\"attachment-large size-large wp-image-15987\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a27b28 elementor-widget elementor-widget-image\" data-id=\"6a27b28\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"204\" src=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/06\/fairtradeflocert-1024x261.png\" class=\"attachment-large size-large wp-image-15989\" alt=\"\" srcset=\"https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/06\/fairtradeflocert-1024x261.png 1024w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/06\/fairtradeflocert-300x76.png 300w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/06\/fairtradeflocert-768x195.png 768w, https:\/\/chiccodoro.com\/wp-content\/uploads\/2024\/06\/fairtradeflocert.png 1281w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Savor the aroma of spring, one sip at a time&#8230; The days are getting longer, the pleasure multiplies.Nature awakens, and with the right roast, so do you. Discover more \ud83c\udf3f The Chicco d&#8217;Oro Coffee Museum will be closed during the months of July and August \u2615 Explore the origins of coffee. Caff\u00e8 Latino is a [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":13114,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-7971","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/pages\/7971","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/comments?post=7971"}],"version-history":[{"count":5,"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/pages\/7971\/revisions"}],"predecessor-version":[{"id":16637,"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/pages\/7971\/revisions\/16637"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/media\/13114"}],"wp:attachment":[{"href":"https:\/\/chiccodoro.com\/en\/wp-json\/wp\/v2\/media?parent=7971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}