/* Homepage-only fallback for the shared React footer. */
#pixio-react-home-root .ts-site-footer,
#pixio-react-home-root .ts-site-footer *,
#pixio-react-home-root .ts-site-footer *::before,
#pixio-react-home-root .ts-site-footer *::after {
    box-sizing: border-box;
}

#pixio-react-home-root .ts-site-footer {
    position: relative;
    overflow: hidden;
    background: #f7f3ec;
    color: #111827;
    border-top: 0;
    font-family: var(--font-body, "Poppins", sans-serif);
}

#pixio-react-home-root .ts-site-footer::before,
#pixio-react-home-root .ts-site-footer::after {
    display: none;
}

#pixio-react-home-root .ts-site-footer__accent {
    height: 4px;
    background: #ffa520;
}

#pixio-react-home-root .ts-site-footer__grid {
    position: relative;
    z-index: 1;
    width: min(100% - 64px, 1240px);
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 40px;
    margin-inline: auto;
    padding: 56px 0;
}

#pixio-react-home-root .ts-site-footer__brand {
    max-width: 350px;
    align-self: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

#pixio-react-home-root .ts-site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.045em;
    text-decoration: none;
}

#pixio-react-home-root .ts-site-footer__logo::before {
    display: none;
}

#pixio-react-home-root .ts-site-footer__logo-mark {
    position: relative;
    display: block;
    width: 24px;
    height: 28px;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 8px 14px 10px 5px;
    background: #ffa520;
}

#pixio-react-home-root .ts-site-footer__logo-mark span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14px;
    height: 8px;
    border-radius: 0 10px 0 0;
    background: #f7f3ec;
}

#pixio-react-home-root .ts-site-footer__brand p {
    margin: 18px 0 20px;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}

#pixio-react-home-root .ts-site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#pixio-react-home-root .ts-site-footer__socials a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 13px;
    border: 1px solid #d9d3c8;
    border-radius: 999px;
    background: #fff;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

#pixio-react-home-root .ts-site-footer__socials a:hover {
    border-color: #ffa520;
    color: #b86600;
    transform: translateY(-1px);
}

#pixio-react-home-root .ts-site-footer__column h2 {
    margin: 0 0 20px;
    color: #b86600;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

#pixio-react-home-root .ts-site-footer__column--shop h2 {
    font-size: 20px;
    letter-spacing: 0;
    text-transform: none;
}

#pixio-react-home-root .ts-site-footer__column ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#pixio-react-home-root .ts-site-footer__column a {
    color: #667085;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

#pixio-react-home-root .ts-site-footer__column a:hover {
    color: #111827;
    transform: translateX(2px);
}

#pixio-react-home-root .ts-site-footer__bottom {
    position: relative;
    z-index: 1;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, .7);
}

#pixio-react-home-root .ts-site-footer__bottom-inner {
    width: min(100% - 64px, 1240px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-inline: auto;
    padding: 20px 0;
}

#pixio-react-home-root .ts-site-footer__bottom p {
    margin: 0;
    color: #667085;
    font-size: 13px;
}

#pixio-react-home-root .ts-site-footer__bottom p:last-child {
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 900px) {
    #pixio-react-home-root .ts-site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #pixio-react-home-root .ts-site-footer__grid {
        width: min(100% - 40px, 1240px);
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0 44px;
    }

    #pixio-react-home-root .ts-site-footer__bottom-inner {
        width: min(100% - 40px, 1240px);
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }
}
