/* Footer Styles - Extracted from footer.php inline styles */

.site-footer {
    background-color: #242424;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Первая линия */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 15px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-guarantee {
    font-size: 14px;
    line-height: 1.6;
}

.footer-phone a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.footer-phone span {
    font-size: 14px;
    color: #ccc;
}

/* Вторая линия */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-contacts {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contacts p {
    margin-bottom: 10px;
}

.footer-contacts a {
    color: #fff;
    text-decoration: none;
}

.footer-contacts a:hover {
    text-decoration: underline;
}

.footer-map {
    width: 100%;
}

#yandex-map {
    width: 100%;
    height: 200px;
    background-color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-top,
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
        padding: 10px 0;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-phone {
        text-align: center;
    }
}