/* PackFlow custom styles (no SVG used) */
:root{
  --pf-glow: 0 20px 60px rgba(0,0,0,.18);
}

/* Ensure minimum font size */
html{ font-size: 16px; }
body{ font-size: 16px; }

/* Parallax helpers */
.pf-parallax{
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px){
  .pf-parallax{ background-attachment: scroll; }
}

/* Soft neon glow card */
.pf-glow{
  box-shadow: var(--pf-glow);
}

/* Popup */
#pfPopup[aria-hidden="true"]{ display:none; }
#pfPopup[aria-hidden="false"]{ display:block; }

/* Cookie banner (home only) */
#pfCookie.is-hidden{ display:none; }
