/**
 * Footer Dark Fix (27.11.2025)
 * Гарантируем тёмный футер на ВСЕХ страницах
 */

/* Футер - ВСЕГДА тёмный */
footer,
footer.footer,
.footer,
body footer,
html body footer {
    background: #1d1d1f !important;
    background-color: #1d1d1f !important;
    color: #8d96b2 !important;
}

/* Текст футера - светлый */
.footer a,
.footer__list-item,
.footer__list-item a,
.footer__accordion,
.footer-link,
footer a,
footer p {
    color: #8d96b2 !important;
}

.footer a:hover,
.footer__list-item:hover,
.footer__list-item a:hover {
    color: #fff !important;
}

/* Заголовки футера */
.footer__title {
    color: #c6ff4d !important;
}

/* Мобильная версия - тоже тёмный */
@media (max-width: 768px) {
    footer,
    footer.footer,
    .footer {
        background: #1d1d1f !important;
        background-color: #1d1d1f !important;
    }
}
