.widget--footer {
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    p {
        strong {
            color: $color-heading;
        }
    }

    .widget__title {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 23px;
        font-weight: 600;
        color: $color-heading;
        text-transform: uppercase;
    }

    .widget__links {
        li {
            margin-bottom: .5em;

            a {
                display: block;
                line-height: 20px;
            }

            &:last-child {
                margin-bottom: 0;
            }
        }
    }


}

.widget--shop {
    .widget__title {
        position: relative;
        margin-bottom: 25px;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 400;
        color: #000;
    }

    .widget__links {
        li {
            a {
                font-weight: 500;
                font-size: 16px;
            }
        }
    }
}

.widget--sizes {
    .widget__content {
        a {
            display: block;
            font-size: 16px;
            font-weight: 500;
        }
    }
}

.widget--tags {
    .list--tags {
        li {
            display: inline-block;
            margin-right: 5px;
            margin-bottom: 5px;

            a {
                display: inline-block;
                padding: 6px 10px;
                border-radius: 50px;
                font-size: 14px;
                border: 1px solid $color-heading;

                &:hover {
                    border-color: $color-1st;
                }
            }
        }
    }
}

.widget--colors {
    .color-swatch {
        li {
            display: inline-block;
            vertical-align: top;
            margin-right: 10px;
            margin-bottom: 5px;

            label {
                margin-bottom: 0;
            }
        }
    }
}

.ps-list--categories {
    li {
        position: relative;
        padding: 5px 20px 5px 0;

        a {
            display: block;
            line-height: 20px;
            padding-left: 15px;
            position: relative;
            font-size: 16px;
            font-weight: 500;
            &:before {
                content: "+";
                position: absolute;
                top: 0;
                left: 0;
                line-height: 20px;
            }
        }

        &.current-menu-item {
            > a {
                color: $color-1st;
            }
        }

        .sub-toggle {
            display: inline-block;
            position: absolute;
            top: 0;
            right: 0;
            width: 32px;
            height: 32px;

            i {
                @include center();
            }
        }

        .sub-menu {
            position: relative;
            padding-left: 20px !important;
            @include show;
            transition: all 0s ease;
            background-color: transparent;
            border: none;
            display: none;
            z-index: unset;

            li {
                a {
                    background-color: transparent;
                    padding: 0;
                    padding-left: 15px;
                    border: none;
                    color: inherit;
                    font-size: 14px;
                }

                &.menu-item-has-children {
                    .sub-toggle {
                        display: inline-block;
                    }

                    .sub-menu {
                        position: relative;
                        top: 0;
                        left: 0;
                        @include show;
                        @include transform(translateY(0));
                    }
                }
            }
        }
    }
}
