/* PM PERF: externalized shared Footer CSS 2026-09-08 */
        .pm-site-footer {
            margin-top: 46px;
            background: #13294b;
            color: #ffffff;
            font-family: "Quicksand", Arial, Helvetica, sans-serif;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
        }

        .pm-site-footer a {
            color: rgba(255, 255, 255, 0.88);
            text-decoration: none;
            transition: color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
        }

        .pm-site-footer a:hover {
            color: #ffffff;
            opacity: 1;
        }

        .pm-footer-inner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 34px 22px 26px;
        }

        .pm-footer-grid {
            display: grid;
            grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
            gap: 28px;
            align-items: start;
        }

        .pm-footer-brand {
            max-width: 410px;
        }

        .pm-footer-logo-row {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 13px;
        }

        .pm-footer-logo-box {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: transparent;
            box-shadow: none;
            overflow: visible;
            flex: 0 0 48px;
        }

        .pm-footer-logo-box img {
            width: 34px;
            height: 34px;
            object-fit: contain;
            display: block;
        }

        .pm-footer-brand-name {
            display: block;
            font-size: 22px;
            line-height: 1.1;
            font-weight: 900;
            letter-spacing: 0.2px;
            color: #ffffff;
        }

        .pm-footer-brand-tag {
            display: block;
            margin-top: 3px;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.78);
            text-transform: uppercase;
            letter-spacing: 0.35px;
        }

        .pm-footer-description {
            margin: 0;
            max-width: 390px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
            line-height: 1.65;
            font-weight: 500;
        }

        .pm-footer-column-title {
            margin: 0 0 12px;
            color: #ffffff;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.45px;
        }

        .pm-footer-links {
            display: grid;
            gap: 9px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .pm-footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            width: fit-content;
            font-size: 13px;
            line-height: 1.3;
            font-weight: 650;
        }

        .pm-footer-links a::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.55);
            flex: 0 0 6px;
        }

        .pm-footer-links a:hover {
            transform: translateX(2px);
        }

        .pm-footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 28px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
            color: rgba(255, 255, 255, 0.78);
            font-size: 12px;
            line-height: 1.45;
            font-weight: 600;
        }

        .pm-footer-bottom strong {
            color: #ffffff;
            font-weight: 850;
        }

        .pm-footer-mini-links {
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pm-footer-mini-links span {
            color: rgba(255, 255, 255, 0.42);
        }

        @media (max-width: 1050px) {
            .pm-footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 26px 24px;
            }

            .pm-footer-brand {
                max-width: none;
            }
        }

        @media (max-width: 700px) {
            .pm-site-footer {
                margin-top: 34px;
            }

            .pm-footer-inner {
                padding: 30px 18px 24px;
            }

            .pm-footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                text-align: center;
            }

            .pm-footer-brand {
                margin: 0 auto;
            }

            .pm-footer-logo-row {
                justify-content: center;
            }

            .pm-footer-description {
                margin: 0 auto;
            }

            .pm-footer-links {
                justify-items: center;
            }

            .pm-footer-links a {
                justify-content: center;
            }

            .pm-footer-bottom {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                margin-top: 24px;
            }

            .pm-footer-mini-links {
                justify-content: center;
            }
        }

        @media (max-width: 420px) {
            .pm-footer-inner {
                padding-left: 14px;
                padding-right: 14px;
            }

            .pm-footer-brand-name {
                font-size: 20px;
            }

            .pm-footer-description,
            .pm-footer-links a {
                font-size: 12.5px;
            }

            .pm-footer-bottom {
                font-size: 11.5px;
            }
        }
    
        /* PM mobile footer: clean brand-only layout */
        @media (max-width: 700px) {
            .pm-site-footer {
                margin-top: 34px;
            }

            .pm-footer-inner {
                padding: 28px 18px 22px !important;
            }

            .pm-footer-grid {
                display: block !important;
                text-align: center !important;
            }

            .pm-footer-brand {
                max-width: 340px !important;
                margin: 0 auto !important;
                text-align: center !important;
            }

            .pm-footer-logo-row {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                margin-bottom: 12px !important;
            }

            .pm-footer-logo-box {
                width: 46px !important;
                height: 46px !important;
                border-radius: 15px !important;
            }

            .pm-footer-logo-box img {
                width: 32px !important;
                height: 32px !important;
            }

            .pm-footer-brand-name {
                font-size: 21px !important;
                text-align: left !important;
            }

            .pm-footer-brand-tag {
                font-size: 11px !important;
                text-align: left !important;
            }

            .pm-footer-description {
                max-width: 310px !important;
                margin: 0 auto !important;
                text-align: center !important;
                font-size: 12.5px !important;
                line-height: 1.6 !important;
            }
              .pm-footer-mini-links {
                  display: none !important;
              }

            .pm-footer-bottom {
                display: block !important;
                margin-top: 20px !important;
                padding-top: 16px !important;
                text-align: center !important;
                font-size: 11.5px !important;
                line-height: 1.45 !important;
            }
        }

        @media (max-width: 420px) {
            .pm-footer-inner {
                padding-left: 14px !important;
                padding-right: 14px !important;
            }

            .pm-footer-description {
                max-width: 280px !important;
                font-size: 12px !important;
            }

            .pm-footer-brand-name {
                font-size: 20px !important;
            }
        }

    
        /* PM footer logo separator and motto refinement */
        .pm-footer-logo-box {
            position: relative;
            margin-right: 10px;
        }

        .pm-footer-logo-box::after {
            content: "";
            position: absolute;
            top: 6px;
            right: -11px;
            width: 1px;
            height: 36px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.45);
            pointer-events: none;
        }

        .pm-footer-brand-tag {
            color: rgba(255, 255, 255, 0.86) !important;
            text-transform: none !important;
            letter-spacing: 0.15px !important;
            font-size: 12.5px !important;
            font-weight: 700 !important;
        }

        @media (max-width: 700px) {
            .pm-footer-logo-box {
                margin-right: 9px !important;
            }

            .pm-footer-logo-box::after {
                right: -10px;
                height: 34px;
            }

            .pm-footer-brand-tag {
                font-size: 12px !important;
            }
        }

    
        /* PM footer logo x1.2 */
        .pm-site-footer .pm-footer-logo-box {
            width: 58px !important;
            height: 58px !important;
            flex-basis: 58px !important;
        }

        .pm-site-footer .pm-footer-logo-box img {
            width: 41px !important;
            height: 41px !important;
        }

        .pm-site-footer .pm-footer-logo-box::after {
            top: 7px !important;
            height: 44px !important;
        }

        @media (max-width: 700px) {
            .pm-site-footer .pm-footer-logo-box {
                width: 55px !important;
                height: 55px !important;
                flex-basis: 55px !important;
            }

            .pm-site-footer .pm-footer-logo-box img {
                width: 38px !important;
                height: 38px !important;
            }

            .pm-site-footer .pm-footer-logo-box::after {
                top: 7px !important;
                height: 41px !important;
            }
        }

    
        /* PM footer logo separator balanced spacing */
        .pm-site-footer .pm-footer-logo-box {
            width: 41px !important;
            min-width: 41px !important;
            flex-basis: 41px !important;
            margin-right: 11px !important;
        }

        .pm-site-footer .pm-footer-logo-box::after {
            right: -12px !important;
        }

        .pm-site-footer .pm-footer-logo-row {
            gap: 12px !important;
        }

        @media (max-width: 700px) {
            .pm-site-footer .pm-footer-logo-box {
                width: 38px !important;
                min-width: 38px !important;
                flex-basis: 38px !important;
                margin-right: 10px !important;
            }

            .pm-site-footer .pm-footer-logo-box::after {
                right: -11px !important;
            }

            .pm-site-footer .pm-footer-logo-row {
                gap: 11px !important;
            }
        }

    
        /* PM footer real logo separator with equal spacing */
        .pm-site-footer .pm-footer-logo-row {
            gap: 12px !important;
        }

        .pm-site-footer .pm-footer-logo-box {
            margin-right: 0 !important;
        }

        .pm-site-footer .pm-footer-logo-box::after {
            display: none !important;
            content: none !important;
        }

        .pm-site-footer .pm-footer-logo-separator {
            display: inline-block !important;
            width: 1px !important;
            height: 44px !important;
            flex: 0 0 1px !important;
            border-radius: 999px !important;
            background: rgba(255, 255, 255, 0.45) !important;
        }

        @media (max-width: 700px) {
            .pm-site-footer .pm-footer-logo-row {
                gap: 11px !important;
            }

            .pm-site-footer .pm-footer-logo-separator {
                height: 41px !important;
            }
        }

    
/* PM FOOTER LEGAL COLUMN STYLE START */
.pm-footer-legal-column-links {
    margin: 0;
    padding-left: 16px;
    list-style-position: outside;
}

.pm-footer-legal-column-links li {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.35;
}

.pm-footer-legal-column-links a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.pm-footer-legal-column-links a:hover,
.pm-footer-legal-column-links a:focus {
    color: #9d2235;
    text-decoration: none;
}
/* PM FOOTER LEGAL COLUMN STYLE END */


/* PM FOOTER CLEAN THREE COLUMN LAYOUT START */
.pm-footer-main,
.footer-main,
.pm-footer-content,
.footer-content {
    align-items: flex-start;
}
/* PM FOOTER CLEAN THREE COLUMN LAYOUT END */

/* PM FIX: centered legal-brand-account footer order */
@media (min-width: 701px) {
    html body .pm-site-footer .pm-footer-inner {
        max-width: 1280px !important;
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    html body .pm-site-footer .pm-footer-grid {
        display: grid !important;
        grid-template-columns: 240px 360px 240px !important;
        justify-content: center !important;
        align-items: flex-start !important;
        column-gap: 78px !important;
        row-gap: 0 !important;
        text-align: left !important;
    }

    html body .pm-site-footer .pm-footer-column,
    html body .pm-site-footer .pm-footer-brand {
        justify-self: center !important;
        align-self: start !important;
    }

    html body .pm-site-footer .pm-footer-brand {
        max-width: 360px !important;
        width: 360px !important;
        text-align: left !important;
    }

    html body .pm-site-footer .pm-footer-logo-row {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
    }

    html body .pm-site-footer .pm-footer-column-legal,
    html body .pm-site-footer .pm-footer-column-account {
        width: 240px !important;
        max-width: 240px !important;
    }

    html body .pm-site-footer .pm-footer-bottom {
        justify-content: center !important;
        text-align: center !important;
    }

    html body .pm-site-footer .pm-footer-bottom > div {
        width: 100% !important;
        text-align: center !important;
    }
}

@media (min-width: 701px) and (max-width: 1050px) {
    html body .pm-site-footer .pm-footer-grid {
        grid-template-columns: 220px 320px 220px !important;
        column-gap: 38px !important;
    }

    html body .pm-site-footer .pm-footer-brand {
        width: 320px !important;
        max-width: 320px !important;
    }

    html body .pm-site-footer .pm-footer-column-legal,
    html body .pm-site-footer .pm-footer-column-account {
        width: 220px !important;
        max-width: 220px !important;
    }
}
/* PM FIX END: centered legal-brand-account footer order */

/* PM FIX: footer account column right visual balance */
@media (min-width: 701px) {
    html body .pm-site-footer .pm-footer-column-account {
        text-align: right !important;
    }

    html body .pm-site-footer .pm-footer-column-account .pm-footer-links {
        justify-items: end !important;
    }

    html body .pm-site-footer .pm-footer-column-account .pm-footer-links a {
        justify-content: flex-end !important;
        text-align: right !important;
    }
}
/* PM FIX END: footer account column right visual balance */

/* PM FIX: footer equal visible column distance */
@media (min-width: 701px) {
    html body .pm-site-footer .pm-footer-grid {
        grid-template-columns: max-content max-content max-content !important;
        justify-content: center !important;
        align-items: flex-start !important;
        column-gap: 120px !important;
    }

    html body .pm-site-footer .pm-footer-column,
    html body .pm-site-footer .pm-footer-column-legal,
    html body .pm-site-footer .pm-footer-column-account,
    html body .pm-site-footer .pm-footer-brand {
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        justify-self: center !important;
    }

    html body .pm-site-footer .pm-footer-column-account {
        text-align: left !important;
    }

    html body .pm-site-footer .pm-footer-column-account .pm-footer-links {
        justify-items: start !important;
    }

    html body .pm-site-footer .pm-footer-column-account .pm-footer-links a {
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

@media (min-width: 701px) and (max-width: 1050px) {
    html body .pm-site-footer .pm-footer-grid {
        column-gap: 64px !important;
    }
}
/* PM FIX END: footer equal visible column distance */

/* PM FIX: mobile footer real one-column legal account */
@media (max-width: 700px) {
    html body .pm-site-footer .pm-footer-inner {
        padding: 28px 18px 22px !important;
    }

    html body .pm-site-footer .pm-footer-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        justify-items: center !important;
        align-items: start !important;
        gap: 18px !important;
        text-align: center !important;
    }

    html body .pm-site-footer .pm-footer-brand {
        order: 1 !important;
        display: block !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        padding: 0 0 2px !important;
        text-align: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    html body .pm-site-footer .pm-footer-logo-row {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    html body .pm-site-footer .pm-footer-column,
    html body .pm-site-footer .pm-footer-column-legal,
    html body .pm-site-footer .pm-footer-column-account {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        width: min(100%, 320px) !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 15px 14px 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    html body .pm-site-footer .pm-footer-column-legal {
        order: 2 !important;
    }

    html body .pm-site-footer .pm-footer-column-account {
        order: 3 !important;
    }

    html body .pm-site-footer .pm-footer-column-title {
        margin: 0 0 10px !important;
        color: #ffffff !important;
        font-size: 12px !important;
        line-height: 1.15 !important;
        font-weight: 900 !important;
        letter-spacing: 0.55px !important;
        text-align: center !important;
    }

    html body .pm-site-footer .pm-footer-legal-column-links,
    html body .pm-site-footer .pm-footer-links {
        display: grid !important;
        justify-items: center !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        text-align: center !important;
    }

    html body .pm-site-footer .pm-footer-legal-column-links li,
    html body .pm-site-footer .pm-footer-links li {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        color: transparent !important;
        text-align: center !important;
    }

    html body .pm-site-footer .pm-footer-legal-column-links a,
    html body .pm-site-footer .pm-footer-links a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-height: 25px !important;
        padding: 0 8px !important;
        border-radius: 4px !important;
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
        text-align: center !important;
        text-decoration: none !important;
    }

    html body .pm-site-footer .pm-footer-legal-column-links a:hover,
    html body .pm-site-footer .pm-footer-links a:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.07) !important;
        transform: none !important;
    }

    html body .pm-site-footer .pm-footer-links a::before {
        display: none !important;
        content: none !important;
    }

    html body .pm-site-footer .pm-footer-bottom {
        display: block !important;
        margin-top: 20px !important;
        padding-top: 16px !important;
        text-align: center !important;
        font-size: 11.5px !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 420px) {
    html body .pm-site-footer .pm-footer-inner {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    html body .pm-site-footer .pm-footer-column,
    html body .pm-site-footer .pm-footer-column-legal,
    html body .pm-site-footer .pm-footer-column-account {
        width: min(100%, 292px) !important;
        max-width: 292px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    html body .pm-site-footer .pm-footer-legal-column-links a,
    html body .pm-site-footer .pm-footer-links a {
        font-size: 11.5px !important;
    }
}
/* PM FIX END: mobile footer real one-column legal account */

