/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  background-color: var(--hh-color-background);
  z-index: 101;
}

.header-wrapper--border-bottom {
  border-bottom: 0.0625rem solid var(--hh-color-light);
}

.header-wrapper[transparent] {
  --hh-color: var(--hh-color-background);
  --hh-color-text: var(--hh-color-background);
}

.header-wrapper {
  --hh-color: var(--hh-color-text);
  --hh-color-text: var(--hh-color-text);
}

.header-wrapper .header-wrapper__inner {
  transition: background-color var(--hh-duration-long) ease,
    color var(--hh-duration-long) ease;
  border-bottom: 0.0625rem solid var(--hh-color-night-light-opacity);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}

.header-wrapper[transparent] .header-wrapper__inner {
  background-color: transparent;
  border-bottom: 0.0625rem solid var(--hh-color-day-light-opacity);
}

.header-wrapper .header {
  flex: 1;
  display: grid;
  grid-template-areas: 'navigation heading icons';
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.9375rem 0.6250rem 0.9375rem 1.0000rem;
}

@media screen and (min-width: 990px) {
  .header-wrapper .header {
    padding: 1.2500rem 0.6250rem 0.6250rem;
    grid-template-columns: 1fr minmax(15.6250rem, auto) 1fr;
  }

  .header-wrapper .header.container--full-width {
    padding: 1.2500rem 2.2500rem 0.6250rem;
  }

  .header--has-menu {
    padding-bottom: 0;
  }
}

.header *[tabindex='-1']:focus {
  outline: none;
}

.header__heading {
  margin: 0;
  line-height: 0;
}

.header > .header__heading-link {
  line-height: 0;
}

.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}

.header__heading-link {
  display: inline-block;
  text-decoration: none;
  word-break: break-word;
}

.header__heading-link .h2 {
  line-height: 1;
  color: var(--hh-color-neutral);
}

.header__heading-link {
  transform: scale(0.7);
}

.header__heading-logo-wrapper {
  transition: color var(--hh-duration-long) ease;
  padding: 0.1250rem;
}

@media screen and (min-width: 750px) {
  .header__heading-link {
    transform: scale(0.95);
  }
}

.header__heading-logo-wrapper .icon-logo {
  display: block;
}

.header__heading-logo {
  height: auto;
  width: 100%;
}

.header__utility {
  align-items: center;
  display: flex;
  grid-area: icons;
  justify-self: end;
}

.header__utility .header__utility-account {
  display: none;
}

@media screen and (min-width: 990px) {
  .header__utility .header__utility-account {
    display: inline-flex;
  }

  .header__utility > *:last-child {
    margin-right: 0;
  }
}

.header__utility .cart__empty {
  display: none;
}

@media screen and (min-width: 750px) {
  .header__utility .cart__empty {
    display: inline-block;
    margin-left: 0.3750rem;
  }
}

.nav-cart__button {
  --hh-padding: 0 0.6250rem;
  position: relative;
}

.nav-cart__count {
  position: absolute;
  top: -1px;
  right: 6px;
  width: 0.7500rem;
  height: 0.7500rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--hh-color-foreground, #000);
  border-radius: 50%;
  font-size: 0.4375rem;
  line-height: 1;
  color: var(--hh-color-background, #fff);
}

@media screen and (max-width: 989px) {
  .header__utility {
    gap: 0.6250rem;
  }

  .nav-cart__button {
    --hh-padding: 0.2500rem;
    position: relative;
  }

  .nav-cart__count {
    right: 0;
  }
}

/* Header menu */
.header__inline-menu {
  margin-left: -0.7500rem;
  grid-area: navigation;
  display: none;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
    z-index: 111;
    background-color: transparent;
  }
}

.header__menu {
  padding: 0 0.6250rem;
}

.header__menu-item {
  display: flex;
  align-items: center;
  padding: 0.7188rem;
  position: relative;
  text-decoration: none;
  color: var(--hh-color-text);
  font: var(--hh-body-small-font);
  cursor: pointer;
}

.header__menu-item:hover {
  color: var(--hh-color-subdued);
}

.header__menu-item__link__button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.header__menu-item svg {
  position: absolute;
  height: 0.3750rem;
  right: 0.5000rem;
  top: calc(50% - 0.2188rem);
}

.header__active-menu-item {
  transition: text-decoration-thickness var(--hh-duration-short) ease,
    color var(--hh-duration-long) ease;
  color: var(--hh-color-text);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.header__menu-item span,
.header__active-menu-item {
  transition: color var(--hh-duration-long) ease;
}

.header__submenu {
  transition: opacity var(--hh-duration-default) ease,
    transform var(--hh-duration-default) ease;
}

.header__submenu--child {
  background-color: var(--hh-color-background);
  left: 0;
  position: absolute;
  right: 0;
}

.header__submenu--child-content {
  display: flex;
  padding-top: 2.5000rem;
  padding-bottom: 2.5000rem;
}

.header__submenu--child-content
  ul
  .header__submenu-list--child:first-of-type
  a {
  padding-left: 0;
}

.header__submenu-list--child > a {
  font-weight: bold;
}

.header__submenu--child .header__submenu {
  display: flex;
  flex: 1;
}

.header__submenu--grandchild {
  flex-direction: column;
}

.header__submenu .header__menu-item:after {
  right: 1.2500rem;
}

.header__submenu .header__menu-item {
  padding: 0.5938rem 2.1875rem 0.5938rem 1.2500rem;
}

.header__menu-item .icon-caret {
  right: 0.5000rem;
}

.header__submenu .icon-caret {
  right: 1.2500rem;
}

.header__product-card {
  max-width: 180px;
}

.extend-border::before,
.extend-border::after {
  content: '';
  background-color: var(--hh-color-brand-tertiary);
  display: block;
  height: 1px;
  left: -100%;
  position: absolute;
  top: -1px;
  width: 100%;
}

.extend-border::after {
  left: 100%;
}

.h100 {
  height: 100%;
}

body:has(klarna-osm-interstitial) {
  position: fixed;
  overflow: hidden;
  max-width: 100vw;
}
