footer {
    .footer-wrapper {
        display: flex;
        align-items: center;
        gap: 16px;

        @include media-query(1024px) {
            row-gap: clamp(42px, 4.688vw, 72px);
            flex-wrap: wrap;
        }

        .store-desc {
            .icon-box {
                display: grid;
                align-items: center;
                justify-content: center;
                width: clamp(40px, 2.917vw, 72px);
                height: clamp(40px, 2.917vw, 72px);
                border: 1.5px solid $accent-1;
                border-radius: 5px;
            }
        }

        .footer-link-block {
            .footer-link {
                .img-box {
                    display: grid;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    width: clamp(28px, 1.667vw, 48px);
                    height: clamp(28px, 1.667vw, 48px);
                    border-radius: 5px;
                    border: 1px solid $accent-1;

                    @include media-query(820px) {
                        width: 40px;
                        height: 40px;
                    }

                    @include media-query(490px) {
                        width: 32px;
                        height: 32px;
                    }
                }
            }
        }
    }

    .footer-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;

        @include media-query(1024px) {
            flex-wrap: wrap;
            row-gap: 16px;
            justify-content: center;
        }
    }

}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;

    li {
        a {
            background: transparent;
            transition: $transition;
            width: clamp(28px, 1.667vw, 40px);
            height: clamp(28px, 1.667vw, 40px);
            display: grid;
            align-items: center;
            justify-content: center;
            border: 0.5px solid $black;

            @include media-query(490px) {
                width: 32px;
                height: 32px;
            }

            svg {
                width: clamp(16px, 1.042vw, 32px);

                path {
                    transition: $transition;
                    fill: $black;
                }
            }
            
        }

        &:hover {
            a {
                border: 1px solid $accent-1;
                transition: $transition;
                background-color: $accent-1;

                svg {
                    path {
                        transition: $transition;
                        fill: $white;
                    }
                }
            }
        }
    }
    .borderless{
        border: 0 !important;
        width: auto;
        height: auto;
        svg {
            width: clamp(16px, 1.042vw, 32px);

            path {
                transition: $transition;
                fill: $black;
            }
        }
        &:hover{
            background-color: transparent;
            svg{
                path{
                    fill: $accent-1;
                    transition: $transition;
                }
            }
        }
    }
}