setTimeout(() => {
const style = document.createElement("style");
style.textContent = `
[aria-label="Open Framer Menu"] {
display: none !important;
opacity: 0 !important;
pointer-events: none !important;
}
`;
document.head.appendChild(style);
console.log("✅ CSS injected: [aria-label='Open Framer Menu'] is now hidden.");
}, 5000); // 2000 ms = 2 seconds





