/* =========================================================
   STOREXY LIGHT FOOTER
========================================================= */

.site-footer {

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(213, 28, 145, .055),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(108, 63, 184, .07),
            transparent 30%
        ),
        #faf9fc;

    color: #17151b;

    padding: 65px 0 28px;

    border-top: 1px solid #eeeaf3;
}


/* =========================================================
   SUBTLE BACKGROUND DETAILS
========================================================= */

.site-footer::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(213, 28, 145, .055),
            transparent 70%
        );

    left: -180px;
    top: -180px;

    pointer-events: none;
}

.site-footer::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(108, 63, 184, .055),
            transparent 70%
        );

    right: -210px;
    bottom: -240px;

    pointer-events: none;
}


/* =========================================================
   GRID
========================================================= */

.footer-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1fr;

    gap: 45px;

    padding-bottom: 55px;
}


/* =========================================================
   COLUMN
========================================================= */

.footer-column h4 {

    margin: 0 0 19px;

    color: #1b1820;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 850;

    letter-spacing: -.015em;
}


.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 11px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {

    margin: 0;
    padding: 0;
}


.footer-column a {

    display: inline-block;

    color: #77727d;

    font-size: 11px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-column a:hover {

    color: #6c3fb8;

    transform: translateX(3px);
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 23px;

    border-top:
        1px solid #e8e4ec;

    color: #96919b;

    font-size: 10px;
}


.footer-copyright {

    line-height: 1.5;
}


/* =========================================================
   BOTTOM LINKS
========================================================= */

.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 22px;
}


.footer-bottom-links a {

    color: #85808b;

    font-size: 10px;

    text-decoration: none;

    transition: color .2s ease;
}


.footer-bottom-links a:hover {

    color: #6c3fb8;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 950px) {

    .site-footer {

        padding-top: 75px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 649px) {

    .site-footer {

        padding: 48px 0 23px;
    }


    .footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 30px;
        row-gap: 38px;

        padding-bottom: 40px;
    }


    .footer-column h4 {

        margin-bottom: 15px;

        font-size: 12px;
    }


    .footer-column ul {

        gap: 10px;
    }


    .footer-column a {

        font-size: 10px;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 13px;

        text-align: center;

        padding-top: 20px;
    }


    .footer-bottom-links {

        gap: 18px;

        justify-content: center;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 380px) {

    .footer-grid {

        column-gap: 20px;
    }

    .footer-column a {

        font-size: 9.5px;
    }

}