↑
↓
document.addEventListener("DOMContentLoaded", function () {
/* ---------------------------
GALERÍA: CAMBIO DE IMÁGENES
----------------------------*/
var thumbs = document.querySelectorAll(".thumb-img");
var mainWrapper = document.getElementById("main-image");
var mainImg = mainWrapper ? mainWrapper.querySelector("img") : null;
if (mainImg && thumbs.length > 0) {
thumbs.forEach(function (thumb, index) {
thumb.style.cursor = "pointer";
thumb.addEventListener("click", function () {
var newSrc = thumb.getAttribute("data-img");
if (newSrc) {
mainImg.src = newSrc;
mainImg.removeAttribute("srcset");
mainImg.removeAttribute("data-src");
mainImg.removeAttribute("data-srcset");
}
});
});
}
/* ---------------------------
NAVEGACIÓN VERTICAL DE MINIATURAS
----------------------------*/
var scrollContainer = document.querySelector('.custom-thumbnails-scroll');
var arrowUp = document.querySelector('.arrow-up');
var arrowDown = document.querySelector('.arrow-down');
var thumbsArr = Array.prototype.slice.call(thumbs);
var currentIndex = 0;
function showImageAt(i) {
if (!mainImg || !thumbsArr[i]) return;
var newSrc = thumbsArr[i].getAttribute("data-img");
if (newSrc) {
mainImg.src = newSrc;
mainImg.removeAttribute("srcset");
mainImg.removeAttribute("data-src");
mainImg.removeAttribute("data-srcset");
}
if (scrollContainer) {
scrollContainer.scrollTo({
top: thumbsArr[i].offsetTop - scrollContainer.offsetTop,
behavior: "smooth"
});
}
currentIndex = i;
}
thumbsArr.forEach(function (thumb, i) {
thumb.addEventListener("click", function () {
showImageAt(i);
});
});
if (arrowUp) {
arrowUp.addEventListener("click", function () {
if (currentIndex > 0) showImageAt(currentIndex - 1);
});
}
if (arrowDown) {
arrowDown.addEventListener("click", function () {
if (currentIndex < thumbsArr.length - 1) showImageAt(currentIndex + 1);
});
}
showImageAt(0);
/* ---------------------------
ZOOM AL PASAR EL MOUSE
----------------------------*/
var wrapper = document.querySelector('.zoom-wrapper');
var image = wrapper ? wrapper.querySelector('.zoomable-image img') : null;
if (wrapper && image) {
wrapper.addEventListener('mousemove', function (e) {
var rect = wrapper.getBoundingClientRect();
var x = ((e.clientX - rect.left) / rect.width) * 100;
var y = ((e.clientY - rect.top) / rect.height) * 100;
image.style.transformOrigin = x + "% " + y + "%";
image.style.transform = "scale(2)";
});
wrapper.addEventListener('mouseleave', function () {
image.style.transform = "scale(1)";
image.style.transformOrigin = "center center";
});
}
});
Cómoda Nara
- + 100 Calificaciones
La Cómoda Nara funde estilo artesanal y funcionalidad equilibrada. Su estructura en mango sólido o acabados con efecto lavado y frentes en caña tejida ofrecen contraste textural con un aire natural y refinado.
Dimensiones generales
Ancho: 58″.
Profundidad: 17″.
Altura: 31.5″.
$1,999.99
Características Destacadas
✅ Seis cajones amplios para organizar ropa, accesorios o documentos.
✅ Frentes de caña tejida que aportan ligereza visual y textura orgánica.
✅ Madera maciza con construcción robusta que garantiza durabilidad.
✅ Estética versátil que se adapta a ambientes rústicos, boho o contemporáneos.
💎 La Cómoda Nara no es solo almacenamiento: es una pieza con carácter que aporta elegancia sobria y presencia en cada espacio de descanso.
Productos Vistos Recientemente
Productos Relacionados
Productos relacionados
-
Cama Elva
$1,899.99 - $2,399.99Rango de precios: desde $1,899.99 hasta $2,399.99 Seleccionar opciones Este producto tiene múltiples variantes. Las opciones se pueden elegir en la página de producto -
Cama Firenze
$1,099.99 - $1,599.99Rango de precios: desde $1,099.99 hasta $1,599.99 Seleccionar opciones Este producto tiene múltiples variantes. Las opciones se pueden elegir en la página de producto -
Cama Royal
$1,899.99 - $2,499.99Rango de precios: desde $1,899.99 hasta $2,499.99 Seleccionar opciones Este producto tiene múltiples variantes. Las opciones se pueden elegir en la página de producto -
Cama Bellagio
$1,099.99 - $1,599.99Rango de precios: desde $1,099.99 hasta $1,599.99 Seleccionar opciones Este producto tiene múltiples variantes. Las opciones se pueden elegir en la página de producto

















