.site-footer {
    background-color: var(--color-background-black);

    /* Top Container */
    & .site-footer__top-container {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #8D8D8D;
        padding-top: 80px;
        padding-bottom: 70px;

        /* - Mobile - */
        @media only screen and (max-width: 767px) {
            flex-wrap: wrap;
            gap: 30px;
            padding-top: 32px;
            padding-bottom: 32px;
        }
    }

    & .site-footer__logo-container {
        max-width: 236px;

        /* - Mobile - */
        @media only screen and (max-width: 767px) {
            margin: 0 auto;
        }

        img {
            max-width: 100%;
            height: auto;
        }
    }

    & .site-footer__navigation-container {

        /* - Mobile - */
        @media only screen and (max-width: 767px) {
            width: 100%;
        }
    }

    & .site-footer__navigation {

        & .menu {
            list-style-type: none;

            /* - Mobile - */
            @media only screen and (max-width: 767px) {
                text-align: center;
            }

            & .menu-item {
                margin-bottom: 20px;

                &:last-child {
                    margin-bottom: 0;
                }

                &.admin-only-visible,
                &.customer-only-visible {
                    display: none;
                }

                & a {
                    font-weight: 600;
                    color: var(--color-white);
                    transition: .2s linear;

                    &:hover {
                        color: var(--color-slick-yellow);
                        transition: .2s linear;
                    }
                }
            }
        }
    }

    /* Bottom Container */
    & .site-footer__bottom-container {
        display: flex;
        justify-content: space-between;
        padding-top: 40px;
        padding-bottom: 80px;

        /* - Mobile - */
        @media only screen and (max-width: 767px) {
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            padding-top: 32px;
            padding-bottom: 32px;
        }
    }

    & .site-footer__copyright {
        font-weight: 700;
        color: var(--color-gray);
    }
}