/* Footer Override - Reset conflicting styles */
.footer-content,
.footer-links,
.footer-badges {
    display: initial !important;
    grid-template-columns: initial !important;
    gap: initial !important;
    margin-bottom: initial !important;
    padding: initial !important;
    background: initial !important;
    border-radius: initial !important;
    font-size: initial !important;
    color: initial !important;
}

/* Reset old footer-bottom styles */
.footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: var(--spacing-xl) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-direction: row !important;
    text-align: left !important;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column !important;
        gap: var(--spacing-lg) !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer-language {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
}