/* === FOOTER SECTION === */
.footer-section {
    width: 100%;
    margin-top: 30px;
    padding: 20px 15px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-links {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #B49A88;
    font-family: "Tahoma", sans-serif;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 3px 8px;
}

.footer-links a:hover {
    color: #ffaa33;
}

.footer-social {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    background: rgba(180, 154, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: rgba(180, 154, 136, 0.6);
    transform: translateY(-2px);
}

.footer-social i {
    color: #B49A88;
    font-size: 16px;
}

/* Кнопки рейтингов */
.footer-ratings {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(180, 154, 136, 0.3);
}

.footer-ratings a {
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-ratings a:hover {
    opacity: 1;
}

.footer-ratings img {
    display: block;
    width: 88px;
    height: 31px;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 1px;
    padding-top: 1px;
    color: #888;
    font-family: "Tahoma", sans-serif;
    font-size: 10px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-ratings img {
        width: 66px;
        height: 23px;
    }
}