Retail Buyer Identification

Your commercial intake data allows us to prioritize factory allocation and calculate direct-to-port logistics for your chain.

01
Intake
02
Technical RFP
03
Analysis
Secure 256-bit Encryption
VERIFIED_SESSION: 2026-X
const data = event.data; if (!data || typeof data !== 'object') return; // 1) Dynamic ref/company/email from child if (data.type === 'fdx_ref_update') { const refEl = document.querySelector('footer .js-ref'); if (refEl && data.refId) refEl.textContent = `Ref: ${data.refId}`; const companyEl = document.querySelector('footer .js-company'); if (companyEl && data.companyName) companyEl.textContent = data.companyName; const emailEl = document.querySelector('footer .js-email'); if (emailEl && data.email) { emailEl.textContent = data.email; emailEl.href = `mailto:${data.email}`; } } // 2) Auto-height (works when the child is YOUR page and posts height) if (data.type === 'fdx_iframe_height' && fdxFrame) { const next = Math.max(500, Number(data.height) || 0); fdxFrame.style.height = `${next}px`; } });