/* ============================================================
   TRENDYSONGZ FOOTER
============================================================ */

.ts-footer {
    width: 100%;
    margin-top: 60px;
    background: olive;
    color: #ffffff;
}


/* ============================================================
   FOOTER INNER
============================================================ */

.ts-footer-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 45px 24px 30px;
}


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

.ts-footer-grid {
    display: grid;

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

    gap: 40px;

    padding-bottom: 35px;

    border-bottom: 1px solid #292929;
}


/* ============================================================
   BRAND
============================================================ */

.ts-footer-brand h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    font-weight: 800;
}

.ts-footer-brand p {
    max-width: 340px;

    margin: 0;

    color: #aaaaaa;

    font-size: 13px;

    line-height: 1.7;
}


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

.ts-footer-column h4 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ============================================================
   FOOTER LINKS
============================================================ */

.ts-footer-links {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.ts-footer-links a {
    color: #aaaaaa;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.ts-footer-links a:hover {
    color: #ffffff;

    transform: translateX(2px);
}


/* ============================================================
   SOCIAL LINKS
============================================================ */

.ts-footer-social {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;
}

.ts-footer-social a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #222222;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.ts-footer-social a:hover {
    background: #333333;

    transform: translateY(-2px);
}


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

.ts-footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;
}

.ts-footer-copyright {
    color: #888888;

    font-size: 12px;
}

.ts-footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 18px;
}

.ts-footer-bottom-links a {
    color: #888888;

    text-decoration: none;

    font-size: 12px;

    transition: color 0.2s ease;
}

.ts-footer-bottom-links a:hover {
    color: #ffffff;
}


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

@media screen and (max-width: 767px) {

    .ts-footer {
        margin-top: 45px;
    }

    .ts-footer-inner {
        padding: 35px 18px 25px;
    }

    .ts-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 20px;

        padding-bottom: 28px;
    }

    .ts-footer-brand {
        grid-column: 1 / -1;
    }

    .ts-footer-brand h3 {
        font-size: 21px;
    }

    .ts-footer-brand p {
        font-size: 12px;
    }

    .ts-footer-column h4 {
        font-size: 11px;
    }

    .ts-footer-links a {
        font-size: 12px;
    }

    .ts-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .ts-footer-bottom-links {
        flex-wrap: wrap;

        gap: 12px;
    }

}


/* ============================================================
   GO TO TOP
============================================================ */

.ts-go-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 15px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 9999;
}

.ts-go-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.ts-go-top:hover {
    background: #333333;
}

@media screen and (max-width: 767px) {

    .ts-go-top {
        right: 16px;
        bottom: 16px;

        width: 42px;
        height: 42px;
    }

}