/* ---- self-contained design tokens ----
   Colors + the embedded MzPokeRx logo are baked in here so this file styles
   the header/footer correctly even when dropped onto a page on its own
   (no dependency on styles.css). Defining :root twice is harmless — CSS
   merges them and the values are identical. */
:root {
    --navy: #0E0E1A;
    --navy-mid: #141428;
    --navy-light: #1C1C35;
    --purple: #7B5EA7;
    --purple-bright: #9B6FD4;
    --teal: #4EC9C0;
    --teal-dim: rgba(78,201,192,0.15);
    --purple-dim: rgba(123,94,167,0.15);
    --white: #F0EEFF;
    --muted: #8880AA;
    --border: rgba(123,94,167,0.25);
    --card: rgba(28,28,53,0.8);
    --grad: linear-gradient(135deg, var(--purple), var(--teal));
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

/* MzPokeRx Ã¢â‚¬â€ footer.css
 *
 * Same idea as header.css: the reset is SCOPED to <footer>, so dropping this
 * file onto an inner page only styles the footer block. Shared tokens
 * (colors, fonts, logo) come from styles.css, which every page also loads.
 */

/* ---- 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 ===== */
footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 56px 48px 28px;
    position: relative;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
}

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

.footer-brand .footer-logo {
    font-size: 21px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 12px;
}

.footer-brand .phone {
    font-family: 'Syne', sans-serif;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

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

        .footer-col ul li a {
            font-size: 13px;
            color: var(--muted);
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: var(--white);
            }

.footer-pay {
    max-width: 1280px;
    margin: 38px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

    .pay-icons span {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--muted);
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 6px 12px;
        background: var(--navy-mid);
    }

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

    .footer-socials a {
        color: var(--muted);
        font-size: 18px;
        transition: color 0.2s;
    }

        .footer-socials a:hover {
            color: var(--teal);
        }

.footer-bottom {
    max-width: 1280px;
    margin: 26px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted);
}

    .footer-bottom a {
        color: var(--muted);
    }

        .footer-bottom a:hover {
            color: var(--white);
        }

.disclaimer {
    font-size: 11px;
    color: rgba(136,128,170,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: 56px 22px 28px;
    }

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

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

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