/* Footer */
footer { 
    padding: 24px 0 56px; 
    color: var(--muted); 
    font-size: 13px; 
}

.foot { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 10px; 
    padding: 0 24px;
}

.socials { 
    display: flex; 
    gap: 10px; 
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.socials a img {
    display: block;
    width: 16px;
    height: 16px;
}

.socials a:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

/* Адаптивность для футера */
@media (max-width: 768px) {
    footer {
        padding: 20px 0 40px;
        font-size: 12px;
    }
    
    .foot {
        padding: 0 16px;
        gap: 8px;
    }
    
    .socials {
        gap: 8px;
    }
    
    .socials a {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
    .socials a img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 16px 0 32px;
        font-size: 11px;
    }
    
    .foot {
        padding: 0 12px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .socials {
        gap: 6px;
    }
    
    .socials a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .socials a img {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 14px 0 28px;
    }
    
    .foot {
        padding: 0 10px;
        gap: 10px;
    }
    
    .socials {
        gap: 6px;
    }
    
    .socials a {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .socials a img {
        width: 12px;
        height: 12px;
    }
}