        /* ── Footer link rows (account entry + the legal pages) ──────────
           Same shape shop.css gives its footer, so the two public pages carry one footer. */
        .foot-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 0.8rem;
        }
        .foot-links a {
            color: var(--accent-silver);
            font-size: 0.8rem;
            text-decoration: none;
            padding: 0.35rem 0.6rem;
        }
        @media (hover: hover) and (pointer: fine) {
            .foot-links a:hover { color: var(--accent-gold); }
        }

