.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 48px;
  align-items: center;
  margin-bottom: 10px;
  z-index: 999999;
  background-color: #FFFDF4 ;
}

.wc-header-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 18px;
  margin-bottom: 18px;
  position: relative;
}

.site-branding {
  height: 48px;
}

.site-branding img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 123px;
  height: 24px;
  margin: auto;
  margin-top: 0;
}

.wc-header-top__menu {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.wc-header-top__links {
  display: flex;
  gap: 32px;
}

.wc-header-top__links a {
  display: block;
  color: #433D3F;
  font-size: 14px;
  font-weight: 400;

  &:visited {
    color: #433D3F;
  }
}

.wc-header__bottom {
  width: 100%;
}

.wc-header-bottom__navigation ul {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.wc-header-bottom__navigation ul li{
 margin: 0 8px;
}

.wc-header-bottom__navigation ul li a {
  display: block;
  text-align: center;
  color: #433D3F;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;

  &:visited {
    color: #433D3F;
  }
}

@media(max-width:1000px) {
  .site-header {
    padding: 10px 15px;
  }

  .wc-header-top {
    align-items: center;
  }

  .site-branding img {
    position: relative;
  }

  .wc-header-bottom__navigation ul {
    overflow-x: auto;
  }
}