.header {
    position: fixed;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex-direction: column;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .header .d-none {
    display: none;
  }
  
  .header .m-none {
    display: flex;
  }
  
  @media (max-width: 768px) {
    .header .m-none {
      display: none;
    }
    .header .d-none {
      display: flex;
    }
  }
  
  .header-wrapper {
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex: 0 0 100%;
    max-width: 1200px;
    gap: 32px;
    flex: 1 0 0;
    align-self: stretch;
    align-items: center;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
  }
  
  .header-center {
    width: 60px;
    height: 56px;
  }
  
  .header-right {
    display: flex;
    width: 538px;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    align-self: stretch;
  }
  
  .header-categories-button {
    display: flex;
    height: 38px;
    padding: 0 16px;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    background: #B3E2E7;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  
  .header-categories-button.active {
    display: flex;
  }
  
  .header-categories-button:hover {
    background: #D9F0F3;
  }
  
  .header-categories-button svg {
    width: 20px;
  }
  
  .header-categories-button span {
    font-family: "Futura New Book", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.32px;
    text-transform: none;
    color: #222222;
  }
  
  .header-main-site-link {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222222;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  } 
  
  .header-main-site-link svg {
    width: 20px;
    transition: stroke 0.3s ease-in-out;
  }
  
  .header-main-site-link:hover {
    opacity: 0.5;
  }
  
  .header-main-site-link span {
    font-family: "Futura New Book", sans-serif;
    font-size: 16px;
    font-style: normal;
  }
  
  .woo-panel-categories.woo-panel-horizontal-nav-item {
    display: none;
  }

  .header-right .custom-site-header__item .my-account-avatar-menu {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .header-right .custom-site-header__item .my-account-avatar-menu:hover {
    opacity: 0.5;
  }

  .custom-site-header__item___wishlist {
    position: relative;
  }
  
  @media screen and (max-width: 1089px) {
    .header-categories-button span:last-child,
    .header-main-site-link span,
    .header-main-site-link svg:nth-child(3),
    .header-wrapper .custom-site-header__item___wishlist,
    .header-wrapper .custom-site-header__item___cart,
    .header-wrapper .custom-site-header__item___my-account,
    .header-wrapper .custom-site-header__select-location span {
      display: none;
    }
    .header-main-site-link {
      padding: 0;
    }
    .header-wrapper .header-left .custom-site-header__item:not(:first-child),
    .header-wrapper .header-right .custom-site-header__item {
      padding: 8px;
    }
    .header-wrapper .header-left .custom-site-header__item svg,
    .header-wrapper .header-right .custom-site-header__item svg {
      width: 24px;
    }
    .custom-site-header__row-location {
      padding: 0 32px;
      width: 100%;
      justify-content: space-between;
    }
    .header-wrapper {
      padding: 0 32px;
    }
    .header-right,
    .header-left {
      width: auto;
      flex: 1 0 0;
      gap: 8px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .header-wrapper,
    .custom-site-header__row-location {
      padding: 0 16px;
      max-width: -webkit-fill-available;
    }  
  }