/* ThunderGum — footer.css (rich footer)
 *
 * Same structure as the MzPokeRx theme footer, restyled in the ThunderGum
 * palette (near-black + electric yellow, Archivo Black display font).
 * The reset and every class are scoped under <footer>, so dropping this file
 * onto a host page only styles the ThunderGum footer block — it won't touch
 * the rest of the page (or collide with generic class names like .phone).
 * Fonts (Archivo Black, Inter) are loaded by header.css, which every page also
 * includes.
 */

/* ---- scoped reset: only elements inside the footer are affected ---- */
footer,
footer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

    footer a {
        color: inherit;
        text-decoration: none;
    }

    footer ul {
        list-style: none;
    }

/* ===== FOOTER ===== */
footer {
    background: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 56px 48px 28px;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

    footer .footer-inner {
        max-width: 80rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 44px;
    }

    /* ---- brand column ---- */
    footer .footer-logo {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Archivo Black', sans-serif;
        font-size: 22px;
        letter-spacing: 2px;
        line-height: 1;
        color: #fff;
        margin-bottom: 16px;
        white-space: nowrap;
    }

    footer .footer-logo-icon {
        width: 22px;
        height: 22px;
        color: #FFE600;
        filter: drop-shadow(0 0 6px rgba(255, 230, 0, 0.5));
    }

    footer .footer-brand p {
        font-size: 13px;
        color: #9a9a9a;
        line-height: 1.7;
        margin-bottom: 12px;
        max-width: 36ch;
    }

    footer .footer-brand .phone {
        font-family: 'Archivo Black', sans-serif;
        color: #FFE600;
        font-size: 18px;
        letter-spacing: 1px;
    }

    /* ---- link columns ---- */
    footer .footer-col h4 {
        font-family: 'Archivo Black', sans-serif;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
        color: #fff;
    }

    footer .footer-col ul li {
        margin-bottom: 10px;
    }

        footer .footer-col ul li a {
            font-size: 13px;
            color: #9a9a9a;
            transition: color 0.2s;
        }

            footer .footer-col ul li a:hover {
                color: #FFE600;
            }

    /* ---- payment + socials row ---- */
    footer .footer-pay {
        max-width: 80rem;
        margin: 38px auto 0;
        padding-top: 26px;
        border-top: 1px solid #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    footer .pay-icons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

        footer .pay-icons span {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #9a9a9a;
            border: 1px solid #1a1a1a;
            border-radius: 6px;
            padding: 6px 12px;
            background: #0f0f0f;
        }

    footer .footer-socials {
        display: flex;
        gap: 14px;
    }

        footer .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border: 1px solid #1a1a1a;
            border-radius: 50%;
            color: #9a9a9a;
            font-size: 15px;
            transition: color 0.2s, border-color 0.2s;
        }

            footer .footer-socials a:hover {
                color: #FFE600;
                border-color: #FFE600;
            }

    /* ---- legal bottom ---- */
    footer .footer-bottom {
        max-width: 80rem;
        margin: 26px auto 0;
        padding-top: 22px;
        border-top: 1px solid #1a1a1a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        font-size: 12px;
        color: #9a9a9a;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        footer .footer-bottom a {
            color: #9a9a9a;
        }

            footer .footer-bottom a:hover {
                color: #FFE600;
            }

    footer .disclaimer {
        font-size: 11px;
        color: rgba(154, 154, 154, 0.6);
        max-width: 820px;
        line-height: 1.6;
        margin: 16px auto 0;
        text-align: center;
    }

/* ===== RESPONSIVE (footer only) ===== */
@media (max-width: 980px) {
    footer {
        padding: 48px 22px 26px;
    }

        footer .footer-inner {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        footer .footer-pay,
        footer .footer-bottom {
            justify-content: center;
            text-align: center;
        }
}

@media (max-width: 560px) {
    footer .footer-inner {
        grid-template-columns: 1fr;
    }
}
