nappy.es Open in urlscan Pro
162.252.83.250  Public Scan

URL: https://nappy.es/
Submission: On February 13 via api from US — Scanned from US

Form analysis 3 forms found in the DOM

GET //nappy.es/buscar

<form id="searchbox" method="get" action="//nappy.es/buscar">
  <input type="hidden" name="controller" value="search">
  <input type="hidden" name="orderby" value="position">
  <input type="hidden" name="orderway" value="desc">
  <input class="search_query form-control" type="text" id="search_query_top" name="search_query" placeholder="Buscar" value="" data-positional="{&quot;on_right_side&quot;:false,&quot;left_side&quot;:514.984375,&quot;right_side&quot;:1059.984375}">
  <button type="submit" name="submit_search" class=" button-search">
    <span class="material-icons"> search </span>
  </button>
</form>

GET //nappy.es/buscar

<form id="searchbox" method="get" action="//nappy.es/buscar">
  <input type="hidden" name="controller" value="search">
  <input type="hidden" name="orderby" value="position">
  <input type="hidden" name="orderway" value="desc">
  <input class="search_query form-control hidden" type="text" id="search_query_top" name="search_query" placeholder="Buscar" value="">
  <span class="material-icons search-in-bar"> search </span>
  <button type="submit" name="submit_search" class="btn btn-default button-search">
    <span class="material-icons"> search </span>
  </button>
</form>

POST //nappy.es/

<form action="//nappy.es/" method="post">
  <div class="form-group">
    <input class="inputNew form-control grey newsletter-input" id="newsletter-input" type="text" name="email" size="18" value="Correo electrónico">
    <button type="submit" name="submitNewsletter" class="btn btn-default button button-small">
      <span>OK</span>
    </button>
    <input type="hidden" name="action" value="0">
    <div style="margin-top: 10px; margin-bottom: 15px;" id="g-recaptcha-re" data-callback="getRecaptcha" class="g-recaptcha" data-sitekey="6LccvPMmAAAAAJZgslM8HVblP3cmKxO7sGCUEIAY" data-theme="light" data-size="normal">
      <div style="width: 304px; height: 78px;">
        <div><iframe title="reCAPTCHA" width="304" height="78" role="presentation" name="a-h92c8b7s55qn" frameborder="0" scrolling="no"
            sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
            src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6LccvPMmAAAAAJZgslM8HVblP3cmKxO7sGCUEIAY&amp;co=aHR0cHM6Ly9uYXBweS5lczo0NDM.&amp;hl=es&amp;v=x5WWoE57Fv0d6ATKsLDIAKnt&amp;theme=light&amp;size=normal&amp;cb=wm9p1zkvrh1n"></iframe>
        </div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"
          style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
      </div><iframe style="display: none;"></iframe>
    </div>
    <input type="hidden" value="" name="g-recaptcha-response" id="order-recaptcha-response">
    <script>
      if (document.readyState === 'complete') {
        // Load static reCaptcha
        var new_recaptcha = grecaptcha.render('g-recaptcha-re');
        check_recaptcha_REG(new_recaptcha);
      } else {
        // Vanilla document ready
        document.addEventListener('DOMContentLoaded', function() {
          // Load static reCaptcha
          check_recaptcha_REG(false);
        });
      }
      // Utility functions
      function check_recaptcha_REG(new_recaptcha) {
        // Create structure variables
        var submit_button = findCM(['#authentication #customer-form .form-footer .btn-primary', '#authentication #account-creation_form #submitAccount']);
        var error_header = findCM(['#authentication .register-form', '#center_column > .page-heading', '#center_column .page-subheading', '#center_column #noSlide > h1', '#center_column .page_heading', '#center_column #account-creation_form',
          '#center_column #customer-form'
        ]);
        var captcha_invisible_form = findCM(['#authentication #customer-form', '#authentication #account-creation_form']);
        // Add our captcha depending to reCaptcha version
        if (re_version == 1) {
          // reCaptcha Version 2
          var clicked_first = true;
          $(submit_button).on('click', function() {
            if (clicked_first == true) {
              if ($(submit_button).prop('type') == 'submit') {
                $(submit_button).prop('type', 'button');
              }
            }
            if (clicked_first == true) {
              if ((new_recaptcha ? grecaptcha.getResponse(new_recaptcha) : grecaptcha.getResponse())) {
                $(submit_button).prop('type', 'submit');
                clicked_first = false;
                $(submit_button).click();
              } else {
                $('.alert, .error').remove();
                if (p_version == '1.7') {
                  $('<div class="alert alert-danger error"><p>Hay 1 error</p><ol><li>Captcha incorrecto.</ol></div>').hide().insertBefore(error_header).fadeIn(600);
                } else {
                  $('<div class="alert alert-danger error"><p>Hay 1 error</p><ol><li>Captcha incorrecto.</ol></div>').hide().insertAfter(error_header).fadeIn(600);
                }
              }
            }
          });
        } else if (re_version == 2) {
          // reCaptcha Invisible
          regREG(captcha_invisible_form, error_header);
          $(captcha_invisible_form).submit(function(event) {
            if (!(new_recaptcha ? grecaptcha.getResponse(new_recaptcha) : grecaptcha.getResponse())) {
              event.preventDefault();
              (new_recaptcha ? grecaptcha.execute(new_recaptcha) : grecaptcha.execute());
            }
          });
        }
      }

      function onreCSubmitREG(token) {
        if (token) {
          $('#order-recaptcha-response').remove();
          $($('#re_register_captcha_invisible_form').attr('data-parameter')).submit();
        }
      }

      function findCM(str) {
        var temp = false;
        $.each(str, function(key, value) {
          if ($(value).length) {
            temp = value;
            return false;
          }
        });
        if (temp) {
          return temp;
        } else {
          return false;
        }
      }

      function regREG(captcha_invisible_form, error_header) {
        $('body').append("<div id='re_register_error_header' data-parameter='" + error_header + "'></div>");
        $('body').append("<div id='re_register_captcha_invisible_form' data-parameter='" + captcha_invisible_form + "'></div>");
      }

      function getRecaptcha() {
        $('#order-recaptcha-response').val(grecaptcha.getResponse());
      }
    </script>
  </div>
</form>

Text Content

915 12 41 74 654 854 183 Envienos un email Lunes a viernes de 9:30 a 17:30h
Descuentos especiales Blog
close
To be determined Transporte
0,00 € Impuestos
0,00 € Total

Tramitar pedido

No hay productos


Producto añadido correctamente a su carrito de la compra

Cantidad
Total
0 0
Total productos (IVA incl.) 0,00 €
Total envío  (Impuestos incl.) To be determined
Impuestos 0,00 €
Total (Impuestos incl.) 0,00 €
Continuar compra Tramitar pedido





Este sitio web utiliza cookies para brindarle una mejor experiencia de usuario y
entregar contenido adaptado a sus necesidades.
Acepto Leer más close
search
search search
   
   Descuentos especiales
 * PAÑALES Y CUIDADO
    * PAÑALES expand_more expand_less
      DODOT PINGO CHELINO
   
    * ACCESORIOS PARA EL CAMBIO expand_more expand_less
      TOALLITAS CREMA PAÑAL EMPAPADOR Y CAMBIADOR CONTENEDORES / RECAMBIOS PORTA
      TOALLITAS
   
    * TOALLITAS DODOT SENSITIVE
      
      19,34 € 26,13 €
      -26%
   
    * PAÑALES 186 UDS, TALLA 3
      
      37,43 € 55,87 €
      -33%
   
    * 
   
    * 
   
    * 
   
    * 
   
   
   
 * HORA DE COMER
    * ALIMENTACIÓN expand_more expand_less
      POTITOS Y MERIENDAS PAPILLAS LECHES
   
    * ACCESORIOS PARA COMER expand_more expand_less
      BIBERONES BABEROS CHUPETES Y ALIMENTADORES CALENTADORES E HIGIENE TAZAS Y
      VAJILLA TETINAS
   
    * PARA LA COMIDA expand_more expand_less
      LACTANCIA MATERNA TRONAS
   
    * KIT PARA RECIÉN NACIDO
      
      28,09 € 33,05 €
      -15%
   
    * LECHE 1 PARA LACTANTES
      
      8,86 €
      
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 
   
   
 * BAÑO Y CUIDADO
    * CUIDADO DE LA PIEL expand_more expand_less
      ACEITES CREMAS GEL DE BAÑO Y JABÓN CHAMPÚ SOLARES COLONIAS
   
    * HIGIENE expand_more expand_less
      DENTICIÓN TIJERAS Y CORTAUÑAS PIOJOS Y REPELENTES ASPIRADORES SUERO
      FISIOLÓGICO
   
    * HORA DEL BAÑO expand_more expand_less
      BAÑERAS Y HAMACAS ESPONJAS Y TOALLAS TERMÓMETROS JUGUETES DE BAÑO ORINALES
      Y ADAPTADORES PEINES Y CEPILLOS
   
    * BAÑERA CON ALFOMBRILLA
      
      21,08 € 23,96 €
      -12%
   
    * TOALLAS DE BAÑO CON
      
      20,35 € 22,12 €
      -8%
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 

 * HORA DE PASEO
    * SILLAS DE PASEO expand_more expand_less
      ACCESORIOS PATINETES SACOS Y COLCHONETAS SILLAS
   
    * CUNAS DE VIAJE expand_more expand_less
      MALETAS Y MOCHILAS PORTABEBÉS GAFAS SOLARES
   
    * MOCHILAS INFANTILES
      
      12,26 € 13,62 €
      -10%
   
    * SACO PARA CARRITO
      
      52,03 € 57,81 €
      -10%
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 

 * HOGAR
    * HABITACIÓN expand_more expand_less
      ACCESORIOS CUNAS BARRERAS
   
    * EN CASA expand_more expand_less
      HAMACAS ALFOMBRA DE ACTIVIDADES
   
    * SEGURIDAD Y CONFORT expand_more expand_less
      BARRERAS Y PROTECCION PRIMEROS AUXILIOS HUMIDIFICADORES VIGILA BEBÉS
   
    * LIMPIEZA expand_more expand_less
      HOGAR ROPA PAPEL DE COCINA / WC
   
    * SANYTOL MULTIUSOS 750ML -
      
      2,04 € 3,14 €
      -35%
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 

 * MAMÁS
    * LACTANCIA Y EMBARAZO expand_more expand_less
      CUIDADO DE PECHO CONSERVACIÓN COJINES EXTRACTORES FAJAS
   
    * HIGIENE Y CUIDADO expand_more expand_less
      CHAMPÚ Y GEL ANTIESTRÍAS CREMAS Y ACEITES SOLARES COMPRESAS Y TAMPONES
      INTIMO DENTAL/LABIOS
   
    * LIBROS expand_more expand_less
   
    * PEZONERAS CONTACT MEDELA
      
      9,51 € 10,57 €
      -10%
   
    * CREMA CORPORAL NIVEA LATA
      
      2,46 € 2,74 €
      -10%
   
    * 
   
    * 
   
    * 

 * COCHE
    * COCHE expand_more expand_less
      SILLAS DE COCHE GRUPO 0 Ó 0+ SILLAS DE COCHE GRUPO 1 SILLAS DE COCHE GRUPO
      2 SILLAS DE COCHE GRUPO 3 SILLAS DE COCHE GRUPO 0/1 SILLAS DE COCHE GRUPO
      2/3 SILLAS DE COCHE GRUPO 1/2/3
   
    * ACCESORIOS expand_more expand_less
   
    * SILLA DE COCHE KING II BR
      
      149,20 € 184,20 €
      -19%
   
    * PROTECTOR DE ASIENTO PARA
      
      12,37 € 13,02 €
      -5%
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 
   
    * 

 * JUEGOS Y REGALOS
    * Fiesta expand_more expand_less
      Tarjetas Regalo Regalos Juguetes
   
    * PIRÁMIDE DE 6 ANILLOS
      
      12,00 € 13,64 €
      -12%
   
    * MOCHILA INFANTIL 3D
      
      11,14 € 12,38 €
      -10%
   
    * MORDEDOR REFRIGERANTE CON
      
      3,38 € 4,22 €
      -20%

 * BLOG
 * PACK


   ATENCIÓN ESPECIALIZADA
   
   915 12 41 74 654 854 183 Escribanos un email Lunes a viernes de 9:30 a 17:30h

 * 
 * 
 * 
 * 

PrevNext


NOVEDADES

chevron_left chevron_right
 * 39,66 € 48,37 € -18% En stock
   -18% Nuevo
   
   
   PACK DODOT TALLA 5 BEBE SECO 108UDS + DODOT PANTS...
   
   Pack de pañales Dodot que incluye: Pants talla 5 con 58uds, gracias a los
   pañales pants obtendrás hasta 12 horas de sequedad. Además, para cuando tu
   bebé ya gatea o camina, le protege y cuida de su piel. Los pañales Dodot
   Talla 5 bebé-seco, gracias a su exclusiva Capa Extra Seco, absorben el pipí
   de un modo más rápido, además tiene mayor superficie de...
   
   array(83) {
     ["id_product"]=>
     string(4) "5829"
     ["id_supplier"]=>
     string(3) "119"
     ["id_manufacturer"]=>
     string(2) "23"
     ["id_category_default"]=>
     string(3) "790"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "1"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(0) ""
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(20)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(39.66)
     ["wholesale_price"]=>
     string(9) "26.220000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(0) ""
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "5.500000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(3) "301"
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "1"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2024-01-30 16:33:21"
     ["date_upd"]=>
     string(19) "2024-02-08 15:18:58"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(3195) "
   
   
   Características de pañales Dodot pants talla 5
   
   
    * EL PAÑAL-BRAGUITA DE DODOT: Para cuando tu bebé ya gatea o camina, Dodot Pants combina toda la sequedad de Dodot con una nueva cómoda forma que permite ponerlo y quitarlo más fácilmente.
    * AJUSTE CONTORNO TOTAL: Gracias a su cintura ultra-elástica, se adapta perfectamente a su cuerpo.
    * MICROPERLAS ABSORBENTES: El pipí es encapsulado por cientos de miles de microperlas que absorben hasta 30 veces su peso y ayudan a evitar que la humedad retorne a la superficie.
    * CAPA EXTRA SECO: El pipí se distribuye rápida y eficazmente sobre una amplia área del pañal.
    * DE DÍA Y DE NOCHE: Hasta 12 horas de sequedad para que duerma seco durante toda la noche y juegue cómodamente durante el día.
    * INSTRUCCIONES DE USO. El nuevo Dodot Pants es muy fácil de cambiar:
    * Coloca el pañal subiéndolo como la ropa interior.
    * Para quitarlo, abre el pañal rasgando los laterales.
    * Para desecharlo, ciérralo con la cinta adhesiva y tíralo a la papelera.
   
   
   
   Características Pañales 108uds. Talla 5 Dodot Bebé-Seco (de 11 a 16 kg.)
   
   
   El pañal Dodot bebé-seco de Dodot , es el único pañal con canales de aire que crean espacio para que el aire circule dentro del pañal manteniendo el culito más seco y aireado toda la noche
   Formato: Caja con 108 uds - 2 paquetes con 54 pañales por paquete.
   
   
   *Respecto a la siguiente marca del mercado
   
   
   
   
   
   
   
   
   Canales de aire: Los canales de aire crean espacio para que el aire circule dentro del pañal facilitando la transpiración y sequedad.
   
   
   
   
   
   
   
   
   
   Microperlas absorbentes: El pipí es encapsulado por cientos de miles de microperlas que absorben hasta 30 veces su peso y ayudan a evitar que la humedad retorne a la superficie.
   
   
   
   
   
   
   
   
   
   Capa de sequedad express: Minimiza el tiempo de contacto del pipí con la piel del bebé.
   
   
   
   
   
   
   
   
   
   Suave como el algodón: Para un contacto delicado con la piel de tu bebé. *No contiene algodón.
   
   
   
   
   
   
   
   
   
   Laterales elásticos: Se adaptan a la forma y movimientos del bebé para una máxima comodidad y evitar escapes.
   
   
   
   
   
   
   
   
   
   Diseños divertidos: Diviértete con tu bebé con nuestros diseños.
   
   
   
   
   
   
   "
     ["description_short"]=>
     string(919) "
   
   Pack de pañales Dodot que incluye:
   
   
   Pants talla 5 con 58uds, gracias a los pañales pants obtendrás hasta 12 horas de sequedad. Además, para cuando tu bebé ya gatea o camina, le protege y cuida de su piel.
   
   
    Los pañales Dodot Talla 5 bebé-seco, gracias a su exclusiva Capa Extra Seco, absorben el pipí de un modo más rápido, además tiene mayor superficie de absorción. Hasta 12 horas seco, para mantener una piel más sana y cuidada.
   
   
   Pulsando aquí puedes ver la gama más completa de Dodot adaptando así la necesidad de tu bebé por completo."
     ["link_rewrite"]=>
     string(45) "pack-dodot-talla-5-108uds-dodot-pants-talla-5"
     ["meta_description"]=>
     string(145) "Compra este gran pack con Pack Dodot Talla 5 bebe seco 108uds y Dodot pants talla 5 con 60uds. Ideal para el bebé y su cuidado. Todo en nappy.es"
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(68) "Pack [ Talla 5 bebe seco 108uds ] [ Dodot pants talla 5 ] - Nappy.es"
     ["name"]=>
     string(68) "Pack Dodot Talla 5 bebe seco 108uds + Dodot pants talla 5 con 60uds."
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5829-17886"
     ["legend"]=>
     string(68) "Pack Dodot Talla 5 bebe seco 108uds + Dodot pants talla 5 con 58uds."
     ["manufacturer_name"]=>
     string(5) "DODOT"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(5) "dodot"
     ["link"]=>
     string(78) "https://nappy.es/dodot/5829-pack-dodot-talla-5-108uds-dodot-pants-talla-5.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(39.6634)
     ["price_without_reduction"]=>
     float(48.37)
     ["reduction"]=>
     float(8.7066)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "151262"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5829"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.180000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(20)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   39,66 € 48,37 €
   Comprar
 * 49,43 € 55,54 € -11% En stock
   -11% Nuevo
   
   
   PACK APRENDEMOS JUNTOS CON DODOT Y 3 PRODUCTOS PARA...
   
   Disfruta de los primeros momentos con el bebé gracias a este magnifico pack
   con Dodot y 6 artículos más. Pañales Dodot Talla 4 bebé-seco con 116uds.:
   Ideales para mantener a tu pequeño seco hasta 12 horas anti-fuga. Todo
   gracias a su nueva formula con una capa extra para mayor efectividad del
   pañal. Mayor superficie para una rápida absorción. (x2)...
   
   array(83) {
     ["id_product"]=>
     string(4) "5825"
     ["id_supplier"]=>
     string(3) "119"
     ["id_manufacturer"]=>
     string(2) "23"
     ["id_category_default"]=>
     string(3) "790"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "1"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(0) ""
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(3)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(49.43)
     ["wholesale_price"]=>
     string(9) "41.110000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(8) "0.000000"
     ["reference"]=>
     string(0) ""
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "9.000000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(0) ""
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "2021-05-05"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "0"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(4) "3657"
     ["date_add"]=>
     string(19) "2024-01-23 10:13:12"
     ["date_upd"]=>
     string(19) "2024-01-30 10:05:37"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(4168) "
   
   
   
   
   Características Pañales Dodot Bebé-Seco:
   
   
   Pack dodot de bebé-seco es el único pañal que consta con canales de aire que crean espacio para que el aire circule dentro del pañal manteniendo el culito más seco y aireado toda la noche.
   Formato: Caja con 116 pañales - 2 paquetes con 58 pañales por paquete.
   
   
   *Respecto a la siguiente marca del mercado
   
   
   
   
   
   
   
   
   Canales de aire: Los canales de aire crean espacio para que el aire circule dentro del pañal facilitando la transpiración y sequedad.
   
   
   
   
   
   
   
   
   
   Microperlas absorbentes: El pipí es encapsulado por cientos de miles de microperlas que absorben hasta 30 veces su peso y ayudan a evitar que la humedad retorne a la superficie.
   
   
   
   
   
   
   
   
   
   Capa de sequedad express: Minimiza el tiempo de contacto del pipí con la piel del bebé.
   
   
   
   
   
   
   
   
   
   Suave como el algodón: Para un contacto delicado con la piel de tu bebé. *No contiene algodón.
   
   
   
   
   
   
   
   
   
   Laterales elásticos: Se adaptan a la forma y movimientos del bebé para una máxima comodidad y evitar escapes.
   
   
   
   
   
   
   
   
   
   Diseños divertidos: Diviértete con tu bebé con nuestros diseños.
   
   
   
   
   
   
   
   
   
   
   
   
   Visita nuestra sección de pañales para poder comparar entre las diferentes gamas que mejor se adaptan a tus necesidades.
   
   
   
   
   
   
   Características Toallitas Dodot Aqua Pure:
   
   
    * Pack 3 paquetes de 48uds, 144 toallitas en total
    * Elaboradas con 99% de agua: Para una limpieza delicada de la piel
    * Con algodón orgánico: Para un contacto suave con la piel del bebé.
    * 1% de ingredientes delicados con la piel: Ayudan a recuperar el pH natural y previenen de irritaciones
    * Apropiadas desde el primer día: Especialmente diseñadas para la piel del recién nacido.
   
   
   
   
   
   
   
   Más información Taza antigoteo Miracle:
   
   
    * Vaso antiderrames sin boquilla.
    * Se puede beber en cualquier punto del borde y no derrama.
    * El vaso se cierra automáticamente cuando el niño deja de beber.
    * Asas de agarre fácil para manitas pequeñas.
    * Fácil de limpiar al no tener válvulas ni piezas adicionales.
    * Sin BPA.
    * Apto para la bandeja superior del lavavajillas.
    * A partir de 6 meses.
   
   
   
   
   
   
   Información Babero de silicona ajustable y enrollable de Kiokids:
   
   
    * Es impermeable.
    * Se limpia fácilmente con un paño húmedo, o jabón.
    * Es ajustable en el cuello (7 posiciones).
    * Es blandito por lo que resulta muy cómodo para el bebé.
    * También hace muy fácil el transporte pues se puede enrollar sobre sí mismo, ocupando muy poco espacio.
    * Incluye un bolsillo recogemigas para que no se pierdan por la trona o el suelo los trocitos de comida o las gotas.
    * No se ve alterado ni el color ni la forma.
   
   
   
   Pack de cuencos con tapas y cucharas Love Bowls Munchkin:
   
   
    * Evitan fugas y derrames.
    * Irrompibles.
    * Los cuencos se acoplan perfectamente para apilarlos y guardarlos fácilmente.
    * Lados fáciles de agarrar.
    * Capacidad de 250 ml.
    * Sin BPA.
    * A partir de 4 meses.
   
   
   
   "
     ["description_short"]=>
     string(1719) "
   
   Disfruta de los primeros momentos con el bebé gracias a este magnifico pack con Dodot y 6 artículos más.
   
   
    * 
      
      
      Pañales Dodot Talla 4 bebé-seco con 116uds.: Ideales para mantener a tu pequeño seco hasta 12 horas anti-fuga. Todo gracias a su nueva formula con una capa extra para mayor efectividad del pañal. Mayor superficie para una rápida absorción.
      
   
   
    * (x2) Toallitas Dodot Aqua Pure 144uds. (Pack 3 paquetes de 48uds): Las toallitas Aqua Pure Dodot están elaboradas con un 99% de agua para una limpieza delicada de la piel de tu bebé.
   
   
    * (Color Azul o Rosa a elegir) Taza antigoteo Miracle 360º con asas 200ml 6M+ Munchkin: Vaso antiderrames con asas Miracle 360° de Munchkin. El vaso antiderrames Miracle 360° de Munchkin es el primer vaso infantil que elimina los derrames y cuida de la salud de los dientes.
   
   
    * 
      
      
      (Color Azul o Rosa a elegir) Babero silicona ajustable con bolsillo fácil limpieza y enrollable +4m kiokids: Babero silicona ajustable con bolsillo fácil limpieza y enrollable +4m kiokids, ideal para los peques ya que es  blando e impermeable. Ha sido fabricado 100% en silicona.
      
   
    * 
      
      
      Pack de cuencos con tapas y cucharas Love Bowls Munchkin: Cuando los bebés pasan de los biberones a la comida sólida, es como si nunca hubiera bastantes cuencos para sus cambiantes necesidades. ¡Ni para contener tantos derrames y accidentes!.
      "
     ["link_rewrite"]=>
     string(40) "pack-aprendemos-juntos-dodot-3-productos"
     ["meta_description"]=>
     string(162) "Pack de Dodot a elegir color azul o rosa. 3 artículos para el cuidado y hora de comer del recién nacido. Todos los packs para le bebé los encontrareis en nappy"
     ["meta_keywords"]=>
     string(176) "bebe,tienda bebes,pañales baratos,pañales económicos,pañales dodot etapas baratos,pañales bebe baratos,ofertas pañales,donde comprar pañales,ofertas bebe,tienda pañales"
     ["meta_title"]=>
     string(72) "Pack Dodot [ 3 productos ] para el bebé: Packs recién nacido: Nappy.es"
     ["name"]=>
     string(60) "Pack aprendemos juntos con Dodot y 3 productos para el bebé"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5825-17854"
     ["legend"]=>
     string(60) "Pack aprendemos juntos con Dodot y 3 productos para el bebé"
     ["manufacturer_name"]=>
     string(5) "DODOT"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     string(1) "1"
     ["id_product_attribute"]=>
     int(3657)
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(5) "dodot"
     ["link"]=>
     string(73) "https://nappy.es/dodot/5825-pack-aprendemos-juntos-dodot-3-productos.html"
     ["attribute_price"]=>
     float(0)
     ["price_tax_exc"]=>
     float(49.428099)
     ["price_without_reduction"]=>
     float(55.53719)
     ["reduction"]=>
     float(6.109091)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150817"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5825"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.110000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(5)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   49,43 € 55,54 €
   Comprar
 * 31,83 € 48,97 € -35% En stock
   -35% Nuevo
   
   
   PACK IDEAL PARA EL RECIÉN NACIDO CON DODOT Y 2...
   
   Disfruta del recién nacido con este Gran pack que incluye 2 productos Dodot y
   3 artículos ideales para el cuidado del bebé: Caja de 88uds. Talla 1 Pañales
   Dodot Sensitive Recién Nacido (2 a 5 kg): Los pañales Dodot Sensitive de la
   talla 1 están especialmente diseñados para el cuidado de la piel sensible del
   recién nacido. Dodot, es la principal marca...
   
   array(83) {
     ["id_product"]=>
     string(4) "5822"
     ["id_supplier"]=>
     string(3) "119"
     ["id_manufacturer"]=>
     string(2) "23"
     ["id_category_default"]=>
     string(3) "790"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "1"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(0) ""
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(8)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(31.83)
     ["wholesale_price"]=>
     string(9) "26.810000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(8) "0.000000"
     ["reference"]=>
     string(0) ""
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "7.000000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(3) "404"
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "2021-05-05"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "1"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2024-01-19 16:44:24"
     ["date_upd"]=>
     string(19) "2024-02-13 17:31:56"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(3186) "
   
   
   
   Los pañales Dodot Sensitive ofrecen la máxima protección de la gama de pañales Dodot para la delicada piel del recién nacido. Por eso, incluyen tecnologías exclusivas especialmente diseñadas para su cuidado. Es suave como la seda, está especialmente diseñado para la máxima absorción de pipís y caquitas líquidas; tiene indicador de humedad y corte especial en la zona del ombligo. Talla 1 de 2 a 5 kg.
   
   
   Asegura el cuidado absoluto de tu bebé con las Toallitas Dodot Sensitive 810 uds y su loción de recuperación del pH de la piel para evitar las comunes irritaciones. Los pañales Dodot y sus Toallitas son la combinación ideal.
   
   
   
   
   
   
   
   
   
   
   Suave como la seda
   
   
   Los pañales Dodot Sensitive envuelven a tu bebé en el confort del pañal más suave con una sensación de suavidad increible para la piel.
   
   
   
   
   
   
   
   
   
   Tubos Ultra-Absorbentes
   
   
   Ayudan a distribuir la humedad uniformemente en el interior del pañal.
   
   
   
   
   
   
   
   
   
   Indicador de humedad
   
   
   Varía su color si tu bebé ha hecho pipí para ayudarte a saber cuándo cambiarlo.
   
   
   
   
   
   
   
   
   
   Máxima absorción de Dodot de pipis y caquitas líquidas
   
   
   Su tejido filtrante inferior y su núcleo de 3 capas permite retener las caquitas y los pipís en dos zonas diferenciadas, ayudando a evitar escapes.
   
   
   
   
   
   
   
   
   
   Corte especial en la zona del ombligo
   
   
   Ajuste suave y cómodo alrededor del ombligo.
   
   
   
   
   
   
   
   
   
   Envuelve a tu bebé en la máxima protección.
   
   
   Tiras suaves y transpirables en el pañal. 
   
   
   Sus bandas laterales suaves y elásticas le envuelven en la protección que su delicada piel necesita.
   
   
   
   
   
   
   
   
   
   
   "
     ["description_short"]=>
     string(1465) "
   
   Disfruta del recién nacido con este Gran pack que incluye 2 productos Dodot y 3 artículos ideales para el cuidado del bebé:
   
   
    * 
      
      
      Caja de 88uds. Talla 1 Pañales Dodot Sensitive Recién Nacido (2 a 5 kg): Los pañales Dodot Sensitive de la talla 1 están especialmente diseñados para el cuidado de la piel sensible del recién nacido. Dodot, es la principal marca reconocida por la calidad de sus productos.
      
   
    * 
      
      
      (x2) Toallitas Dodot Aqua Pure 144 Uds (Pack 3 paquetes de 48uds): Las toallitas Aqua Pure Dodot están elaboradas con un 99% de agua para una limpieza delicada de la piel de tu bebé. El 1% restante incluye ingredientes delicados con la piel que ayudan a recuperar el pH natural y previenen de irritaciones.
      
   
    * 
      
      
      Esponja Natural para el bebé +0meses Kiokids: Esponja natural mediterránea pequeña, de calidad superior a cualquier esponja caribeña que puedas encontrar en el mercado.
      
   
    * 
      
      
      Termómetro para baño de Jirafa BabyOno: El termómetro para el baño con diseño de Jirafa de BabyOno, lo ayudará a alcanzar y mantener de manera segura y confiable la temperatura adecuada para el baño de su bebé.
      "
     ["link_rewrite"]=>
     string(31) "pack-regalo-dodot-y-2-productos"
     ["meta_description"]=>
     string(147) "Pack con Dodot y 2 productos. Artículos ideales para le recién nacido. Los mejores productos para el recién nacido. Envío gratis a toda España"
     ["meta_keywords"]=>
     string(176) "bebe,tienda bebes,pañales baratos,pañales económicos,pañales dodot etapas baratos,pañales bebe baratos,ofertas pañales,donde comprar pañales,ofertas bebe,tienda pañales"
     ["meta_title"]=>
     string(70) "Pack primera mama [ Dodot y 2 productos ] para el bebé - Packs: Nappy"
     ["name"]=>
     string(66) "Pack ideal para el recién nacido con Dodot y 2 productos de baño"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5822-17887"
     ["legend"]=>
     string(49) "Pack regalo primera mamá con Dodot y 2 productos"
     ["manufacturer_name"]=>
     string(5) "DODOT"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(5) "dodot"
     ["link"]=>
     string(64) "https://nappy.es/dodot/5822-pack-regalo-dodot-y-2-productos.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(31.828512)
     ["price_without_reduction"]=>
     float(48.966942)
     ["reduction"]=>
     float(17.13843)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150181"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5822"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.350000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(8)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   31,83 € 48,97 €
   Comprar
 * 3,90 € 4,33 € -10% En stock
   -10% Nuevo
   
   
   CREMA HIDRATANTE CARA Y CUERPO NIVEA CARE RÁPIDA...
   
   Crema hidratante cara y cuerpo Nivea Care rápida absorción 24h+ (400ml) -
   Nivea La Crema hidratante cara y cuerpo Nivea Care hidrata en profundidad la
   piel de todo el cuerpo sin dejar sensación grasa. Crema de todo uso que nutre
   intensamente, se funde en la piel dejándola increíblemente suave durante 24
   horas y sin residuo graso alguno. Su innovadora...
   
   array(83) {
     ["id_product"]=>
     string(4) "5821"
     ["id_supplier"]=>
     string(1) "0"
     ["id_manufacturer"]=>
     string(3) "212"
     ["id_category_default"]=>
     string(3) "953"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "0"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(13) "4005900360298"
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(7)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(3.9)
     ["wholesale_price"]=>
     string(8) "2.930000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(0) ""
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "0.450000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(3) "404"
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "1"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2024-01-10 13:35:29"
     ["date_upd"]=>
     string(19) "2024-02-01 11:23:53"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(282) "
   
   
   Características
   
   
    * Nutrición intensiva sin sensación grasa.
    * Contiene hidrodispersión de ceras que se funden inmediatamente con la piel.
    * Piel increíblemente suave, con 24 horas de hidratación.
    * Dermatológicamente comprobado."
     ["description_short"]=>
     string(1143) "
   
   
   Crema hidratante cara y cuerpo Nivea Care rápida absorción 24h+ (400ml) - Nivea
   
   
   La Crema hidratante cara y cuerpo Nivea Care hidrata en profundidad la piel de todo el cuerpo sin dejar sensación grasa. 
   
   
   Crema de todo uso que nutre intensamente, se funde en la piel dejándola increíblemente suave durante 24 horas y sin residuo graso alguno. 
   
   
   Su innovadora fórmula se basa en una tecnología completamente nueva: la hidrodispersión de ceras. Las suaves hidroceras se funden de forma instantánea con la piel nada más aplicar la crema, absorbiéndose instantáneamente sin dejar sensación grasa y proporcionando una nutrición profunda de larga duración. Una crema universal para el cuidado de cara, cuerpo y manos. 
   
   
   Siente el efecto WOW en tu piel de Nivea Care hidratante cara y cuerpo, 100% nutritiva, 0% grasa. "
     ["link_rewrite"]=>
     string(47) "crema-hidratante-cara-y-cuerpo-nivea-care-400ml"
     ["meta_description"]=>
     string(158) "Crema Nivea Care es la crema ideal para el uso de toda la familia, ya que proporciona a la piel todo el cuidado que necesita.  Crema perfecta para uso diario."
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(59) "Oferta Crema hidratante Nivea Care rápida absorción 400ml"
     ["name"]=>
     string(82) "Crema hidratante cara y cuerpo Nivea Care rápida absorción 24h+  (400ml) - Nivea"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5821-17819"
     ["legend"]=>
     string(71) "Crema hidratante cara y cuerpo rápida absorción 24h+ Nivea Care 400ml"
     ["manufacturer_name"]=>
     string(5) "NIVEA"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(6) "cremas"
     ["link"]=>
     string(81) "https://nappy.es/cremas/5821-crema-hidratante-cara-y-cuerpo-nivea-care-400ml.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(3.897521)
     ["price_without_reduction"]=>
     float(4.330579)
     ["reduction"]=>
     float(0.433058)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "151112"
       ["id_specific_price_rule"]=>
       string(3) "213"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5821"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "1"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.100000"
       ["reduction_tax"]=>
       string(1) "0"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "48"
     }
     ["quantity_all_versions"]=>
     int(7)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   3,90 € 4,33 €
   Comprar
 * 2,76 € 3,07 € -10% En stock
   -10% Nuevo
   
   
   GEL DE DUCHA CUIDADO ÓLEO-NUTRITIVO CON ACEITE DE...
   
   Gel de ducha Cuidado Óleo–Nutritivo de la marca Dove con aceite de argán
   ofrece un cuidado corporal rico y cremoso que nutre en profundidad tu piel a
   la vez que limpia. Este gel de ducha está elaborado a base de aceite de argán
   y contiene una fórmula hidratante a base de una mezcla única de nutrientes
   naturales para la piel que te proporciona el mejor...
   
   array(83) {
     ["id_product"]=>
     string(4) "5820"
     ["id_supplier"]=>
     string(1) "0"
     ["id_manufacturer"]=>
     string(3) "234"
     ["id_category_default"]=>
     string(3) "952"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "0"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(13) "8720181200656"
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(7)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(2.76)
     ["wholesale_price"]=>
     string(8) "2.110000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(0) ""
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "0.550000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(3) "404"
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "1"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2024-01-10 13:04:01"
     ["date_upd"]=>
     string(19) "2024-02-01 11:23:53"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(1056) "
   
   
   ¿Buscas un gel de ducha que te aporte un poco más de cuidado personal a tu rutina diaria?
   
   
   El Gel Ducha Dove Cuidado Óleo–Nutritivo es un jabón líquido que transforma incluso la piel más seca en una sola ducha, dejándote una piel más suave e hidratada. Para obtener los mejores resultados cuando uses el gel Dove Cuidado Óleo–Nutritivo, solo tienes que poner una pequeña cantidad en una esponja o en las manos y aplicártelo en todo tu cuerpo masajeando antes de aclarar bien. Usa a diario este gel cuando te duches para disfrutar de una piel suave e hidratada. Para conservar el producto, debes mantenerlo en un lugar fresco y seco. Una vez abierto, utilizar el Dove Gel Cuidado Óleo–Nutritivo antes de 12 meses. La información que aparece en la página web puede diferir de la información que aparece en el etiquetado del producto. Por favor verifica siempre el etiquetado del producto. *El 97% de los ingredientes se descomponen en dióxido de carbono, agua y minerales (métodos de prueba 301, 302 y 310 de la OCDE). "
     ["description_short"]=>
     string(543) "
   
   Gel de ducha Cuidado Óleo–Nutritivo de la marca Dove con aceite de argán ofrece un cuidado corporal rico y cremoso que nutre en profundidad tu piel a la vez que limpia. Este gel de ducha está elaborado a base de aceite de argán y contiene una fórmula hidratante a base de una mezcla única de nutrientes naturales para la piel que te proporciona el mejor cuidado de Dove. Además, su fórmula es un 97% biodegradable* y no posee sulfatos SLES."
     ["link_rewrite"]=>
     string(38) "gel-ducha-cuidado-oleo-nutritivo-500ml"
     ["meta_description"]=>
     string(163) "Gel de ducha Dove que proporciona hidratación intensa y nutrición a la piel seca. con aceite de argán, con propiedades hidratantes y nutritivas. Contiene 500ml."
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(71) "Gel de ducha | Dove |cuidado óleo-nutritivo [ aceite de argán ] 500ml"
     ["name"]=>
     string(68) "Gel de ducha cuidado óleo-nutritivo con aceite de argán 500ml Dove"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5820-17817"
     ["legend"]=>
     string(63) "Gel de ducha cuidado óleo-nutritivo con aceite de argán 500ml"
     ["manufacturer_name"]=>
     string(4) "Dove"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(19) "gel-de-bano-y-jabon"
     ["link"]=>
     string(85) "https://nappy.es/gel-de-bano-y-jabon/5820-gel-ducha-cuidado-oleo-nutritivo-500ml.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(2.759504)
     ["price_without_reduction"]=>
     float(3.066116)
     ["reduction"]=>
     float(0.306612)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "148813"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5820"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "1"
       ["id_shop_group"]=>
       string(1) "1"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.100000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "48"
     }
     ["quantity_all_versions"]=>
     int(7)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   2,76 € 3,07 €
   Comprar
 * 3,42 € 3,80 € -10% En stock
   -10% Nuevo
   
   
   LIMPIA BIBERONES DE SILICONA CON LIMPIA TETINAS KIOKIDS
   
   El cepillo limpiabiberones de silicona Kiokids permite limpiar con facilidad
   el interior de biberones y otros vasos gracias a su mango de fácil agarre y
   su extremo de cerdas en silicona de alta calidad, más higiénico que otros
   materiales ya que no absorbe olores ni sabores, se mantiene inalterable y es
   apto para lavavajillas y esterilizador. Gracias a su...
   
   array(83) {
     ["id_product"]=>
     string(4) "5819"
     ["id_supplier"]=>
     string(1) "0"
     ["id_manufacturer"]=>
     string(3) "312"
     ["id_category_default"]=>
     string(3) "949"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "0"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(13) "3662332011238"
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(5)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(3.42)
     ["wholesale_price"]=>
     string(8) "1.400000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(6) "011238"
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "0.400000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(0) ""
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "0"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2023-12-28 14:36:53"
     ["date_upd"]=>
     string(19) "2024-02-01 11:23:53"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(946) "
   
   
   Características de limpia biberones de silicona con limpia tetinas Kiokids
   
   
    * Diseño de dos piezas.
    * Limpiador de tetinas diseñado especialmente para tetinas y biberones.
    * Cerdas de silicona.
    * Sin BPA. 
   
   
   
   
   
   
   video explicativo del articulo:
   
   
   
   
   
   
   otras indicaciones 
   
   
   
   
   
   
   
   
   
   
   
   "
     ["description_short"]=>
     string(723) "
   
   El cepillo limpiabiberones de silicona Kiokids permite limpiar con facilidad el interior de biberones y otros vasos gracias a su mango de fácil agarre y su extremo de cerdas en silicona de alta calidad, más higiénico que otros materiales ya que no absorbe olores ni sabores, se mantiene inalterable y es apto para lavavajillas y esterilizador.
   
   
   
   Gracias a su suavidad, evitamos arañazos en el interior del vaso.
   
   Incluye un cómodo accesorio para la limpieza del interior de las tetinas."
     ["link_rewrite"]=>
     string(33) "limpia-biberones-silicona-kiokids"
     ["meta_description"]=>
     string(153) "El cepillo limpia biberones de silicona Kiokids permite limpiar con facilidad el interior de biberones y otros vasos gracias a su mango de fácil agarre."
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(63) "Limpia biberones  [ silicona ] limpia tetina| Kiokids: nappy.es"
     ["name"]=>
     string(55) "Limpia biberones de silicona con limpia tetinas Kiokids"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5819-17825"
     ["legend"]=>
     string(36) "Limpia biberones de silicona Kiokids"
     ["manufacturer_name"]=>
     string(7) "KioKids"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(22) "calentadores-e-higiene"
     ["link"]=>
     string(83) "https://nappy.es/calentadores-e-higiene/5819-limpia-biberones-silicona-kiokids.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(3.421488)
     ["price_without_reduction"]=>
     float(3.801653)
     ["reduction"]=>
     float(0.380165)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "151347"
       ["id_specific_price_rule"]=>
       string(3) "294"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5819"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "1"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.100000"
       ["reduction_tax"]=>
       string(1) "0"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "48"
     }
     ["quantity_all_versions"]=>
     int(5)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   3,42 € 3,80 €
   Comprar
 * 1,44 € 1,60 € -10% En stock
   -10% Nuevo
   
   
   PINZA SUJETA CHUPETES DEL PRINCIPITO +0M KIOKIDS
   
   Para acompañar los chupetes del bebe, el sujetachupetes del principito Se
   sujetan a la ropita con una pinza y al chupete con una cinta con velcro, por
   lo que se adaptan a cualquier chupete con anilla. Con esta pinza, los
   chupetes de tu bebé nunca se perderán y siempre estarán limpios. Tu peque
   siempre lo llevará encima colgado en su camiseta para mayor...
   
   array(83) {
     ["id_product"]=>
     string(4) "5818"
     ["id_supplier"]=>
     string(1) "0"
     ["id_manufacturer"]=>
     string(3) "312"
     ["id_category_default"]=>
     string(3) "945"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "0"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(13) "8445344029430"
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(5)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(1.44)
     ["wholesale_price"]=>
     string(8) "0.990000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(6) "029430"
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "0.150000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(0) ""
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "0"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2023-12-28 13:47:36"
     ["date_upd"]=>
     string(19) "2024-01-12 11:16:09"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(288) "
   
   
   Recomendaciones:
   
   
   · Lavar antes y después de cada uso con agua limpia y jabón.
   · No utilizar productos abrasivos o disolventes.
   · Antes de cada uso, comprobar en su conjunto todo el broche para chupetes. Tírelo al primer signo de deterioro o desperfecto."
     ["description_short"]=>
     string(487) "
   
   Para acompañar los chupetes del bebe, el sujetachupetes del principito Se sujetan a la ropita con una pinza y al chupete con una cinta con velcro, por lo que se adaptan a cualquier chupete con anilla.
   
   
   Con esta pinza, los chupetes de tu bebé nunca se perderán y siempre estarán limpios. Tu peque siempre lo llevará encima colgado en su camiseta para mayor comodidad y movimiento."
     ["link_rewrite"]=>
     string(34) "pinza-sujetachupetes-el-principito"
     ["meta_description"]=>
     string(158) "Para acompañar los chupetes del bebe, Se sujetan a la ropita con una pinza y al chupete con una cinta con velcro, se adaptan a cualquier chupete con anilla. "
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(43) "Pinza | sujeta chupetes| principito kiokids"
     ["name"]=>
     string(48) "Pinza sujeta chupetes del principito +0m kiokids"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5818-17827"
     ["legend"]=>
     string(36) "Pinza sujeta chupetes del principito"
     ["manufacturer_name"]=>
     string(7) "KioKids"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(24) "chupetes-y-alimentadores"
     ["link"]=>
     string(86) "https://nappy.es/chupetes-y-alimentadores/5818-pinza-sujetachupetes-el-principito.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(1.442975)
     ["price_without_reduction"]=>
     float(1.603306)
     ["reduction"]=>
     float(0.160331)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "149110"
       ["id_specific_price_rule"]=>
       string(3) "294"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5818"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "1"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.100000"
       ["reduction_tax"]=>
       string(1) "0"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "48"
     }
     ["quantity_all_versions"]=>
     int(5)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   1,44 € 1,60 €
   Comprar
 * 4,40 € 4,88 € -10% En stock
   -10% Nuevo
   
   
   TAZA DE ENTRENAMIENTO EL PRINCIPITO 6M+ 270ML KIOKIDS
   
   La taza de entrenamiento esta ideada para bebés que aún no han desarrollado
   los dientes, su tetina STEP 1 en suave silicona de alta calidad ofrece la
   textura de los biberones, y flujo extra rápido a través de la succión,
   evitando derrames y permitiendo, junto a su sistema anticólico esta hecho de
   un material de alta calidad la cual tiene numerosas...
   
   array(83) {
     ["id_product"]=>
     string(4) "5817"
     ["id_supplier"]=>
     string(1) "0"
     ["id_manufacturer"]=>
     string(3) "312"
     ["id_category_default"]=>
     string(4) "1029"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "0"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(13) "8445344032669"
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(3)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(4.4)
     ["wholesale_price"]=>
     string(8) "3.200000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(6) "032669"
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "0.300000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(3) "404"
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "1"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2023-12-28 13:11:13"
     ["date_upd"]=>
     string(19) "2024-02-02 10:57:09"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(547) "
   
   
   recomendaciones:
   
   
   · Esterilizar antes del primer uso.
   · Lavar con agua limpia y jabón antes y después de cada uso.
   · No utilizar productos abrasivos o disolventes.
   · Apto para toda clase de esterilización y lavavajillas (sólo en bandeja superior). inspeccionar antes y después de cada uso la boquilla y demás componentes.
   · Apto para el lavavajillas.
   · Apto para el esterilizador.
   - Capacidad: 270ml"
     ["description_short"]=>
     string(1087) "
   
   La taza de entrenamiento esta ideada para bebés que aún no han desarrollado los dientes, su tetina STEP 1 en suave silicona de alta calidad ofrece la textura de los biberones, y flujo extra rápido a través de la succión, evitando derrames y permitiendo, junto a su sistema anticólico
   
   
   esta hecho de un material de alta calidad la cual tiene numerosas ventajas: no absorben olores ni sabores y su forma y textura se mantienen inalteradas con el uso y el contacto con otras sustancias. Son más resistentes a las altas temperaturas por lo que resultan aptas para limpieza en lavavajillas y esterilizador.
   
   
   esta taza  de entrenamiento  es una de las mejores para empezar la transición del biberón al vaso. Con ella, tu bebé aprenderá a beber solito. Es ligera y fácil de coger, gracias a sus asas en los laterales y su boquilla está diseñada para que le sea más fácil beber y no derrame líquido."
     ["link_rewrite"]=>
     string(51) "taza-de-entrenamiento-bebe-el-principito-6m-kiokids"
     ["meta_description"]=>
     string(158) "Esta taza de entrenamiento esta ideada para bebés que aún no han desarrollado los dientes, con tu tetina de lata calidad ofrece la textura de los biberones."
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(60) "Taza de entrenamiento [ El Principito ] 6M+ | 270ml| kiokids"
     ["name"]=>
     string(53) "Taza de entrenamiento el Principito 6M+ 270ml kiokids"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5817-17803"
     ["legend"]=>
     string(46) "TAZA DE ENTRENAMIENTO  BEBÉ EL PRINCIPITO 6M+"
     ["manufacturer_name"]=>
     string(7) "KioKids"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(15) "tazas-y-vajilla"
     ["link"]=>
     string(94) "https://nappy.es/tazas-y-vajilla/5817-taza-de-entrenamiento-bebe-el-principito-6m-kiokids.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(4.395868)
     ["price_without_reduction"]=>
     float(4.884298)
     ["reduction"]=>
     float(0.48843)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "151595"
       ["id_specific_price_rule"]=>
       string(3) "294"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5817"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "1"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.100000"
       ["reduction_tax"]=>
       string(1) "0"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "48"
     }
     ["quantity_all_versions"]=>
     int(3)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   4,40 € 4,88 €
   Comprar
 * 3,15 € 3,50 € -10% En stock
   -10% Nuevo
   
   
   BIBERÓN EL PRINCIPITO 240ML 6M+ KIOKIDS
   
   BIBERÓN EL PRINCIPITO 240ML 6m+ El biberón del principito viene con boca
   ancha para ofrecer mayor superficie de apoyo para los labios del bebé, así
   como facilidad el llenado o la limpieza, y sus tetinas son universales
   cuentan con sistema de ventilación anticólico, que permite conseguir un flujo
   constante de leche, compensando la salida de líquido con la...
   
   array(83) {
     ["id_product"]=>
     string(4) "5816"
     ["id_supplier"]=>
     string(1) "0"
     ["id_manufacturer"]=>
     string(3) "312"
     ["id_category_default"]=>
     string(3) "855"
     ["id_shop_default"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "0"
     ["stock_ficticio"]=>
     string(1) "1"
     ["tratamiento_lotes"]=>
     string(1) "0"
     ["online_only"]=>
     string(1) "0"
     ["ean13"]=>
     string(13) "8445344029447"
     ["upc"]=>
     string(0) ""
     ["ecotax"]=>
     string(8) "0.000000"
     ["quantity"]=>
     int(5)
     ["minimal_quantity"]=>
     string(1) "1"
     ["price"]=>
     float(3.15)
     ["wholesale_price"]=>
     string(8) "2.300000"
     ["unit_price_ratio"]=>
     string(8) "0.000000"
     ["additional_shipping_cost"]=>
     string(4) "0.00"
     ["unity"]=>
     string(0) ""
     ["reference"]=>
     string(6) "029447"
     ["supplier_reference"]=>
     string(0) ""
     ["location"]=>
     string(0) ""
     ["width"]=>
     string(8) "0.000000"
     ["height"]=>
     string(8) "0.000000"
     ["depth"]=>
     string(8) "0.000000"
     ["weight"]=>
     string(8) "0.250000"
     ["out_of_stock"]=>
     string(1) "2"
     ["quantity_discount"]=>
     string(1) "0"
     ["customizable"]=>
     string(1) "0"
     ["uploadable_files"]=>
     string(1) "0"
     ["text_fields"]=>
     string(1) "0"
     ["active"]=>
     string(1) "1"
     ["redirect_type"]=>
     string(0) ""
     ["id_product_redirected"]=>
     string(1) "0"
     ["available_for_order"]=>
     string(1) "1"
     ["available_date"]=>
     string(10) "0000-00-00"
     ["condition"]=>
     string(3) "new"
     ["show_price"]=>
     string(1) "1"
     ["indexed"]=>
     string(1) "0"
     ["visibility"]=>
     string(4) "both"
     ["cache_is_pack"]=>
     string(1) "0"
     ["cache_has_attachments"]=>
     string(1) "0"
     ["is_virtual"]=>
     string(1) "0"
     ["cache_default_attribute"]=>
     string(1) "0"
     ["date_add"]=>
     string(19) "2023-12-28 12:07:35"
     ["date_upd"]=>
     string(19) "2024-02-01 11:23:53"
     ["advanced_stock_management"]=>
     string(1) "0"
     ["id_tax_rules_group"]=>
     string(1) "2"
     ["pack_stock_type"]=>
     string(1) "3"
     ["id_shop"]=>
     string(1) "1"
     ["description"]=>
     string(1256) "
   
   
   recomendaciones:
   
   
   · No dejar expuesto a la luz solar directamente o a una fuente de calor, ni dejarlo en contacto con una solución desinfectante (esterilizante) por más tiempo del recomendado, puesto que puede dañar la tetina.
   · Esterilizar antes del primer uso durante 5 min. En agua hirviendo, esto es por razones de higiene.
   · Lavar con agua limpia y jabón antes y después de cada uso. No utilizar productos abrasivos o disolventes.
   · Inspeccionar antes y después de cada uso y tirar de la tetina en todas direcciones.
   · Desechar al primer signo de deterioro o fragilidad. Cambiar cada uno o dos meses por razones de seguridad e higiene.
   · Apto para el lavavajillas.
   · Apto para el esterilizador.
   
   
   
   Caracterìsticas:
   
   
   
    
   
   
   
   
   
   
   
   
   "
     ["description_short"]=>
     string(1219) "
   
   BIBERÓN EL PRINCIPITO 240ML 6m+
   
   
   El biberón del principito viene con boca ancha para ofrecer mayor superficie de apoyo para los labios del bebé, así como facilidad el llenado o la limpieza, y sus tetinas son universales
   
   
   cuentan con sistema de ventilación anticólico, que permite conseguir un flujo constante de leche, compensando la salida de líquido con la entrada de aire, reduciendo el riesgo de cólicos.
   
   
   sus tetinas son universales. Están fabricadas en suave silicona de alta calidad, ofreciendo las ventajas de este material: no absorben olores ni sabores y su forma y textura se mantienen inalteradas con el uso y el contacto con otras sustancias. Son más resistentes a las altas temperaturas
   
   
   
   Las tetinas son 3 posiciones. se podrá regular el flujo del líquido simplemente girando el biberón y orientando el número correspondiente hacia la nariz del bebé, siendo el 1 el flujo más lento, y el 3 el adecuado para líquidos más densos."
     ["link_rewrite"]=>
     string(30) "biberon-el-principito-240ml-6m"
     ["meta_description"]=>
     string(162) "El biberón del principito viene con boca ancha para ofrecer mayor superficie de apoyo para los labios del bebé, cuentan con sistema de ventilación anticólico."
     ["meta_keywords"]=>
     string(0) ""
     ["meta_title"]=>
     string(49) "biberón [ el principito ] 240ml | 6m+ | kiokids "
     ["name"]=>
     string(40) "biberón el principito 240ml 6m+ kiokids"
     ["available_now"]=>
     string(0) ""
     ["available_later"]=>
     string(0) ""
     ["id_image"]=>
     string(10) "5816-17799"
     ["legend"]=>
     string(32) "BIBERÓN EL PRINCIPITO 240ML 6m+"
     ["manufacturer_name"]=>
     string(7) "KioKids"
     ["new"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["id_product_attribute"]=>
     string(1) "0"
     ["allow_oosp"]=>
     int(0)
     ["category"]=>
     string(9) "biberones"
     ["link"]=>
     string(67) "https://nappy.es/biberones/5816-biberon-el-principito-240ml-6m.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(3.153719)
     ["price_without_reduction"]=>
     float(3.504132)
     ["reduction"]=>
     float(0.350413)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "149112"
       ["id_specific_price_rule"]=>
       string(3) "294"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5816"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "1"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.100000"
       ["reduction_tax"]=>
       string(1) "0"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "48"
     }
     ["quantity_all_versions"]=>
     int(5)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(0)
     ["pack"]=>
     int(0)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   3,15 € 3,50 €
   Comprar


LO MÁS VENDIDO

chevron_left chevron_right
 * 15,40 € 21,10 € -27% En stock
   -27%
   
   
   CAJA DE 88 UDS. TALLA 1 PAÑALES DODOT SENSITIVE...
   
   PAÑALES DODOT SENSITIVE TALLA 1  CAJA DE 88 UNIDADES. 2 PAQUETES DE 44
   PAÑALES . PRECIO UNITARIO POR PAÑAL: 0,2118 €/ud. Los pañales con la máxima
   absorción.  NUEVO FORMATO MEJORADO! Los pañales Dodot Sensitive de la talla 1
   están especialmente diseñados para el cuidado de la piel sensible del recién
   nacido. Dodot, es la principal marca reconocida por la...
   
   array(40) {
     ["id_product"]=>
     string(3) "427"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(31) "panales-dodot-sensitive-talla-1"
     ["name"]=>
     string(75) "Caja de 88 uds. Talla 1 Pañales Dodot Sensitive Recién Nacido  (2 a 5 kg)"
     ["description_short"]=>
     string(1276) "
   
   PAÑALES DODOT SENSITIVE TALLA 1 
   
   
   CAJA DE 88 UNIDADES. 2 PAQUETES DE 44 PAÑALES .
   
   
   PRECIO UNITARIO POR PAÑAL: 0,2118 €/ud.
   
   
   Los pañales con la máxima absorción.  NUEVO FORMATO MEJORADO!
   
   
   Los pañales Dodot Sensitive de la talla 1 están especialmente diseñados para el cuidado de la piel sensible del recién nacido.
   
   
   Dodot, es la principal marca reconocida por la calidad de sus productos.
   
   
   Ahora con el nuevo indicador de Humedad: La línea cambia de color si el pañal está húmedo para que sepas cuándo es el momento de cambiarlo.
   
   
   Los pañales Dodot son una garantía de seguridad y calidad para el cuidado de tu bebé.
   
   
   Fórmula mejorada para una máxima protección de la piel."
     ["id_category_default"]=>
     string(3) "790"
     ["id_image"]=>
     string(9) "427-14804"
     ["legend"]=>
     string(53) "PAÑAL TALLA 1 (DE 2 A 5 KG. ) DODOT SENSITIVE TALLA1"
     ["sales"]=>
     string(5) "55651"
     ["ean13"]=>
     string(14) "08006540170649"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(9) " F20X0029"
     ["category"]=>
     string(5) "dodot"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(1093)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "0"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(63) "https://nappy.es/dodot/427-panales-dodot-sensitive-talla-1.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(15.402397)
     ["price"]=>
     string(9) "15,40 €"
     ["price_without_reduction"]=>
     float(21.099174)
     ["reduction"]=>
     float(5.696777)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150641"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(3) "427"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.270000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(1093)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   15,40 € 21,10 €
   Comprar
 * 24,61 € 37,29 € -34% En stock
   -34%
   
   
   PAÑALES DE 116 UDS. TALLA 4 DODOT BEBÉ-SECO ( 9 A...
   
   Los pañales Dodot Talla 4 bebé-seco, son ideales para mantener a tu
   pequeño seco hasta 12 horas anti-fuga. Todo gracias a su nueva formula con
   una capa extra para mayor efectividad del pañal.  Mayor superficie para una
   rápida absorción. Formula mejorada, hasta con 12 horas de protección
   anti-fugas. Pulsando aquí puedes ver la gama más completa de Dodot...
   
   array(40) {
     ["id_product"]=>
     string(3) "430"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(39) "panal-dodot-talla-4-de-9-a-14-kg-etapas"
     ["name"]=>
     string(60) "Pañales de 116 uds. Talla 4 Dodot Bebé-Seco (  9 a 14 Kg )"
     ["description_short"]=>
     string(1115) "
   
   Los pañales Dodot Talla 4 bebé-seco, son ideales para mantener a tu pequeño seco hasta 12 horas anti-fuga. 
   
   
   Todo gracias a su nueva formula con una capa extra para mayor efectividad del pañal. 
   
   
   Mayor superficie para una rápida absorción.
   
   
   Formula mejorada, hasta con 12 horas de protección anti-fugas.
   
   
   Pulsando aquí puedes ver la gama más completa de Dodot adaptando así la necesidad de tu bebé por completo.  
   
   
   
   
   
   Contiene:
   
   
   - Caja con 116 unidades de pañales Dodot bebé-seco Talla 4.
   
   
   - 2 paquetes con 58 pañales Dodot bebé-seco.
   
   
   PRECIO UNITARIO POR PAÑAL: 0,2567€
   
   
   
   
   
   "
     ["id_category_default"]=>
     string(3) "790"
     ["id_image"]=>
     string(9) "430-15463"
     ["legend"]=>
     string(55) "PAÑAL TALLA 4   (DE 9 a 14 KG / 116 Unidades )   DODOT"
     ["sales"]=>
     string(5) "48544"
     ["ean13"]=>
     string(14) "08006540618844"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(8) "F20X0006"
     ["category"]=>
     string(5) "dodot"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(1240)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "0"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "0"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(71) "https://nappy.es/dodot/430-panal-dodot-talla-4-de-9-a-14-kg-etapas.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(24.610909)
     ["price"]=>
     string(9) "24,61 €"
     ["price_without_reduction"]=>
     float(37.289256)
     ["reduction"]=>
     float(12.678347)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "148718"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(3) "430"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.340000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(1240)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   24,61 € 37,29 €
   Comprar
 * 23,47 € 43,47 € -46% En stock
   -46%
   
   
   CAJA DE 116 UDS. TALLA 2 PAÑALES DODOT SENSITIVE ( 4...
   
   PAÑALES DODOT SENSITIVE TALLA 2 para recién nacido. Caja de 116 unidades. 2
   PAQUETES DE 58 PAÑALES precio unitario por pañal: 0,244€ Los pañales Dodot
   Sensitive ofrecen la máxima protección de Dodot para la delicada piel del
   recién nacido. Con indicador de humedad, cambia de color si el pañal está
   húmedo. Los pañales dodot sensitive son la mejor opción...
   
   array(40) {
     ["id_product"]=>
     string(4) "2523"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(30) "panales-dodotsensitive-talla-2"
     ["name"]=>
     string(62) "Caja de 116 uds. Talla 2 Pañales Dodot Sensitive ( 4 a 8 kg )"
     ["description_short"]=>
     string(774) "
   
   PAÑALES DODOT SENSITIVE TALLA 2 para recién nacido.
   
   
   Caja de 116 unidades. 2 PAQUETES DE 58 PAÑALES
   
   
   precio unitario por pañal: 0,244€
   
   
   Los pañales Dodot Sensitive ofrecen la máxima protección de Dodot para la delicada piel del recién nacido.
   
   
   Con indicador de humedad, cambia de color si el pañal está húmedo. Los pañales dodot sensitive son la mejor opción para los papis que buscan la mejor calidad en DODOT para el cuidado de sus bebés.
   
   
   "
     ["id_category_default"]=>
     string(3) "790"
     ["id_image"]=>
     string(10) "2523-16921"
     ["legend"]=>
     string(55) "DODOT SENSITIVE T2 R.NACIDO C/ 116Unidades  DE 4 a 8 KG"
     ["sales"]=>
     string(5) "34076"
     ["ean13"]=>
     string(14) "04015400846765"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(9) "F20X0016S"
     ["category"]=>
     string(5) "dodot"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(1026)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "0"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(63) "https://nappy.es/dodot/2523-panales-dodotsensitive-talla-2.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(23.47438)
     ["price"]=>
     string(9) "23,47 €"
     ["price_without_reduction"]=>
     float(43.471074)
     ["reduction"]=>
     float(19.996694)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150532"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "2523"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.460000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(1026)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   23,47 € 43,47 €
   Comprar
 * 24,30 € 32,83 € -26% En stock
   -26%
   
   
   PAÑALES 108 UDS, TALLA 5 DODOT BEBÉ-SECO ( DE 11 A...
   
   Pañales 108 Uds, Talla 5 Bebé-Seco ( De 11 a 16 Kg) Los pañales Dodot Talla 5
   bebé-seco, gracias a su exclusiva Capa Extra Seco, absorben el pipí de un
   modo más rápido, además tiene mayor superficie de absorción. Hasta 12 horas
   seco, para mantener una piel más sana y cuidada. Pulsando aquí puedes ver la
   gama más completa de Dodot adaptando así la...
   
   array(40) {
     ["id_product"]=>
     string(3) "431"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(28) "panales-dodot-talla-5-etapas"
     ["name"]=>
     string(59) "Pañales 108 Uds, Talla 5 Dodot Bebé-Seco ( De 11 a 16 Kg)"
     ["description_short"]=>
     string(1212) "
   
   Pañales 108 Uds, Talla 5 Bebé-Seco ( De 11 a 16 Kg)
   
   
   Los pañales Dodot Talla 5 bebé-seco, gracias a su exclusiva Capa Extra Seco, absorben el pipí de un modo más rápido, además tiene mayor superficie de absorción.
   
   
    Hasta 12 horas seco, para mantener una piel más sana y cuidada.
   
   
   
   
   
   Pulsando aquí puedes ver la gama más completa de Dodot adaptando así la necesidad de tu bebé por completo.  
   
   
   
   
   
   Contiene:
   
   
   - Caja con 108 unidades de pañales Dodot bebé-seco Talla 5
   
   
   - 2 paquetes con 54 pañales Dodot bebé-seco.
   
   
   
   
   
   PRECIO UNITARIO POR PAÑAL: 0,2720€"
     ["id_category_default"]=>
     string(3) "790"
     ["id_image"]=>
     string(9) "431-15464"
     ["legend"]=>
     string(54) "PAÑAL TALLA 5  ( DE 11 a 16 KG / 108 Unidades) DODOT "
     ["sales"]=>
     string(5) "25438"
     ["ean13"]=>
     string(14) "08006540618875"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(8) "F20X0007"
     ["category"]=>
     string(5) "dodot"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(985)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "0"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(60) "https://nappy.es/dodot/431-panales-dodot-talla-5-etapas.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(24.297686)
     ["price"]=>
     string(9) "24,30 €"
     ["price_without_reduction"]=>
     float(32.834711)
     ["reduction"]=>
     float(8.537025)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150533"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(3) "431"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.260000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(985)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   24,30 € 32,83 €
   Comprar
 * 19,34 € 26,13 € -26% En stock
   -26%
   
   
   TOALLITAS DODOT SENSITIVE 810 UDS (CAJA DE 15...
   
   Toallitas Dodot Sensitive 810 UDS (15 paquetes) - Dodot Las Toallitas Dodot
   Sensitive, gracias a su loción exclusiva, recupera rápidamente el pH natural
   de la piel del bebé, ayudando así a prevenir irritaciones. Además, su nuevo
   tejido, más grueso y con grabados, proporciona una limpieza más suave para la
   piel más sensible.  Se pueden usar desde el primer...
   
   array(40) {
     ["id_product"]=>
     string(4) "1125"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(25) "toallitas-dodot-sensitive"
     ["name"]=>
     string(63) "Toallitas Dodot Sensitive 810 UDS (Caja de 15 paquetes) - Dodot"
     ["description_short"]=>
     string(1049) "
   
   
   Toallitas Dodot Sensitive 810 UDS (15 paquetes) - Dodot
   
   
   Las Toallitas Dodot Sensitive, gracias a su loción exclusiva, recupera rápidamente el pH natural de la piel del bebé, ayudando así a prevenir irritaciones. Además, su nuevo tejido, más grueso y con grabados, proporciona una limpieza más suave para la piel más sensible. 
   
   
   Se pueden usar desde el primer día ya que están especialmente diseñadas para la piel del recién nacido. Su loción ayuda a prevenir las irritaciones creadas por el roce del pañal. Su textura gruesa y suave limpia de manera eficaz la piel.  
   
   
   Han sido testadas dermatológicamente, no tienen perfume y contienen un 0% de fenoxietanol, parabenos y alcohol.
   
   
   Gracias al diseño de apertura a través de una tapa dura, las toallitas se mantienen húmedas durante mucho más tiempo.
   
   
   "
     ["id_category_default"]=>
     string(3) "793"
     ["id_image"]=>
     string(10) "1125-16750"
     ["legend"]=>
     string(26) "TOALLITAS  DODOT SENSITIVE"
     ["sales"]=>
     string(5) "24270"
     ["ean13"]=>
     string(14) "04015400770787"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(8) "D3Dx0011"
     ["category"]=>
     string(9) "toallitas"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(548)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "2"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(62) "https://nappy.es/toallitas/1125-toallitas-dodot-sensitive.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(19.337851)
     ["price"]=>
     string(9) "19,34 €"
     ["price_without_reduction"]=>
     float(26.132231)
     ["reduction"]=>
     float(6.79438)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150535"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "1125"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.260000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(548)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   19,34 € 26,13 €
   Comprar
 * 37,43 € 55,87 € -33% En stock
   -33%
   
   
   PAÑALES 186 UDS, TALLA 3 DODOT BEBÉ-SECO ( DE 6 A 10...
   
   PAÑALES DODOT TALLA 3 Los pañales Dodot Talla 3 bebé-seco, son ideales para
   mantener a tu pequeño seco hasta 12 horas anti-fuga. Todo gracias a su nueva
   formula con una capa extra para mayor efectividad del pañal.  Mayor
   superficie para una mayor absorción y aumentando así la rapidez del pañal. 
   Pulsando aquí puedes ver la gama más completa de Dodot...
   
   array(40) {
     ["id_product"]=>
     string(3) "429"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(32) "panal-talla-3-de-6-a-10-kg-dodot"
     ["name"]=>
     string(59) "Pañales 186 Uds, Talla 3 Dodot Bebé-Seco ( De 6 a 10 KG )"
     ["description_short"]=>
     string(1288) "
   
   
   PAÑALES DODOT TALLA 3
   
   
   Los pañales Dodot Talla 3 bebé-seco, son ideales para mantener a tu pequeño seco hasta 12 horas anti-fuga.
   
   
    Todo gracias a su nueva formula con una capa extra para mayor efectividad del pañal. 
   
   
   Mayor superficie para una mayor absorción y aumentando así la rapidez del pañal. 
   
   
   Pulsando aquí puedes ver la gama más completa de Dodot adaptando así la necesidad de tu bebé por completo.  
   
   
   Contiene:
   
   
   - Caja con 186 unidades de pañales Dodot bebé-seco Talla 3
   
   
   - 3 paquetes con 62 pañales Dodot bebé-seco.
   
   
   PRECIO UNITARIO POR PAÑAL: 0,2435€
   
   
   "
     ["id_category_default"]=>
     string(3) "790"
     ["id_image"]=>
     string(9) "429-15462"
     ["legend"]=>
     string(54) "TALLA 3  PAÑAL  DODOT (DE 6 a 10 KG / 186 Unidades)  "
     ["sales"]=>
     string(5) "17065"
     ["ean13"]=>
     string(14) "08006540618813"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(8) "f20x0005"
     ["category"]=>
     string(5) "dodot"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(307)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "0"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(64) "https://nappy.es/dodot/429-panal-talla-3-de-6-a-10-kg-dodot.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(37.431405)
     ["price"]=>
     string(9) "37,43 €"
     ["price_without_reduction"]=>
     float(55.867769)
     ["reduction"]=>
     float(18.436364)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "148313"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(3) "429"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.330000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(307)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   37,43 € 55,87 €
   Comprar
 * 5,24 € 6,31 € -17% En stock
   -17% Nuevo
   
   
   TOALLITAS DODOT AQUA PURE 144 UDS (PACK 3 PAQUETES...
   
   Toallitas Dodot Aqua Pure 144 Uds (Pack 3 paquetes de 48uds) - Dodot Las
   toallitas Aqua Pure Dodot están elaboradas con un 99% de agua para una
   limpieza delicada de la piel de tu bebé. El 1% restante incluye ingredientes
   delicados con la piel que ayudan a recuperar el pH natural y previenen de
   irritaciones. Además, contienen algodón orgánico para que el...
   
   array(40) {
     ["id_product"]=>
     string(4) "5361"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(39) "toallitas-dodot-aqua-pure-144-toallitas"
     ["name"]=>
     string(68) "Toallitas Dodot Aqua Pure 144 Uds (Pack 3 paquetes de 48uds) - Dodot"
     ["description_short"]=>
     string(945) "
   
   
   Toallitas Dodot Aqua Pure 144 Uds (Pack 3 paquetes de 48uds) - Dodot
   
   
   Las toallitas Aqua Pure Dodot están elaboradas con un 99% de agua para una limpieza delicada de la piel de tu bebé.
   
   
   El 1% restante incluye ingredientes delicados con la piel que ayudan a recuperar el pH natural y previenen de irritaciones. Además, contienen algodón orgánico para que el contacto con la piel del bebé sea muy suave.
   
   
   Estas toallitas son apropiadas para la piel desde el primer día y han sido testadas dermatológicamente. No contienen perfume, alcohol, fenoxietanol y parabenos.
   
   
   Los paquetes de éste formato, vienen con la tapa de plástico dispensadora. Contiene 3 paquetes de toallitas. Cada uno tiene 48 toallitas, un total de 144 unidades."
     ["id_category_default"]=>
     string(3) "793"
     ["id_image"]=>
     string(10) "5361-15823"
     ["legend"]=>
     string(66) "Toallitas Dodot 144 Unidades Aqua Pure (Caja 3 paquetes de 48 uds)"
     ["sales"]=>
     string(5) "11360"
     ["ean13"]=>
     string(13) "8001841115528"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(0) ""
     ["category"]=>
     string(9) "toallitas"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(49)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "2"
     ["new"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(76) "https://nappy.es/toallitas/5361-toallitas-dodot-aqua-pure-144-toallitas.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(5.240662)
     ["price"]=>
     string(8) "5,24 €"
     ["price_without_reduction"]=>
     float(6.31405)
     ["reduction"]=>
     float(1.073389)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "138493"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5361"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.170000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(49)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   5,24 € 6,31 €
   Comprar
 * 37,26 € 50,35 € -26% En stock
   -26%
   
   
   PAÑALES DE 144 UDS. TALLA 6 DODOT BEBÉ-SECO (13 - 19...
   
   Los pañales Dodot Talla 6 bebé-seco, son ideales para mantener a tu pequeño
   seco hasta 12 horas. Todo gracias a su nueva formula anti-fugas con una capa
   extra para mayor efectividad del pañal.  Mayor superficie para una mayor
   absorción y aumentando así la rapidez del pañal.  Pulsando aquí puedes ver la
   gama más completa de Dodot adaptando así la...
   
   array(40) {
     ["id_product"]=>
     string(3) "432"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(48) "panales-144-uds-talla-6-dodot-bebe-seco-13-19-kg"
     ["name"]=>
     string(59) "Pañales de 144 Uds. Talla 6 Dodot Bebé-Seco (13 - 19 kg.)"
     ["description_short"]=>
     string(1149) "
   
   Los pañales Dodot Talla 6 bebé-seco, son ideales para mantener a tu pequeño seco hasta 12 horas. 
   
   
   Todo gracias a su nueva formula anti-fugas con una capa extra para mayor efectividad del pañal. 
   
   
   Mayor superficie para una mayor absorción y aumentando así la rapidez del pañal. 
   
   
   Pulsando aquí puedes ver la gama más completa de Dodot adaptando así la necesidad de tu bebé por completo.
   
   
   
   Contiene:
   
   
    * Caja con 144 unidades de pañales Dodot bebé-seco Talla 6
    * 4 paquetes con 36 pañales en cada paquete de bebé-seco Dodot.
   
   
   PRECIO PAÑAL: 0.313 €/ud"
     ["id_category_default"]=>
     string(3) "790"
     ["id_image"]=>
     string(9) "432-16928"
     ["legend"]=>
     string(54) "PAÑAL TALLA 6 [ MÁS DE 13 - 19KG. ] DODOT - Nappy.es"
     ["sales"]=>
     string(4) "9900"
     ["ean13"]=>
     string(14) "08006540854433"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(8) "F20X0017"
     ["category"]=>
     string(5) "dodot"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(393)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "0"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(80) "https://nappy.es/dodot/432-panales-144-uds-talla-6-dodot-bebe-seco-13-19-kg.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(37.256859)
     ["price"]=>
     string(9) "37,26 €"
     ["price_without_reduction"]=>
     float(50.347107)
     ["reduction"]=>
     float(13.090248)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "150534"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(3) "432"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.260000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(393)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   37,26 € 50,35 €
   Comprar
 * 29,36 € 38,13 € -23% En stock
   -23% Nuevo
   
   
   TOALLITAS DODOT AQUA PURE 864UDS, (CAJA DE 18...
   
   Toallitas Dodot Aqua Pure 864Uds, (Pack de 18 paquetes de 48Uds) - Dodot  Las
   toallitas Aqua Pure Dodot están elaboradas con un 99% de agua para una
   limpieza delicada de la piel de tu bebé. El 1% restante incluye ingredientes
   delicados con la piel que ayudan a recuperar el pH natural y previenen de
   irritaciones. Además, contienen algodón orgánico para que...
   
   array(40) {
     ["id_product"]=>
     string(4) "5372"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(55) "toallitas-dodot-864-unidades-aqua-pure-caja-18-paquetes"
     ["name"]=>
     string(72) "Toallitas Dodot Aqua Pure 864Uds, (Caja de 18 paquetes de 48Uds) - Dodot"
     ["description_short"]=>
     string(949) "
   
   
   Toallitas Dodot Aqua Pure 864Uds, (Pack de 18 paquetes de 48Uds) - Dodot 
   
   
   Las toallitas Aqua Pure Dodot están elaboradas con un 99% de agua para una limpieza delicada de la piel de tu bebé. El 1% restante incluye ingredientes delicados con la piel que ayudan a recuperar el pH natural y previenen de irritaciones. Además, contienen algodón orgánico para que el contacto con la piel del bebé sea muy suave.
   
   
   Estas toallitas son apropiadas para la piel desde el primer día y han sido testadas dermatológicamente. No contienen perfume, alcohol, fenoxietanol y parabenos.
   
   
   Los paquetes de éste formato, vienen con la tapa de plástico dispensadora. Contiene 18 paquetes de 48 unidades cada uno, es decir 864 toallitas en total."
     ["id_category_default"]=>
     string(3) "793"
     ["id_image"]=>
     string(10) "5372-15849"
     ["legend"]=>
     string(67) "Toallitas Dodot 864 Unidades Aqua Pure (Caja 18 paquetes de 48 uds)"
     ["sales"]=>
     string(4) "8752"
     ["ean13"]=>
     string(14) "08001841115511"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(8) "D3DX0206"
     ["category"]=>
     string(9) "toallitas"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(326)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "2"
     ["new"]=>
     string(1) "1"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(92) "https://nappy.es/toallitas/5372-toallitas-dodot-864-unidades-aqua-pure-caja-18-paquetes.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(29.361818)
     ["price"]=>
     string(9) "29,36 €"
     ["price_without_reduction"]=>
     float(38.132231)
     ["reduction"]=>
     float(8.770413)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "138494"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "5372"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.230000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(326)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   29,36 € 38,13 €
   Comprar
 * 1,30 € 1,41 € -8% En stock
   -8%
   
   
   TOALLITAS DODOT ETAPAS. 64 UDS. - DODOT
   
   Toallitas Dodot Etapas - Dodot Con las Toallitas Dodot Etapas, tendrás
   limpieza e hidratación para el bebé en cualquier momento de su desarrollo.
   Gracias a su exclusiva textura con ondas deslizantes y a sus fibras
   compactas, limpia de manera rápida y eficaz en cada pasada, respetando la
   piel del bebé. La exclusiva loción dermoprotectora de Dodot ayuda a...
   
   array(40) {
     ["id_product"]=>
     string(4) "3578"
     ["id_product_attribute"]=>
     int(0)
     ["link_rewrite"]=>
     string(38) "dodot-toallitas-etapas-64-uds-recambio"
     ["name"]=>
     string(39) "Toallitas Dodot Etapas. 64 uds. - Dodot"
     ["description_short"]=>
     string(1017) "
   
   
   
   
   Toallitas Dodot Etapas - Dodot
   
   
   Con las Toallitas Dodot Etapas, tendrás limpieza e hidratación para el bebé en cualquier momento de su desarrollo.
   
   
   Gracias a su exclusiva textura con ondas deslizantes y a sus fibras compactas, limpia de manera rápida y eficaz en cada pasada, respetando la piel del bebé.
   
   
   La exclusiva loción dermoprotectora de Dodot ayuda a proteger la piel y al mantener su grado de hidratación natural.
   
   
   
   
   
   Con la línea de pañales Dodot complementa el cuidado de la piel de tu bebé con su nueva fórmula de Absorción 3D que garantiza hasta 12 horas de sequedad.
   
   
   El paquete de toallitas viene con una nueva tapita de cartón para ayudar a su conservación. Cada paquete contiene 64 toallitas.
   
   "
     ["id_category_default"]=>
     string(3) "793"
     ["id_image"]=>
     string(10) "3578-16248"
     ["legend"]=>
     string(39) "DODOT TOALLITAS ETAPAS 64 Uds. Recambio"
     ["sales"]=>
     string(4) "7867"
     ["ean13"]=>
     string(13) "8001090134226"
     ["upc"]=>
     string(0) ""
     ["reference"]=>
     string(7) "8042686"
     ["category"]=>
     string(9) "toallitas"
     ["show_price"]=>
     string(1) "1"
     ["available_for_order"]=>
     string(1) "1"
     ["quantity"]=>
     int(188)
     ["customizable"]=>
     string(1) "0"
     ["minimal_quantity"]=>
     string(1) "1"
     ["out_of_stock"]=>
     string(1) "2"
     ["new"]=>
     string(1) "0"
     ["on_sale"]=>
     string(1) "1"
     ["product_attribute_minimal_quantity"]=>
     NULL
     ["allow_oosp"]=>
     int(0)
     ["link"]=>
     string(75) "https://nappy.es/toallitas/3578-dodot-toallitas-etapas-64-uds-recambio.html"
     ["attribute_price"]=>
     int(0)
     ["price_tax_exc"]=>
     float(1.300165)
     ["price"]=>
     string(8) "1,30 €"
     ["price_without_reduction"]=>
     float(1.413223)
     ["reduction"]=>
     float(0.113058)
     ["specific_prices"]=>
     array(19) {
       ["id_specific_price"]=>
       string(6) "138496"
       ["id_specific_price_rule"]=>
       string(1) "0"
       ["id_cart"]=>
       string(1) "0"
       ["id_product"]=>
       string(4) "3578"
       ["id_product_attribute"]=>
       string(1) "0"
       ["id_shop"]=>
       string(1) "0"
       ["id_shop_group"]=>
       string(1) "0"
       ["id_currency"]=>
       string(1) "0"
       ["id_country"]=>
       string(1) "0"
       ["id_group"]=>
       string(1) "0"
       ["id_customer"]=>
       string(1) "0"
       ["price"]=>
       string(9) "-1.000000"
       ["from_quantity"]=>
       string(1) "1"
       ["reduction"]=>
       string(8) "0.080000"
       ["reduction_tax"]=>
       string(1) "1"
       ["reduction_type"]=>
       string(10) "percentage"
       ["from"]=>
       string(19) "0000-00-00 00:00:00"
       ["to"]=>
       string(19) "0000-00-00 00:00:00"
       ["score"]=>
       string(2) "32"
     }
     ["quantity_all_versions"]=>
     int(188)
     ["features"]=>
     array(0) {
     }
     ["attachments"]=>
     array(0) {
     }
     ["virtual"]=>
     int(1)
     ["pack"]=>
     bool(false)
     ["packItems"]=>
     array(0) {
     }
     ["nopackprice"]=>
     int(0)
     ["customization_required"]=>
     bool(false)
     ["rate"]=>
     float(0)
     ["tax_name"]=>
     string(0) ""
   }
   
   
   1,30 € 1,41 €
   Comprar

 * 
 * 
 * 


OPINIONES

 * Ana maria 04-10-2023
   
   Producto Cajita Portachupetes Dummy Holder Box Jané
   
   Para mantener guardados y limpios los chupetes

 * ANA 02-10-2023
   
   Producto Caja de 88 uds. Talla 1 Pañales Dodot Sensitive R...
   
   Es la pàgina en la que los pañales son màs baratos! El envio es rapidisimo.
   Sin duda mà...

 * Kathalina 02-10-2023
   
   Producto Almirón Advance 2 1200gr leche fórmula Almirón
   
   Muy bueno y buen precio

 * Israel 02-10-2023
   
   Producto Caja de 116 uds. Talla 2 Pañales Dodot Sensitive ...
   
   Suelen venir de un día para otro todo bien

VER TODAS LAS OPINIONES


NOTICIAS

Feb 13, 2024


CÓMO CELEBRAR SAN VALENTÍN CON TU BEBÉ

Cómo celebrar San Valentín con tu bebé
San Valentín está a la vuelta de la esquina y, si has tenido un bebé hace poco,
puede que te hayas preguntado cómo...

Leer más
Feb 8, 2024


PLANES PARA HACER EN CARNAVAL CON NIÑOS

Planes para hacer en carnaval con niños
El carnaval es una fiesta llena de alegría en la que los niños se lo pasan en
grande. Los disfraces, los colores y la...

Leer más
Feb 6, 2024


MANUALIDADES PARA HACER CON TU PEQUE EN CARNAVAL

Manualidades para hacer con tu peque en carnaval
El carnaval es una fiesta colorida y llena de diversión que les encanta a los
peques de la casa. A lo largo del...

Leer más

BLOG
Envío gratuito 24/48h En compras superiores a 65€. En toda la península.
Pago seguro Sistema de compra segura que se adapta a ti.
Miles de opiniones Lo que opinan nuestros clientes.

SUSCRÍBETE A NUESTRA NEWSLETTER



Te informaremos de todas las novedades, ofertas y promociones de Nappy.es.

OK

 * Facebook
 * Twitter
 * Youtube
 * Instagram


 * 915 124 174
 * 654 854 183
 * Envíanos un email
 * Lunes a viernes de 9:30 a 17:30h

INFORMACIÓN

 * Promociones
 * Sobre
 * por que Nappy

LEGAL

 * Entrega
 * Aviso legal
 * Pago seguro
 * Política de privacidad
 * Política de cookies

MI CUENTA

 * Mis pedidos
 * Club Nappy
 * Mis direcciones
 * Mis datos personales
 * Mis vales


© 2023 ENAPPY S.L. - CIF:B82515073. Todos los derechos reservados.
Powered by Doofinder


1