footer {
    background-color: var(--Softer-Black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 85px var(--PaddingSmall);;
    color: var(--White);

}

.footer ul {
    list-style-type: none;
}

.footer-top {
    width: 100%;
}

footer .footer-menus-wrapper {
    display: grid;
    grid-template-columns: 1fr 2.1fr;
    gap: var(--GridGap1);
    width: 100%;
    margin-bottom: 65px;
}

.footer-navigation-wrapper {
    display: grid;
    gap: var(--GridGap1);
    grid-template-columns:1fr 1fr 1fr 1fr;
}

.footer-menu-mail-wrapper {
    width:100%;
    display: flex;
    flex-direction: column;
    flex: 2;
    gap: 52px;
    margin-right: 40px;
}

.footer-menu-mail-wrapper h4 {
    color: var(--Beige);
    flex: 2;
    font-weight: 500;
    font-size: 58px;
    line-height: 1;
    margin: 0;
}

.footer-menu-mail-wrapper p {
    margin: 0!important;
}


.subscribe-button {
    padding: 10px 20px;
    flex: 1;
}

.footer-cta-button {
    display: none;
    max-width: 100%;
    padding: 12px;
    text-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-menu-mail-wrapper h4 {
        font-size: 36px;
    }
    .footer-navigation-wrapper {
        grid-template-columns: 1fr;
    }
}

.bold {
    font-weight: 700;
}

.footer-menu-mail-wrapper h4 span {
    color: var(--White);

}

.footer-menu-mail-wrapper .mailbox {
    flex: 1;
}

.subscribe-form {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: end;
}

.subscribe-form input {
    outline: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--White);
    border-radius: 0;
    padding: 10px 3px;
    flex: 1;
    color: var(--White);
}

.subscribe-form input:focus {
    border-bottom-color: var(--Red);
}

.footer .button {
    flex: 1;
    height: 32px;
}

.footer-menu {
    flex: 1;
    padding-top: 24px;
}

.footer-menu ul li {
    padding: 0 0 15px 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.footer-socials{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 13px;
    align-items: center;
}

.social-link  {
    height: 30px;
    width: 30px;
}

.social-link svg {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.tiktok {
    height: 33px;
    width: 33px;
}

.facebook {
    margin: 0 -2px 0 -4px;
}



.footer-hr {
    width: 100%;
    border: 1px solid var(--White);
    margin: 40px 0 27px 0;
}



footer .site-info {
    display: flex;
    justify-content: space-between;
    width:100%;
    align-items: center;
}

.site-info p {
    margin: 0;
}

.site-info .region2 {
    display: flex;
    gap: 6px;
}

.site-info .region2 svg {
    align-items: center;
}

footer a {
    text-decoration: none;
    color: var(--White);

}

.footer-m {
    display: none;
}

.footer-arrow {
    display: none;
}


@media (max-width: 1000px) {

    footer .footer-menus-wrapper {
        grid-template-columns: 1fr;
    }

    /* Mail signup stays full width */
    .footer-menu-mail-wrapper {
        flex: 0 0 100%;
        margin-right: 0;
    }

    /* Menus become 2 per row */
    .footer-menu {
        flex: 0 0 45%;
    }

    .site-info {
        flex-direction: column;
        gap: 27px;
    }

    footer .site-info .copyright {
        display: none;
    }

    footer .site-info .region2 {
        display: none;
    }

    .footer-m {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }

    .region {
        display: flex;
        gap: 5px;
        justify-content: flex-end;
    }

}



@media (max-width: 600px) {



    .footer-arrow {
        display: block;
    }

    footer{
        padding: 57px 20px;
    }

    .footer-menu-shop {
        display: none;
    }

    .footer-cta-button {
        display: block;
        
    }

    footer .footer-menus-wrapper{
        flex-direction: column;
    }

    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }

    .subscribe-form input {
        width: -webkit-fill-available;
        flex: none;
    }

    .subscribe-form button {
        flex: none;
    }

}

@media (max-width: 325px) {

    .footer-socials {
        flex-direction: column;
        gap: 40px;
    }

}


.footer-world-icon svg {
    width: auto;
    height: 16px;
    object-fit: cover;
}

span.footer-world-icon {
    display: flex;
    align-items: center;
}







/* MOBILE ONLY */
@media (max-width: 600px) {


    .footer-toggle-text-arrow {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--White);
    }

    .footer-toggle-text-arrow .footer-arrow svg {
        width: 9px;
        height: 9px;
        object-fit: contain;
        transition: transform 0.3s ease;
        transform: rotate(90deg);
    }

    /* Hide menus by default */
    .footer-menu .footer-navigation {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Open state */
    .footer-menu.is-open .footer-navigation {
        max-height: 500px;
    }

    .footer-menu.is-open .footer-arrow {
        transform: rotate(180deg);
    }
}

