body {
font-family: sans-serif;
background: #fff;
color: #222;
}
.language-selector {
display: flex;
gap: 8px;
margin-bottom: 20px;
}
.lang-btn {
padding: 6px 14px;
border-radius: 999px;
border: 1px solid #ddd;
background: #f5f5f5;
cursor: pointer;
font-size: 13px;
transition: all 0.25s ease;
}
.lang-btn:hover {
background: #eee;
}
.lang-btn.active {
background: #222;
color: #fff;
border-color: #222;
}
.lang-content {
display: none;
}
.active {
display: block;
}
a.email-link {
color: #007bff;
text-decoration: none;
}
a.email-link:hover {
text-decoration: underline;
}
📦 Entrega Rápida y Segura de ElVapero.es – ¡Envío desde Europa! 🌍
Envío Gratis: 4–6 días hábiles
En ElVapero.es hacemos todo lo posible para que recibas tus vaporizadores desechables lo más rápido posible...
Si realizas tu pedido antes de las 12:00, lo enviamos el mismo día.
Seguimiento del paquete: Correo electrónico con número de seguimiento 📧
Envío seguro: Desde almacenes en ES/BE – sin tarifas de aduana
Otro país de la UE?
info@elvapero.es
Por qué ElVapero: Rápido, económico, seguro
📦 Fast & Secure Delivery from ElVapero.es – Shipped from Europe! 🌍
Free Delivery: 4–6 business days
At ElVapero.es, we do everything we can to ensure you receive your disposable vapes as quickly as possible...
Orders placed before 12:00 are shipped on the same day.
Package Tracking: Email with tracking number 📧
Secure Shipping: From warehouses in ES/BE – no customs fees
Other EU country?
info@elvapero.es
Why ElVapero: Fast, cheap, safe
const buttons = document.querySelectorAll(".lang-btn");
const contents = document.querySelectorAll(".lang-content");
buttons.forEach(btn => {
btn.addEventListener("click", () => {
buttons.forEach(b => b.classList.remove("active"));
btn.classList.add("active");
contents.forEach(c => c.classList.remove("active"));
document.getElementById("content-" + btn.dataset.lang).classList.add("active");
});
});