.et-footer{
background:var(--surface-secondary);
border-top:1px solid var(--border-default);
padding:48px 0 24px;
}

.et-footer__top{
display:flex;
justify-content:space-between;
gap:32px;
flex-wrap:wrap;
}

.et-footer__logo{
height:40px;
margin-bottom:12px;
}

.et-footer__brand-text{
font-family:var(--font-heading);
margin-bottom:8px;
}

.et-footer__desc{
max-width:320px;
}

.et-footer__nav ul{
display:flex;
flex-direction:column;
gap:8px;
}

.et-footer__bottom{
margin-top:32px;
font-size:0.85rem;
color:var(--text-secondary);
}

.et-consent{
position:fixed;
bottom:16px;
left:50%;
transform:translateX(-50%);
background:var(--surface-tertiary);
border:1px solid var(--border-default);
padding:16px 20px;
border-radius:8px;
box-shadow:var(--shadow-soft);
z-index:2000;
}

.et-consent__inner{
display:flex;
align-items:center;
gap:16px;
}

.et-consent__actions{
display:flex;
gap:8px;
}

@media(max-width:640px){
.et-consent__inner{
flex-direction:column;
align-items:flex-start;
}
}