/* Shared Marketplace Revival footer */
footer.mre-global-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #dbe4f0;
    background:
        radial-gradient(circle at 8% 0%, rgba(232, 168, 56, 0.14), transparent 28rem),
        #03142f;
    border-top: 4px solid #e8a838;
    font-family: var(--font-body, "Poppins", Arial, sans-serif);
}

.mre-global-footer,
.mre-global-footer * {
    box-sizing: border-box;
}

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

.mre-global-footer__shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mre-global-footer__main {
    display: grid;
    grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: clamp(28px, 4vw, 58px);
    padding: 54px 0 42px;
}

.mre-global-footer__brand img {
    width: 184px;
    height: auto;
    max-height: 78px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 18px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.mre-global-footer__brand p {
    max-width: 330px;
    margin: 0 0 22px;
    color: #b9c7da;
    font-size: 0.88rem;
    line-height: 1.75;
}

.mre-global-footer h2 {
    margin: 2px 0 18px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mre-global-footer__links,
.mre-global-footer__contact {
    display: grid;
    align-content: start;
    gap: 11px;
}

.mre-global-footer__links a,
.mre-global-footer__contact a,
.mre-global-footer__contact span {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    width: fit-content;
    color: #b9c7da;
    font-size: 0.82rem;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mre-global-footer__links a:hover,
.mre-global-footer__contact a:hover {
    color: #e8a838;
    transform: translateX(2px);
}

.mre-global-footer__contact i {
    width: 16px;
    margin-top: 3px;
    color: #e8a838;
    text-align: center;
}

.mre-global-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.mre-global-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    font-size: 0.8rem;
    font-weight: 800;
}

.mre-global-footer__socials a:hover {
    color: #03142f;
    background: #e8a838;
    border-color: #e8a838;
    transform: translateY(-2px);
}

.mre-global-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0 24px;
    color: #90a1b8;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.76rem;
}

.mre-global-footer__bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e8a838;
    font-weight: 700;
}

@media (max-width: 960px) {
    .mre-global-footer__main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .mre-global-footer__contact-wrap {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .mre-global-footer__shell {
        width: min(100% - 30px, 1180px);
    }

    .mre-global-footer__main {
        grid-template-columns: 1fr 1fr;
        padding: 42px 0 32px;
    }

    .mre-global-footer__brand,
    .mre-global-footer__contact-wrap {
        grid-column: 1 / -1;
    }
}

@media (max-width: 430px) {
    .mre-global-footer__main {
        grid-template-columns: 1fr;
    }

    .mre-global-footer__brand,
    .mre-global-footer__contact-wrap {
        grid-column: auto;
    }

    .mre-global-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
