.elementor-354 .elementor-element.elementor-element-d239445{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-fba23c3 */:root {
    --brand-green: #2d5a27; /* Насыщенный зеленый */
    --light-green: #e9f5e8;
    --text-gray: #666;
    --white: #ffffff;
}

.site-footer {
    background-color: var(--white) !important;
    color: var(--brand-green);
    padding: 60px 0 30px 0;
    border-top: 1px solid #f0f0f0;
    max-width: 1320px !important;
}

.footer-container {
    margin: 0 auto;
    padding: 0px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Брендинг */
.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: grayscale(1) opacity(0.7); /* Серый вид до наведения */
}

.social-link:hover img {
    transform: translateY(-3px);
    filter: none; /* Возвращаем цвета при наведении */
}

/* Ссылки */
.footer-nav {
    display: flex;
    justify-content: space-around;
}

.footer-col h4, .footer-subscribe h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-green);
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col nav a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-col nav a:hover {
    color: var(--brand-green);
}

/* Форма */
.subscribe-form {
    display: flex;
    margin-top: 15px;
}

.subscribe-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    outline: none;
    flex: 1;
}

.subscribe-form button {
    background-color: var(--brand-green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #1e3d1a;
}

/* Нижняя часть */
.footer-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 0.85rem;
        margin: 0;
}

.legal-links a {
    color: #999;
    font-size: 0.85rem;
    margin-right: 15px;
    text-decoration: none;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    filter: grayscale(1) opacity(0.5);
}

.payment-methods img {
    height: 25px;
}

/* Адаптивность */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-subscribe {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-info {
        flex-direction: column;
        gap: 10px;
    }
}/* End custom CSS */