.site-footer{
background:var(--color-bg-primary);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:2rem;
}

.footer-brand .brand{
display:flex;align-items:center;gap:0.75rem;margin-bottom:1rem;
}

.footer-brand img{height:40px;}

.footer-desc{max-width:320px;color:var(--color-text-secondary);}

.footer-nav ul,
.footer-legal ul{
display:flex;flex-direction:column;gap:0.5rem;
}

.footer-bottom{margin-top:2rem;border-top:1px dashed var(--color-border);padding-top:1rem;}

.consent{
position:fixed;bottom:1rem;left:50%;transform:translateX(-50%);
background:var(--color-bg-surface);
border:1px solid var(--color-border);
padding:1rem;
border-radius:var(--radius-md);
box-shadow:var(--shadow-glow);
z-index:1001;
max-width:90%;
}

.consent-inner{
display:flex;flex-direction:column;gap:1rem;
}

.consent-actions{
display:flex;gap:0.5rem;flex-wrap:wrap;
}

@media(max-width:768px){
.footer-grid{grid-template-columns:1fr;}
}
