Fix sticky header on Impulse Theme

Thanks - fixed now, was changing the custom domain. I’m still not seeing the vertical padding reduction on my end. Is there any code I can use to force it?

The preview link works fine on my devices/browsers…

May try making some rules selectors stronger, like

header#SiteHeader {
    transform: none;
    transition: padding 0.2s linear;
  }
  
  #SiteHeader.site-header--stuck {
    padding: 0;
  }
  .shopify-section-group-header-group {
    position: sticky;
    top: 0;
    z-index: 28;
  }

or use !important on padding?