.header-message p {
  font-weight: 500;
  font-size: 24px;
  background: var(--top-message-gb);
  color: var(--top-message-color);
  text-align: center;
  padding: 16px;
  letter-spacing: 0.03em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  align-items: center;
}
.header-message p.hidden {
  display: none;
}
.header-message button.copy {
  background-color: var(--top-message-btn-gb);
  color: var(--top-message-btn-color);
  padding: 3px 25px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  display: inline-flex;
  gap: 10px;
  text-decoration: unset;
  border: 0;
  align-items: stretch;
}
.header-message button.copy:before {
  content: "";
  background-image: var(--copy-icon-url);
  width: 14px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.header-message:after {
  content: "";
  height: 56px;
  display: block;
  background-image: url("/templates/images/icons/icon-semicircle.svg");
  background-repeat: repeat-x;
  background-size: auto 40px;
  background-position: top;
}
.header-message span.full-width {
  flex-basis: 100%;
  width: 100%;
}
.header-content {
  text-align: center;
  position: relative;
  max-width: 1400px;
  margin: auto;
  padding: 0 16px;
  box-sizing: content-box;
}
.header-content .nav-toggle {
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto 0;
  background-image: var(--hamburger-icon-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 24px;
}
.header-content .nav-toggle span {
  display: none;
}
.header-content .logo {
  width: 300px;
  margin: 0 auto 24px;
  display: block;
}
.header-content .logo img {
  width: 100%;
}
.header-content .header.links {
  height: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  right: 16px;
  top: 0;
}
.header-content .header.links > * {
  margin-left: 16px;
}
.header-content .header__cart-count-icon {
  display: none;
  border-radius: 999999px;
  line-height: 1;
  background-color: #d5ebdb;
  color: var(--color-primary);
  border: 2px solid #fff;
  font-size: 11px;
  font-weight: bold;
  min-width: 17px;
  padding: 3px 6px;
  position: absolute;
  margin-top: -12px;
  margin-left: -18px;
}
.header.links .search-container .search-form {
  position: relative;
  z-index: 1;
}
.header.links .search-container input {
  display: none;
  font-size: 16px;
  height: 40px;
  border-width: 1px;
  width: 25vw;
  padding-left: 10px;
  padding-right: 35px;
  max-width: 400px;
  outline: unset;
}
.header.links .search-container .action.search {
  display: block;
  background: unset;
  border: 0;
  padding: 0;
  margin: 0;
}
.header.links .search-container .action.search:after {
  cursor: pointer;
  content: "";
  background-image: var(--search-icon-url);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  background-size: 100%;
}
.header.links .search-container .show input {
  display: block;
}
.header.links .search-container .show .action.search {
  position: absolute;
  right: 8px;
  top: 8px;
}
.header.links .account a {
  background-image: var(--account-icon-url);
  height: 24px;
  width: 21px;
  background-repeat: no-repeat;
  display: block;
  background-size: 100%;
}
.header.links .mini-cart {
  position: relative;
}
.header.links .mini-cart a {
  background-image: var(--cart-empty-icon-url);
  height: 24px;
  width: 26px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-size: 100%;
}
.header.links .mini-cart .cart-quantity-icon {
  display: none;
  position: absolute;
  border-radius: 999999px;
  background-color: #d5ebdb;
  border: 2px solid #fff;
  font-size: 11px;
  font-weight: bold;
  margin-top: -12px;
  margin-left: -4px;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}
.header.links .mini-cart.has-items a {
  background-image: var(--cart-full-icon-url);
}
.header.links .mini-cart.has-items .cart-quantity-icon {
  display: flex;
}
@media (max-width: 900px) {
  .header-message p {
    font-size: 16px;
    line-height: 24px;
  }
  .header-message button.copy {
    padding: 6px 16px;
    font-size: 13px;
    position: relative;
    gap: 4px;
    line-height: 12px;
  }
  .header-message:after {
    display: none;
  }
  .header-content .logo {
    position: relative;
    z-index: 1;
    width: 44%;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .header-content .nav-toggle {
    display: block;
  }
  .header-content .header.links .search-container input {
    max-width: unset;
    width: calc(100vw - 120px);
  }
  .header-content .account {
    display: none;
  }
}
