/**
 * Logged-in storefront header offset.
 *
 * The active theme owns the sticky header and its logged-out top: 0 position.
 * This override only prevents WordPress's fixed admin bar from covering the
 * header controls and cart badge while an administrator is signed in.
 */
body.admin-bar .em-site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .em-site-header {
    top: 46px;
  }
}
