.wg-footer-wrapper {
    width: 100%;
}

body.footer-fixed .wg-footer-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateY(110%);
    transition: transform 0.45s ease;
    pointer-events: none;
    z-index: 40;
}

body.footer-fixed .wg-footer-wrapper.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.wg-footer {
    background: #efecdb;
    color: #5D4037;
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
}

.wg-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .wg-footer__container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.wg-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wg-footer__logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wg-footer__logo img {
    max-width: 160px;
    height: auto;
    display: block;
}

.wg-footer__links,
.wg-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wg-footer__title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #906E50;
}

.wg-footer__link-list,
.wg-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wg-footer__contact-list li {
    text-transform: none;
}

.wg-footer__link-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.wg-footer__link-list a:hover {
    color: #f3c77a;
}

.wg-footer__social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.wg-footer__social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: inherit;
    transition: transform 0.25s ease, background 0.25s ease;
}

.wg-footer__social a:hover {
    background: rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.wg-footer__bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    text-align: center;
    color: rgba(93, 64, 55, 0.7);
}
