/* ============================================================
   Site footer (.pt-footer) — minimal centered-logo layout.
   Shared by _Layout (Home / Privacy) and _MenuLayout
   (Menu / MenuList / Cart / Offers).
   NOT loaded on _AuthLayout or _StoresLayout.
   ============================================================ */

.pt-footer {
    background: #fafafa;
    color: #1a1a1a;
    margin-top: 64px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    border-top: 1px solid #ececec;
}

/* Centered logo block */
.pt-footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 36px 24px;
}
.pt-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.pt-footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* Bottom strip — copyright (left) + social text links (right) */
.pt-footer-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #4a4a4a;
}

.pt-footer-copy {
    font-size: 0.875rem;
    color: #4a4a4a;
}

/* Legal links share the social row's look — same text-link treatment, just a
   separate nav so the label and the group are honest about what they are. */
.pt-footer-social,
.pt-footer-legal {
    display: flex;
    gap: 28px;
    align-items: center;
}
.pt-footer-social a,
.pt-footer-legal a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}
.pt-footer-social a:hover,
.pt-footer-social a:focus,
.pt-footer-legal a:hover,
.pt-footer-legal a:focus {
    color: #e63946;
    text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 560px) {
    .pt-footer {
        margin-top: 40px;
    }
    .pt-footer-logo-wrap {
        padding: 28px 16px;
    }
    .pt-footer-logo img {
        height: 40px;
    }
    .pt-footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }
    .pt-footer-social,
    .pt-footer-legal {
        gap: 20px;
    }
}

/* Defensive overrides against legacy Bootstrap classes that may
   leak into the footer (text-muted, border-top variants). */
.pt-footer.border-top { border-top: 1px solid #ececec !important; }
.pt-footer.text-muted { color: #1a1a1a !important; }
