/* footer.css - стили подвала */
footer {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #e1e8ed;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    color: #95a5a6;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: #e94560;
}

.feedback-label {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.feedback-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e94560;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feedback-link:hover {
    background: #3498db;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #e94560;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: #3498db;
    color: white;
}