@media(min-width:901px){
  .site-header{
    transition:transform .34s cubic-bezier(.2,.8,.2,1),opacity .22s ease,box-shadow .22s ease;
    will-change:transform,opacity;
  }
  .site-header.is-scroll-hidden{
    transform:translate(-50%,var(--smart-header-hide-y,-140px));
    opacity:0;
    pointer-events:none;
  }

  .catalog-shop-header--floating-only{
    transition:top .34s cubic-bezier(.2,.8,.2,1);
  }
  html[data-header-scroll-state="hidden"] .catalog-shop-header--floating-only{
    top:18px!important;
  }
  html[data-header-scroll-state="hidden"] body.catalog-shop-active:has(.utility-bar) .catalog-shop-header--floating-only{
    top:calc(var(--utility) + 18px)!important;
  }
}

@media(prefers-reduced-motion:reduce){
  .site-header,
  .catalog-shop-header--floating-only{
    transition:none!important;
  }
}
