/* HEADER MEJORADO */
header{
position:fixed;
top:0;
width:100%;
padding:12px 30px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
z-index:1000;
}

/* LOGO */
.logo{
font-family:'Playfair Display';
font-size:1.5em;
color:var(--lavanda-dark);
}

/* NAV */
nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:var(--texto);
font-weight:500;
position:relative;
}

/* Línea hover elegante */
nav a::after{
content:'';
position:absolute;
width:0;
height:2px;
background:var(--lavanda);
left:0;
bottom:-5px;
transition:.3s;
}

nav a:hover::after{
width:100%;
}

/* ACCIONES */
.acciones{
display:flex;
align-items:center;
gap:15px;
}

/* CARRITO */
.carrito{
position:relative;
cursor:pointer;
font-size:20px;
}

.contador{
position:absolute;
top:-8px;
right:-10px;
background:var(--lavanda-dark);
color:white;
font-size:12px;
padding:2px 6px;
border-radius:50%;
}

/* IDIOMA */
.idioma{
border:none;
background:transparent;
cursor:pointer;
font-weight:500;
}

/* MENU MOBILE */
.menu-toggle{
display:none;
font-size:22px;
cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

nav{
position:absolute;
top:60px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}