.spb-site-header,
.spb-site-header * {
  box-sizing: border-box;
}

.spb-site-header {
  --spb-header-bg: #fff;
  --spb-header-text: #172019;
  --spb-header-accent: #183922;
  --spb-header-line: #e7e9e7;
  --spb-header-cta: #183922;
  --spb-header-cta-text: #fff;
  --spb-header-logo: 176px;
  --spb-header-logo-mobile: 132px;
  position: relative;
  z-index: 9990;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: var(--spb-header-text);
  background: var(--spb-header-bg);
  border-bottom: 1px solid var(--spb-header-line);
  font-family: inherit;
}

.spb-site-header--sticky {
  position: relative;
}

.spb-site-header--sticky.is-stuck {
  position: fixed !important;
  top: var(--spb-sticky-offset, 0px) !important;
  right: 0;
  left: 0;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  z-index: 99990;
}

.spb-site-header__sticky-spacer {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.spb-site-header a,
.spb-site-header button,
.spb-site-header input {
  font: inherit;
}

.spb-site-header a {
  text-decoration: none;
}

.spb-site-header button {
  border: 0;
  cursor: pointer;
}

.spb-site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1440px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
}

.spb-site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  max-width: var(--spb-header-logo);
  color: var(--spb-header-text);
}

.spb-site-header__logo-image {
  display: block;
  width: auto;
  max-width: var(--spb-header-logo);
  max-height: 56px;
  object-fit: contain;
}

.spb-site-header__site-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.spb-site-header__nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: 38px;
}

.spb-site-header__nav-list {
  display: flex;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spb-site-header__nav-item {
  position: static;
  display: flex;
  align-items: stretch;
  margin: 0;
}

.spb-site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 75px;
  padding: 0 15px;
  color: var(--spb-header-text) !important;
  background: transparent;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.spb-site-header__nav-link::after {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: var(--spb-header-accent);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}

.spb-site-header__nav-link:hover,
.spb-site-header__nav-link:focus-visible,
.spb-site-header__nav-item--mega.is-open > .spb-site-header__nav-link {
  color: var(--spb-header-text) !important;
  outline: none;
}

.spb-site-header__nav-link:hover::after,
.spb-site-header__nav-link:focus-visible::after,
.spb-site-header__nav-item--mega.is-open > .spb-site-header__nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.spb-site-header__chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.spb-site-header__nav-item--mega.is-open .spb-site-header__chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.spb-site-header__action,
.spb-site-header__mega-cta,
.spb-site-header__mobile-drawer-cta {
  border-radius: 6px;
}

.spb-site-header__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 18px;
  padding: 11px 18px;
  color: var(--spb-header-cta-text) !important;
  background: var(--spb-header-cta);
  border: 1px solid var(--spb-header-cta);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity .18s ease, transform .18s ease;
}

.spb-site-header__action:hover,
.spb-site-header__action:focus-visible {
  color: var(--spb-header-cta-text) !important;
  opacity: .9;
  outline: none;
  transform: translateY(-1px);
}

.spb-site-header__menu-toggle,
.spb-site-header__mobile-drawer,
.spb-site-header__mobile-bottom {
  display: none;
}

/* Desktop mega menu. The mega element starts exactly at the header edge so the pointer
   can move from the label into the panel without crossing a dead gap. */
.spb-site-header__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  width: calc(100% - 36px);
  max-width: 1460px;
  padding-top: 7px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: visibility .18s ease, opacity .18s ease, transform .18s ease;
}

.spb-site-header__mega::before {
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.spb-site-header__nav-item--mega:hover > .spb-site-header__mega,
.spb-site-header__nav-item--mega:focus-within > .spb-site-header__mega,
.spb-site-header__nav-item--mega.is-open > .spb-site-header__mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.spb-site-header__mega-shell {
  overflow: hidden;
  background: var(--spb-header-bg);
  border: 1px solid var(--spb-header-line);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 20px 42px rgba(20, 27, 22, .14);
}

.spb-site-header__mega-inner {
  display: grid;
  grid-template-columns: minmax(195px, 24%) minmax(0, 1fr);
  width: min(1240px, calc(100% - 42px));
  min-height: 292px;
  margin: 0 auto;
  padding: 20px 0 22px;
}

.spb-site-header__mega-types {
  padding: 0 20px 0 0;
  border-right: 1px solid var(--spb-header-line);
}

.spb-site-header__mega-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--spb-header-text);
  background: transparent;
  border-bottom: 1px solid var(--spb-header-line);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  transition: color .16s ease, background .16s ease;
}

.spb-site-header__mega-type:hover,
.spb-site-header__mega-type:focus-visible,
.spb-site-header__mega-type.is-active {
  color: var(--spb-header-cta-text);
  background: var(--spb-header-accent);
  outline: none;
}

.spb-site-header__mega-content {
  min-width: 0;
}

.spb-site-header__mega-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 39%);
  gap: 30px;
  height: 100%;
  padding-left: 28px;
}

.spb-site-header__mega-panel.is-active {
  display: grid;
}

.spb-site-header__mega-copy {
  align-self: start;
  min-width: 0;
  padding: 0;
}

.spb-site-header__mega-kicker {
  margin: 0 0 6px;
  color: var(--spb-header-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.spb-site-header__mega-copy h3 {
  margin: 0;
  color: var(--spb-header-text);
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.5px;
}

.spb-site-header__mega-teaser {
  max-width: 590px;
  margin: 10px 0 14px;
  color: var(--spb-header-text);
  opacity: .72;
  font-size: 15.5px;
  line-height: 1.6;
}

.spb-site-header__mega-packages {
  display: grid;
  gap: 0;
  max-width: 620px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--spb-header-line);
  list-style: none;
}

.spb-site-header__mega-packages li {
  margin: 0;
  border-bottom: 1px solid var(--spb-header-line);
}

.spb-site-header__mega-packages a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 2px;
  color: var(--spb-header-text) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transform: translateX(0);
  transition: color .18s ease, transform .18s ease;
}

.spb-site-header__mega-packages a > span[aria-hidden="true"] {
  transition: transform .18s ease;
}

.spb-site-header__mega-packages a:hover,
.spb-site-header__mega-packages a:focus-visible {
  color: var(--spb-header-accent) !important;
  outline: none;
  transform: translateX(5px);
}

.spb-site-header__mega-packages a:hover > span[aria-hidden="true"],
.spb-site-header__mega-packages a:focus-visible > span[aria-hidden="true"] {
  transform: translateX(4px);
}

.spb-site-header__mega-posts {
  max-width: 620px;
  margin-top: 14px;
}

.spb-site-header__mega-posts-heading {
  margin: 0 0 6px;
  color: var(--spb-header-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.spb-site-header__mega-posts ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spb-site-header__mega-posts li {
  margin: 0;
}

.spb-site-header__mega-posts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 10px;
  color: var(--spb-header-text) !important;
  background: transparent;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  transition: color .18s ease, transform .18s ease, background .18s ease;
}

.spb-site-header__mega-posts a:hover,
.spb-site-header__mega-posts a:focus-visible {
  color: var(--spb-header-accent) !important;
  background: var(--spb-header-line);
  outline: none;
  transform: translateX(4px);
}

.spb-site-header__mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 9px 13px;
  color: var(--spb-header-cta-text) !important;
  background: var(--spb-header-cta);
  font-size: 14px;
  font-weight: 800;
}

.spb-site-header__mega-cta:hover,
.spb-site-header__mega-cta:focus-visible {
  color: var(--spb-header-cta-text) !important;
  opacity: .9;
  outline: none;
}

.spb-site-header__mega-media {
  min-width: 0;
  min-height: 248px;
  overflow: hidden;
  background: var(--spb-header-line);
  border-radius: 8px;
}

.spb-site-header__mega-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
}

.spb-site-header__mega-placeholder {
  width: 100%;
  height: 100%;
  min-height: 248px;
  background: var(--spb-header-line);
}

.spb-site-header-disabled {
  padding: 12px;
  border: 1px dashed #b8b8b8;
  background: #fff;
  color: #555;
  text-align: center;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .spb-site-header__bar {
    width: min(100% - 30px, 1440px);
  }

  .spb-site-header__nav {
    margin-left: 20px;
  }

  .spb-site-header__nav-link {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .spb-site-header__action {
    margin-left: 10px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .spb-site-header__mega-inner {
    width: calc(100% - 34px);
  }
}

@media (max-width: 900px) {
  body.spb-site-header-has-app-nav {
    padding-bottom: calc(65px + env(safe-area-inset-bottom));
  }

  .spb-site-header__bar {
    justify-content: space-between;
    width: min(100% - 24px, 1440px);
    min-height: 62px;
  }

  .spb-site-header__brand {
    max-width: var(--spb-header-logo-mobile);
  }

  .spb-site-header__logo-image {
    max-width: var(--spb-header-logo-mobile);
    max-height: 44px;
  }

  .spb-site-header__nav {
    display: none !important;
  }

  .spb-site-header__menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--spb-header-text);
    background: transparent;
    border-radius: 6px;
  }

  .spb-site-header__menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .spb-site-header.is-menu-open .spb-site-header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .spb-site-header.is-menu-open .spb-site-header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .spb-site-header.is-menu-open .spb-site-header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .spb-site-header__mobile-drawer {
    position: absolute;
    top: calc(100% + 1px);
    right: -12px;
    left: -12px;
    z-index: 20;
    max-height: calc(100vh - 82px);
    padding: 10px 14px 15px;
    overflow-y: auto;
    background: var(--spb-header-bg);
    border-bottom: 1px solid var(--spb-header-line);
    box-shadow: 0 16px 30px rgba(20, 27, 22, .14);
  }

  .spb-site-header.is-menu-open .spb-site-header__mobile-drawer {
    display: block;
  }

  .spb-site-header__mobile-drawer ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .spb-site-header__mobile-drawer li {
    margin: 0;
    border-bottom: 1px solid var(--spb-header-line);
  }

  .spb-site-header__mobile-drawer li a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 48px;
    padding: 9px 3px;
    color: var(--spb-header-text) !important;
    font-size: 16px;
    font-weight: 700;
  }

  .spb-site-header__mobile-arrow {
    color: var(--spb-header-text);
    opacity: .55;
  }

  .spb-site-header__mobile-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 13px;
    padding: 10px 14px;
    color: var(--spb-header-cta-text) !important;
    background: var(--spb-header-cta);
    font-size: 15px;
    font-weight: 800;
  }

  .spb-site-header__mobile-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99995;
    display: flex;
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding: 5px 5px env(safe-area-inset-bottom);
    background: var(--spb-header-bg);
    border-top: 1px solid var(--spb-header-line);
    box-shadow: 0 -7px 22px rgba(20, 27, 22, .08);
  }

  .spb-site-header__mobile-bottom > a {
    position: relative;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 52px;
    padding: 4px 3px;
    color: var(--spb-header-text) !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
  }

  .spb-site-header__mobile-bottom > a::after {
    position: absolute;
    right: 28%;
    bottom: 1px;
    left: 28%;
    height: 2px;
    background: var(--spb-header-accent);
    content: "";
    opacity: 0;
  }

  .spb-site-header__mobile-bottom > a.is-current,
  .spb-site-header__mobile-bottom > a:hover,
  .spb-site-header__mobile-bottom > a:focus-visible {
    color: var(--spb-header-accent) !important;
    outline: none;
  }

  .spb-site-header__mobile-bottom > a.is-current::after {
    opacity: 1;
  }

  .spb-site-header__mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    margin-bottom: 2px;
    color: currentColor;
  }

  .spb-site-header__mobile-drawer .spb-site-header__mobile-icon {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .spb-site-header__mobile-icon svg,
  .spb-site-header__mobile-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .spb-site-header__mobile-label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.spb-site-header-menu-open {
    overflow: hidden;
  }
}

/* v1.1.8 customer account and language utilities. */
.spb-site-header__utilities {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  margin-left: 14px;
}

.spb-site-header__utilities .spb-site-header__action {
  margin-left: 0;
}

.spb-site-header__popover {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.spb-site-header__utility-button,
.spb-site-header__account-direct {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 9px;
  color: var(--spb-header-text) !important;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
}

.spb-site-header__utility-button:hover,
.spb-site-header__utility-button:focus-visible,
.spb-site-header__popover.is-open > .spb-site-header__utility-button,
.spb-site-header__account-direct:hover,
.spb-site-header__account-direct:focus-visible {
  color: var(--spb-header-text) !important;
  background: transparent;
  border-color: var(--spb-header-line);
  outline: none;
}

.spb-site-header__utility-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.spb-site-header__utility-chevron {
  width: 6px;
  height: 6px;
  margin: -3px 1px 0 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .16s ease;
}

.spb-site-header__popover.is-open .spb-site-header__utility-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.spb-site-header__popover-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  display: none;
  min-width: 210px;
  padding: 7px;
  background: var(--spb-header-bg);
  border: 1px solid var(--spb-header-line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 27, 22, .15);
}

.spb-site-header__popover.is-open > .spb-site-header__popover-menu {
  display: grid;
}

.spb-site-header__popover-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--spb-header-text) !important;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.spb-site-header__popover-menu a:hover,
.spb-site-header__popover-menu a:focus-visible,
.spb-site-header__popover-menu a.is-current {
  color: var(--spb-header-accent) !important;
  background: color-mix(in srgb, var(--spb-header-line) 68%, transparent);
  outline: none;
}

.spb-site-header__account-menu a.spb-site-header__signout {
  margin-top: 4px;
  border-top: 1px solid var(--spb-header-line);
  border-radius: 0 0 5px 5px;
}

.spb-site-header__language-menu a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.spb-site-header__language-menu a small {
  color: var(--spb-header-text);
  opacity: .55;
  font-size: 11px;
  font-weight: 800;
}

.spb-site-header__language-menu a strong {
  color: var(--spb-header-accent);
}

.spb-site-header__language-flag {
  display: block;
  width: 21px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.spb-site-header__mobile-tools {
  display: none;
}

@media (max-width: 1240px) and (min-width: 901px) {
  .spb-site-header__utilities {
    gap: 4px;
    margin-left: 8px;
  }

  .spb-site-header__utility-button,
  .spb-site-header__account-direct {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 13px;
  }

  .spb-site-header__utility-icon {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 900px) {
  .spb-site-header__mobile-tools {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
  }

  .spb-site-header__language--mobile {
    display: inline-flex;
  }

  .spb-site-header__language--mobile .spb-site-header__utility-button {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 13px;
  }

  .spb-site-header__language--mobile .spb-site-header__utility-icon {
    width: 18px;
    height: 18px;
  }

  .spb-site-header__language--mobile .spb-site-header__popover-menu {
    position: fixed;
    top: 61px;
    right: 10px;
    min-width: min(250px, calc(100vw - 20px));
  }

  .spb-site-header__mobile-section {
    margin: 0 0 12px;
    padding: 0 0 7px;
    border-bottom: 1px solid var(--spb-header-line);
  }

  .spb-site-header__mobile-section:last-of-type {
    border-bottom: 0;
  }

  .spb-site-header__mobile-section h3 {
    margin: 3px 3px 5px;
    color: var(--spb-header-text);
    opacity: .62;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .spb-site-header__mobile-languages li a {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .spb-site-header__mobile-languages li a small {
    color: var(--spb-header-text);
    opacity: .55;
    font-size: 12px;
    font-weight: 800;
  }

  .spb-site-header__mobile-languages li a strong {
    color: var(--spb-header-accent);
  }

  .spb-site-header__mobile-languages li a.is-current {
    color: var(--spb-header-accent) !important;
  }

  .spb-site-header__mobile-languages .spb-site-header__language-flag {
    width: 23px;
    height: 16px;
  }
}

/* v1.1.9 — slim utility bar, search banner and GTranslate integration. */
.spb-site-header {
  --spb-utility-bg: #f5f6f5;
  --spb-utility-text: #172019;
}

.spb-site-header__utility-bar {
  position: relative;
  z-index: 30;
  width: 100%;
  color: var(--spb-utility-text);
  background: var(--spb-utility-bg);
  border-bottom: 1px solid var(--spb-header-line);
}

.spb-site-header__utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(1440px, calc(100% - 48px));
  min-height: 36px;
  margin: 0 auto;
}

.spb-site-header__utility-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  min-width: 0;
}

.spb-site-header__utility-bar .spb-site-header__utility-button,
.spb-site-header__utility-bar .spb-site-header__account-direct,
.spb-site-header__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 8px;
  color: var(--spb-utility-text) !important;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
  white-space: nowrap;
}

.spb-site-header__search-toggle {
  width: 35px;
  padding-right: 7px;
  padding-left: 7px;
}

.spb-site-header__utility-bar .spb-site-header__utility-button:hover,
.spb-site-header__utility-bar .spb-site-header__utility-button:focus-visible,
.spb-site-header__utility-bar .spb-site-header__popover.is-open > .spb-site-header__utility-button,
.spb-site-header__utility-bar .spb-site-header__account-direct:hover,
.spb-site-header__utility-bar .spb-site-header__account-direct:focus-visible,
.spb-site-header__search-toggle:hover,
.spb-site-header__search-toggle:focus-visible,
.spb-site-header.is-search-open .spb-site-header__search-toggle {
  color: var(--spb-utility-text) !important;
  background: color-mix(in srgb, var(--spb-header-line) 62%, transparent);
  border-color: transparent;
  outline: none;
}

.spb-site-header__utility-bar .spb-site-header__utility-icon,
.spb-site-header__search-toggle .spb-site-header__utility-icon {
  width: 17px;
  height: 17px;
}

.spb-site-header__utility-bar .spb-site-header__popover-menu {
  top: calc(100% + 3px);
  color: var(--spb-header-text);
  background: var(--spb-header-bg);
}

.spb-site-header__utility-bar .spb-site-header__popover::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  height: 5px;
  content: "";
}

@media (min-width: 901px) {
  .spb-site-header__utility-bar .spb-site-header__language:not(.is-selection-closing):hover > .spb-site-header__popover-menu,
  .spb-site-header__utility-bar .spb-site-header__language:not(.is-selection-closing):focus-within > .spb-site-header__popover-menu {
    display: grid;
  }

  .spb-site-header__utility-bar .spb-site-header__language:not(.is-selection-closing):hover > .spb-site-header__utility-button .spb-site-header__utility-chevron,
  .spb-site-header__utility-bar .spb-site-header__language:not(.is-selection-closing):focus-within > .spb-site-header__utility-button .spb-site-header__utility-chevron {
    margin-top: 3px;
    transform: rotate(225deg);
  }
}

.spb-site-header__search-panel {
  position: relative;
  z-index: 29;
  overflow: hidden;
  width: 100%;
  max-height: 0;
  color: var(--spb-header-text);
  background: var(--spb-header-bg);
  border-bottom: 0 solid var(--spb-header-line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height .22s ease, opacity .16s ease, border-width .16s ease, visibility 0s linear .22s;
}

.spb-site-header.is-search-open .spb-site-header__search-panel {
  max-height: 82px;
  border-bottom-width: 1px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.spb-site-header__search-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  width: min(980px, calc(100% - 48px));
  min-height: 66px;
  margin: 0 auto;
}

.spb-site-header__search-panel input[type="search"] {
  width: 100%;
  min-width: 0;
  height: 44px;
  margin: 0;
  padding: 9px 14px;
  color: var(--spb-header-text);
  background: #fff;
  border: 1px solid var(--spb-header-line);
  border-radius: 6px;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.3;
  outline: none;
}

.spb-site-header__search-panel input[type="search"]:focus {
  border-color: var(--spb-header-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--spb-header-accent) 14%, transparent);
}

.spb-site-header__search-submit {
  min-height: 44px;
  padding: 9px 17px;
  color: var(--spb-header-cta-text) !important;
  background: var(--spb-header-cta);
  border: 1px solid var(--spb-header-cta) !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.spb-site-header__search-submit:hover,
.spb-site-header__search-submit:focus-visible {
  opacity: .9;
  outline: none;
}

.spb-site-header__search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--spb-header-text);
  background: transparent;
  border: 0;
  border-radius: 5px;
}

.spb-site-header__search-close:hover,
.spb-site-header__search-close:focus-visible {
  background: color-mix(in srgb, var(--spb-header-line) 65%, transparent);
  outline: none;
}

.spb-site-header__gtranslate-engine {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Account and language controls now belong to the utility bar; the main header keeps only its CTA. */
.spb-site-header__nav .spb-site-header__utilities {
  margin-left: 12px;
}

@media (max-width: 900px) {
  .spb-site-header__utility-inner {
    width: calc(100% - 20px);
    min-height: 35px;
  }

  .spb-site-header__utility-actions {
    width: 100%;
  }

  .spb-site-header__utility-bar .spb-site-header__utility-button,
  .spb-site-header__utility-bar .spb-site-header__account-direct,
  .spb-site-header__search-toggle {
    min-height: 33px;
    padding: 4px 6px;
    font-size: 12.5px;
  }

  .spb-site-header__search-toggle {
    width: 32px;
    margin-right: auto;
  }

  .spb-site-header__utility-bar .spb-site-header__utility-icon,
  .spb-site-header__search-toggle .spb-site-header__utility-icon {
    width: 16px;
    height: 16px;
  }

  .spb-site-header__utility-bar .spb-site-header__popover-menu {
    right: 0;
    min-width: min(250px, calc(100vw - 20px));
  }

  .spb-site-header__bar {
    width: calc(100% - 20px);
    min-height: 61px;
  }

  .spb-site-header.is-search-open .spb-site-header__search-panel {
    max-height: 74px;
  }

  .spb-site-header__search-panel form {
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 6px;
  }

  .spb-site-header__search-panel input[type="search"] {
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .spb-site-header__search-submit {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .spb-site-header__search-close {
    width: 36px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .spb-site-header__utility-bar .spb-site-header__account-direct span,
  .spb-site-header__utility-bar .spb-site-header__account > .spb-site-header__utility-button > span:not(.spb-site-header__utility-chevron) {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .spb-site-header__search-submit {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 900px) {
  .spb-site-header--hide-mobile-language .spb-site-header__utility-bar .spb-site-header__language {
    display: none;
  }
}


/* v1.1.10 — the shortcode switcher is the only visible GTranslate control. */
body.spb-gtranslate-custom-switcher-active [data-spb-gtranslate-suppressed="1"],
body.spb-gtranslate-custom-switcher-active > .gt_float_switcher,
body.spb-gtranslate-custom-switcher-active > .gt_switcher_wrapper,
body.spb-gtranslate-custom-switcher-active > .gt_switcher,
body.spb-gtranslate-custom-switcher-active > #gt_float_wrapper,
body.spb-gtranslate-custom-switcher-active > .gtranslate_wrapper,
body.spb-gtranslate-custom-switcher-active > [id^="gtranslate_wrapper"],
body.spb-gtranslate-custom-switcher-active > .gtranslate-dropdown-container,
body.spb-gtranslate-custom-switcher-active > a.glink,
body.spb-gtranslate-custom-switcher-active .gt_float_switcher:not(.spb-site-header__gtranslate-engine *),
body.spb-gtranslate-custom-switcher-active .gt_switcher_wrapper:not(.spb-site-header__gtranslate-engine *),
body.spb-gtranslate-custom-switcher-active #gt_float_wrapper:not(.spb-site-header__gtranslate-engine *) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* v1.1.11 — use GTranslate's official gt-link shortcode for dependable switching. */
.spb-site-header__language-menu .spb-site-header__gtranslate-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 5px;
}

.spb-site-header__language-menu .spb-site-header__gtranslate-option:hover,
.spb-site-header__language-menu .spb-site-header__gtranslate-option:focus-within,
.spb-site-header__language-menu .spb-site-header__gtranslate-option.is-current {
  background: color-mix(in srgb, var(--spb-header-accent) 10%, transparent);
}

.spb-site-header__language-menu .spb-site-header__gtranslate-official {
  display: flex !important;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 42px;
  color: inherit !important;
  font: inherit !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.spb-site-header__language-menu .spb-site-header__gtranslate-official img {
  flex: 0 0 auto;
  width: 22px !important;
  height: 15px !important;
  object-fit: cover;
  border-radius: 2px;
}

.spb-site-header__language-menu .spb-site-header__gtranslate-option > small {
  color: color-mix(in srgb, var(--spb-header-text) 62%, transparent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.spb-site-header__language-menu .spb-site-header__gtranslate-option > strong {
  color: var(--spb-header-accent);
  font-size: 13px;
}

.spb-site-header__language-menu .spb-site-header__gtranslate-official:focus-visible {
  outline: 2px solid var(--spb-header-accent) !important;
  outline-offset: 2px;
}



/* v1.1.12 — current-language flag sync and immediate menu close after selection. */
.spb-site-header__current-language-flag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.spb-site-header__current-language-flag[hidden],
.spb-site-header__language-menu strong[hidden] {
  display: none !important;
}

.spb-site-header__language.is-selection-closing > .spb-site-header__popover-menu {
  display: none !important;
}

.spb-site-header__language.is-selection-closing > .spb-site-header__utility-button .spb-site-header__utility-chevron {
  margin-top: -3px !important;
  transform: rotate(45deg) !important;
}
