.footer-go-home {
    background-color: #333333;
    padding: 12px 16px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Кнопка */
.btn-go-home {
    display: inline-block;
    padding: 10px 24px;

    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;

    text-align: center;
    white-space: nowrap;

    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn-go-home:hover {
    background-color: #f0f0f0;
    color: #111111;
    transform: translateY(-1px);
}

.btn-go-home:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .footer-go-home {
        padding: 10px 12px;
    }

    .btn-go-home {
        width: 100%;
        max-width: 480px;
        padding: 12px 0;
        font-size: 15px;
    }
}