199,99 €
199,99 €
La Mochila Nalu es parte de la línea La Flor del Cardón. Al ser sin forrar es un articulo liviano y amoldable para usar todos los días.
/* CTA estilos */
.cta-enlace-claro {
font-size: 14px;
font-weight: 500;
color: #333;
text-decoration: none;
border-bottom: 1px solid #999;
padding-bottom: 2px;
transition: all 0.3s ease;
display: inline-block;
position: relative;
}
.cta-enlace-claro:hover {
color: #000;
border-bottom-color: #000;
}
.cta-enlace-claro .flecha {
font-size: 13px;
margin-left: 4px;
transition: transform 0.3s ease;
display: inline-block;
}
.cta-enlace-claro:hover .flecha {
transform: translateX(3px);
}
/* Modal estilos */
.modal {
display: none; /* oculto por defecto */
position: fixed;
z-index: 9999;
padding-top: 40px;
left: 0; top: 0;
width: 100%; height: 100%;
overflow: hidden;
background-color: rgba(0,0,0,0.6);
}
.modal-contenido {
background-color: #fff;
margin: auto;
padding: 0;
border-radius: 10px;
width: 80%;
height: 80%;
position: relative;
box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.modal-contenido iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 10px;
}
.cerrar {
position: absolute;
top: 8px; right: 15px;
color: #333;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.cerrar:hover { color: #000; }
// abrir modal
document.getElementById(“abrirModal”).onclick = function(e) {
e.preventDefault();
document.getElementById(“modal-cuero”).style.display = “block”;
}
// cerrar modal
document.querySelector(“.cerrar”).onclick = function() {
document.getElementById(“modal-cuero”).style.display = “none”;
}
// cerrar si clickea afuera
window.onclick = function(event) {
if (event.target == document.getElementById(“modal-cuero”)) {
document.getElementById(“modal-cuero”).style.display = “none”;
}
}
Valoraciones
No hay valoraciones aún.