.site-header {
  padding: 50px 0;
}
.heading-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.mobile-logo {
  display: none;
}
.gift-link svg {
  width: 13px;
  height: 13px;
  margin-top: -3px;
  fill: var(--p-color-gift);
}
.gift-link svg path {
  fill: var(--p-color-gift);
}
.toggle-bar .bar {
  width: 20px;
  display: block;
  background: var(--s-color);
  height: 2px;
  margin: 3px 0;
}
.site-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}
.left-side-nav {
  position: absolute;
  left: 0;
  top: -50px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1;
  display: none;
}
.menu-bar .left-side-nav {
  display: block;
}
.close-bar {
  position: absolute;
  top: 30px;
  left: 0;
}
.close-bar svg {
  width: 20px;
  height: 20px;
}
.left-navbar li {
  margin: 5px 0;
}
.desktop-logo img {
  max-width: 300px;
}
.toggle-bar {
  flex: 1 0 18.7%;
  max-width: 18.7%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-logo {
  flex: 1;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.right-side-nav {
  flex: 0 0 32.16%;
  max-width: 32.16%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-left: 1px solid #959595;
}
.header-newsletter {
  flex: 1;
  font-size: var(--small-size);
  font-weight: var(--weight-semi-bold);
}
.header-magazine {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-newsletter a {
  color: var(--s-color);
  display: block;
  margin: 4px 0;
}
.header-icon-img {
  background: var(--p-color-gift);
  display: block;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  margin: 0 8px;
}
.header-icon-img img {
  width: 10px;
  height: 10px;
}
.header-shop, .header-shop img {
  position: relative;
  width: 22px;
  height: 26px;
}
.header-shop .count {
  position: absolute;
  font-size: var(--small-size);
  bottom: 0px;
  left: 50%;
  color: var(--white);
  transform: translateX(-50%);
}
.magazine-img {
  flex: 1;
}
.magazine-img img {
  width: 64px;
  max-width: 100%;
  height: 75px;
  image-rendering: -webkit-optimize-contrast;
}
.header-newsletter a.gift-link {
  color: var(--p-color-gift);
}
.gift-link img {
  width: 12px;
  height: 12px;
  image-rendering: -webkit-optimize-contrast;
  margin-top: -4px;
}
.subscribe-text {
  display: none;
}
.site-header .nav-link ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.site-header .nav-link {
  margin: 40px auto 0;
  padding: 0;
}
.site-header .nav-link a {
  font-size: var(--h6);
  font-weight: var(--weight-regular);
  color: var(--p-color);
  transition: 0.5s linear;
  position: relative;
  padding-bottom: 5px;
}
.site-header .nav-link a::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--p-bg-color-nav-link);
  opacity: 0;
  transition: opacity 0.5s linear;
}
.site-header .nav-link a::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--p-bg-color-nav-link);
  opacity: 0;
  transition: opacity 0.5s linear;
}
.site-header .nav-link a:hover {
  color: var(--p-bg-color-nav-link);
  transition: 0.5s linear;
}
.site-header .nav-link a:hover::before,
.site-header .nav-link a:hover::after {
  opacity: 1;
  transition: opacity 0.5s linear;
}
.site-header .nav-link li {
  border-right: 1px solid var(--p-color);
  padding: 0 16px;
}
.site-header .nav-link li:last-child {
  border: 0;
}
@media (max-width:991px) {
  .header-newsletter, .magazine-img {
    display: none;
  }
  .header-magazine {
    flex-direction: column;
  }
  .header-shop {
    order: -1;
    border-bottom: 1px solid #2c739f;
    padding-bottom: 28px;
    display: block;
    margin-bottom: 3px;
    width: 50px;
    text-align: center;
  }
  .header-shop .count {
    bottom: 1px;
  }
  .subscribe-text {
    display: inline-block;
    font-size: var(--h6);
  }
  .header-icon-img {
    width: auto;
    height: auto;
    border-radius: 5px;
    color: var(--white);
    margin: 0;  
    padding: 5px;
    display: inline-block;
    padding: 2px 10px;
  }
  .left-side-nav{
    position: fixed;
    top: 0;
    padding: 30px 20px 20px 30px;
  }
  .site-header ul{
    justify-content: flex-start;
  }
  .left-navbar li {
    left: initial;
    right: 10px;
    top: 5px;
  }
  .site-header .nav-link li {
    padding: 0 5px;
  }
  .site-header .nav-link a{
    font-size: var(--small-size);
  }
}

@media(max-width:767px) {
  .desktop-logo {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
  .mobile-logo img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
  }
  .right-side-nav {
    flex: 1;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    border-left: 0;
  }
  .header-logo {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }
  .toggle-bar {
    flex: 1 0 10%;
    max-width: 10%;
    padding: 0 10px;
  } 
  .site-header .nav-link{
    display: none;
  }
  .site-header {
    padding: 20px 0;
  }
}