f-footer {
    display: block;
}

f-footer a {
    color: inherit;
    text-decoration: none;
}

f-footer .f-footer-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(0, 1.4fr);
    align-items: start;
}

f-footer .f-footer-menu__links {
    display: grid;
    gap: 30px;
}

f-footer .f-footer-content,
f-footer .f-footer-newsletter {
    display: grid;
}

f-footer .f-footer-content{
    gap: 30px;
}
f-footer .f-footer-newsletter__input,
f-footer .f-footer-newsletter__button {
    width: 100%;
    border: 0;
}

f-footer .f-footer-newsletter__input{
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}
f-footer .f-footer-newsletter__button {
    background: #ff7a1a;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    padding: 12px;
}

f-footer .f-footer-social__title{
    margin-bottom: 30px;
}
f-footer .f-footer-social__links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

f-footer .f-footer-social__links a {
    display: inline-flex;
}

f-footer .f-footer-social__links svg,
f-footer .f-footer-social__links img {
    width: 40px;
    height: 40px;
}

f-footer .f-footer-menu{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

f-footer .f-footer-menu__title{
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-hongmeng-sans-sc);
    margin-bottom: 30px;
}

f-footer .f-footer-menu__link {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.033px;
    font-family: var(--font-hongmeng-sans-sc);
}

f-footer .f-footer-content__text,
f-footer .f-footer-social__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.033px;
    font-family: var(--font-hongmeng-sans-sc);
}

f-footer .f-footer-newsletter__button{
    font-size: 29px;
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-hongmeng-sans-sc);
}
@media (max-width: 959px) {
    f-footer .f-footer-container {
        grid-template-columns: 1fr;
    }

    f-footer .f-footer-menu-mobile {
        border-bottom: 1px solid currentColor;
    }

    f-footer .f-footer-menu-mobile .f-footer-menu__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
        padding: 18px 0;
        margin-bottom: 0;
    }

    f-footer .f-footer-menu-mobile .f-footer-menu__links {
        display: none;
        gap: 16px;
        padding-bottom: 18px;
    }

    f-footer .f-footer-menu-mobile.is-open .f-footer-menu__links {
        display: grid;
    }

    f-footer .f-footer-menu-mobile .close-icon {
        display: none;
    }

    f-footer .f-footer-menu-mobile.is-open .open-icon {
        display: none;
    }

    f-footer .f-footer-menu-mobile.is-open .close-icon {
        display: inline;
    }

    f-footer .f-footer-content{
        margin-top: 15px;
    }
    f-footer .f-footer-menu__title {
        font-size: 3.3333vw;
    }
    f-footer .f-footer-menu__link{
        font-size: 2.6667vw;
    }
    f-footer .f-footer-content__text{
        font-size: 2.4vw;
    }
    f-footer .f-footer-social__title{
        font-size: 2vw;
    }
}
#shopline-section-sections--footer-group__footer{
    display: none !important;
}