/* =========================================
   ТОНКИЙ ПОДВАЛ (ФУТЕР)
   ========================================= */
.thin-footer {
    position: fixed; /* Фиксируем внизу, чтобы не сдвигать кнопки */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 56, 147, 0.98); /* Ваш фирменный синий цвет */
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 40px; /* Делаем полоску тонкой */
    box-sizing: border-box;
    z-index: 900; /* Поверх фона, но под модальными окнами */
    display: flex;
    justify-content: space-between; /* Текст слева, ссылка справа */
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.thin-footer-left {
    max-width: 70%;
    line-height: 1.3;
}

.thin-footer-right a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    font-size: 13px;
    transition: opacity 0.3s ease;
    white-space: nowrap; /* Запрещает переносы строки в ссылке */
}

.thin-footer-right a:hover {
    opacity: 0.8;
}

/* === Адаптивность для телефонов === */
@media (max-width: 768px) {
    .thin-footer {
        flex-direction: column; /* На телефонах ставим друг под друга */
        padding: 8px 15px;
        gap: 6px;
        text-align: center;
    }

    .thin-footer-left {
        max-width: 100%;
        font-size: 10px;
    }

    .thin-footer-right a {
        font-size: 11px;
    }
}
