.footer {
    background-color: var(--footer-color);
    padding: 0.5rem 1.5rem;
    background: var(--footer-color);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-row {
    align-items: center;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 0.2rem;
}

.footer-container {
    flex: 0 0 auto;
    /* Фиксированная высота, не растягивается */
    height: 10rem;
    /* Укажите нужную высоту footer */
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}


.footer-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* Располагаем элементы в строку */
    gap: 1rem;
    /* Отступы между кнопками */
    justify-content: center;
}

.footer-nav-item {
    margin: 0;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Отступ между иконкой и текстом */
    text-decoration: none;
    color: var(--no-accent-text-color);
    padding: 8px 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--accent);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 0.2rem;
}

.footer-right a {
    text-decoration: none;
    color: var(--no-accent-text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    color: var(--accent);
    font-size: 1.4rem;
}

.sg-copy {
    display: flex;
    font-size: 0.7rem;
    color: var(--no-accent-text-color);
    justify-content: center;
}