body {  position: relative;  /* important: create a stacking context but keep it default */ } body::before {  content: "";  position: fixed;  left: 0;  right: 0;  top: 0;  height: 100px;  pointer-events: none;  z-index: 0;                     /* put this in a low layer */  backdrop-filter: blur(16px);  -webkit-backdrop-filter: blur(16px);  mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); } /* adjust selector to your Cargo menu class/id */ #menu, .nav_overlay, .header-fixed {  position: fixed;      /* or sticky, depending on your layout */  top: 0;  left: 0;  right: 0;  z-index: 10;          /* higher than body::before */ }
2025 © Visual Engine UB AB
Stockholm /