/* =========================================================
   FRENCHSOGOOD - FOOTER
========================================================= */

.fsg-footer {
    width: 100%;
    margin-top: auto;
    background: #08006b;
    color: #fff;
    padding: 58px 0 28px;
}

.fsg-footer-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

.fsg-footer-top {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1.35fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

.fsg-footer-logo-link {
    display: inline-block;
}

.fsg-footer-logo {
    width: 290px;
    height: auto;
    margin-bottom: 18px;
}

.fsg-footer-baseline {
    max-width: 390px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}

.fsg-footer h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 24px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fsg-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #e30613;
    border-radius: 999px;
}

.fsg-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fsg-footer li {
    margin: 0 0 10px;
}

.fsg-footer a {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.fsg-footer a:hover {
    color: #e30613;
}

.fsg-footer-nav a,
.fsg-footer-categories a {
    display: inline-block;
}

.fsg-footer-nav a:hover,
.fsg-footer-categories a:hover {
    color: #e30613;
    transform: translateX(4px);
}

.fsg-footer-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.fsg-footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.fsg-footer-socials li {
    margin: 0;
}

.fsg-footer-socials a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #08006b;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.fsg-footer-socials a:hover {
    background: #e30613;
    border-color: #e30613;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

.fsg-footer-socials img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.fsg-footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.fsg-footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fsg-footer-legal span {
    color: rgba(255,255,255,0.45);
}

.fsg-footer-copy {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media (max-width: 1100px) {
    .fsg-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }
}

@media (max-width: 700px) {
    .fsg-footer {
        padding: 44px 0 24px;
    }

    .fsg-footer-container {
        width: min(100%, calc(100% - 28px));
    }

    .fsg-footer-top {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .fsg-footer-logo {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .fsg-footer-baseline {
        margin: 0 auto;
    }

    .fsg-footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fsg-footer-cat-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fsg-footer-socials {
        justify-content: center;
    }

    .fsg-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .fsg-footer-legal {
        justify-content: center;
    }
}