/* Vesa Footer — pairs with footer.php
 * Layout matches the old aavesa.com Elementor footer:
 *   4 columns (Logo+Phone | Useful+Stores | Popular+About | Newsletter+ANPC)
 *   Bottom bar: copyright + legal links + 5 social icons.
 */

.site-footer {
    background: #fff;
    color: #444;
    margin-top: 80px;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #ececec;
}

.site-footer .container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ── Main columns ────────────────────────────────────── */
.site-footer__main {
    padding: 56px 0 40px;
}

.site-footer__cols {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 40px;
}

.site-footer__col-title {
    margin: 0 0 18px;
    color: #1a1a1a;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: uppercase;
}

.site-footer__col-title--spaced {
    margin-top: 28px;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: 5px;
}

.site-footer__list a {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color .15s ease;
}

.site-footer__list a:hover {
    color: #214af1;
}

/* Logo column */
.site-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.site-footer__logo img {
    max-height: 64px;
    width: auto;
}

.site-footer__hours {
    margin: 0 0 6px;
    font-size: 13px;
    color: #777;
}

.site-footer__phone {
    display: inline-block;
    margin: 0 0 18px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition: color .15s ease;
}

.site-footer__phone:hover {
    color: #214af1;
}

.site-footer__store-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-top: 8px;
}

.site-footer__store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.site-footer__store-btn:hover {
    background: #214af1;
    color: #fff;
    border-color: #214af1;
}

/* Newsletter column */
.site-footer__col--newsletter .site-footer__col-title {
    margin-bottom: 14px;
    font-size: 14px;
}

.site-footer__newsletter-form {
    display: flex;
    margin-bottom: 24px;
    max-width: 320px;
}

.site-footer__newsletter-input {
    flex: 1;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-right: none;
    border-radius: 2px 0 0 2px;
    font-size: 13px;
    color: #1a1a1a;
}

.site-footer__newsletter-input:focus {
    outline: 2px solid #214af1;
    outline-offset: -2px;
}

.site-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    background: #214af1;
    color: #fff;
    border: none;
    border-radius: 0 2px 2px 0;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease;
}

.site-footer__newsletter-btn:hover {
    background: #1838c0;
}

.site-footer__anpc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.site-footer__anpc img {
    display: block;
    max-width: 200px;
    height: auto;
}

/* ── Bottom bar ──────────────────────────────────────── */
.site-footer__bottom {
    border-top: 1px solid #ececec;
    padding: 20px 0;
    background: #fafafa;
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
}

.site-footer__copy {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    flex: 1 1 360px;
}

.site-footer__copy a {
    color: #555;
    text-decoration: none;
    transition: color .15s ease;
}

.site-footer__copy a:hover {
    color: #214af1;
}

.site-footer__copy .mg-2 {
    margin: 0 6px;
    color: #999;
}

.site-footer__social {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.site-footer__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    transition: transform .18s ease;
}

.site-footer__social-icon:hover {
    transform: translateY(-2px);
}

.site-footer__social-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .site-footer__cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }
}

@media (max-width: 720px) {
    .site-footer {
        margin-top: 56px;
    }

    .site-footer__main {
        padding: 40px 0 32px;
    }

    .site-footer__cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__col--logo {
        text-align: center;
    }

    .site-footer__store-buttons {
        align-items: center;
    }

    .site-footer__newsletter-form {
        max-width: none;
    }

    .site-footer__anpc {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-footer__bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .site-footer__copy {
        flex: 1 1 100%;
        text-align: center;
    }

    .site-footer__social {
        justify-content: center;
        width: 100%;
    }
}
