.elementor-120 .elementor-element.elementor-element-3bf409d{--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-0c724d2 *//* --- ОСНОВНІ НАЛАШТУВАННЯ --- */
.footer-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px 0;
    font-size: 14px;
    
    /* Магія розтягування на всю ширину екрану */
    width: 100vw; /* 100% ширини вікна перегляду */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box; /* Щоб padding не ламав ширину */
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

/* --- КОЛОНКА 1: БРЕНД --- */
.footer-col-brand {
    flex: 1;
    min-width: 300px; /* Ширша колонка для форми */
    max-width: 350px;
}

.footer-logo img {
    height: 40px; /* Висота лого */
    width: auto;
    margin-bottom: 20px;
    /* Якщо у вас немає білого лого, можна спробувати інвертувати темне фільтром: */
    /* filter: brightness(0) invert(1); */
}

.footer-tagline {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Форма підписки */
.footer-subscribe-form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #444; /* Тонка сіра рамка */
    background: rgba(255,255,255,0.05); /* Легкий прозорий фон */
    border-radius: 2px;
}

.footer-subscribe-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    outline: none;
}

.footer-subscribe-form input::placeholder {
    color: #777;
}

.subscribe-btn {
    background: transparent;
    border: none;
    color: var(--brand-orange); /* Помаранчева іконка літачка */
    font-size: 18px;
    padding: 0 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.subscribe-btn:hover {
    transform: translateX(3px); /* Рух при наведенні */
}

/* --- КОНТАКТИ (у колонці бренду) --- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 28px 0 0 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #ccc;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--brand-orange);
    font-size: 15px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--brand-orange);
}

/* --- КОЛОНКИ 2 і 3: ПОСИЛАННЯ --- */
.footer-col-links {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-nav a:hover {
    color: var(--brand-orange);
    padding-left: 5px; /* Легкий зсув вправо */
}

/* --- КОЛОНКА ГОДИНИ РОБОТИ --- */
.footer-col-hours {
    flex: 1;
    min-width: 220px;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #2c2c2c;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours li span:first-child {
    color: #aaa;
}

.footer-hours li span:last-child {
    color: #fff;
    font-weight: 500;
}

.footer-hours li.closed span:last-child {
    color: var(--brand-orange);
}

/* --- КОЛОНКА 4: СОЦМЕРЕЖІ --- */
.footer-col-social {
    flex: 0 0 auto; /* Не розтягується */
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: #fff; /* Білі кружечки */
    color: #1a1a1a; /* Темні іконки */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-social-icons a:hover {
    background-color: var(--brand-orange);
    color: #fff;
    transform: translateY(-3px);
}

/* --- НИЖНЯ ЧАСТИНА (BOTTOM BAR) --- */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #333; /* Дуже тьмяна лінія */
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 13px;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .footer-top-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-col-brand {
        max-width: 100%;
    }
    
    .footer-social-icons {
        justify-content: flex-start; /* Вирівнювання вліво на мобільному */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}/* End custom CSS */