.site-header:not(.mobile-nav) nav {
  margin: auto;
}
.site-header nav ul li a {
  color: #000;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: 0.1s ease;
  position: relative;
}
.site-header nav ul li a:hover {
  color: #1b1f54;
  font-weight: 800;
  font-size: 12.2px;
  text-decoration: none;
}
.site-header nav ul li a:hover::after,
.site-header nav ul li.current_page_item a::after {
  content: "";
  display: block;
  width: calc(100% + 6px);
  height: 2px;
  background-color: #1b1f54;
  position: absolute;
  left: -3px;
  top: 120%;
  transition: 0.2s ease;
  border-radius: 20px;
}

.site-header .site-logo img {
  width: 80%;
  max-width: 150px;
  height: auto;
}

.site-header .nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-header .nav-buttons a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-right: auto;
  gap: 7px;
  color: #00A3B8;
}

.site-header .container {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  align-items: center;
  width: 100% !important;
}
.site-header .nav-container {
  padding: 2rem 0;
}
.site-header {
  width: calc(100% - 10vw);
  padding: 20px 5vw;
  position: sticky;
  z-index: 9999;
}

.site-header {
  margin: 0;
  padding: 20px;
  background-color: white;
  width: calc(100% - 40px);
  top: 0;
}
.admin-bar .site-header {
  top: 32px;
}

.site-logo {
  width: fit-content;
}
.site-header .site-navigation {
  width: 80%;
  margin-top: 30px;
}
.site-header .site-navigation li {
  cursor: pointer;
}
.site-header .menu-nav-container {
  width: 100%;
}

.menu-nav-boutique-container {
  max-width: 800px;
  margin: auto;
}

.site-header .menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-transform: uppercase;
}

.site-header .aws-container {
  width: 80%;
  border: 1px solid #000;
  border-radius: 20px;
}
.site-header:not(.mobile-nav) .aws-container {
  width: auto;
  flex: 1 1;
}
.site-header:not(.mobile-nav) .nav-buttons {
  flex: 1 1;
  margin-left: 5%;
}
.site-header .aws-container .aws-search-form {
  height: auto;
}
.site-header .aws-container .aws-search-form .aws-wrapper input {
  border: none !important;
  background: transparent !important;
  padding: 10px 20px;
  color: rgba(49, 54, 56, 0.83);
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.05px;
}
.site-header .aws-container .aws-search-btn {
  background: transparent !important;
  border: none !important;
}

/* ------------------ */
/* Mobile nav section */
/* ------------------ */

.mobile-nav {
  display: none;
}
@media screen and (max-width: 780px) {
  .mobile-nav {
    display: inherit;
  }
  .desktop-nav {
    display: none;
  }
}
.dash-side {
  text-align: center;
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(110.14deg, #1b1b54 7.52%, #08235e 141.73%);
  left: 100%;
  animation-timing-function: ease;
  transition-duration: 1s;
  transition-delay: 0.4s;
  top: 0;
}
.dash-side.active {
  left: 0%;
  transition-delay: 0s;
}
.dash-side-container {
  background: #fefcfb;
  height: calc(100vh - 10px);
  width: calc(100vw - (100vw - 100%) - 10px);
  border-radius: 10px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  position: relative;
  left: 100%;
  transition-delay: 0.2s;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-duration: 1s;
  overflow: auto;
  justify-content: center;
  align-items: center;
}
.dash-side.active .dash-side-container {
  left: 0%;
  transition-delay: 0s;
}
.slideLeft {
  animation-name: slideLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.slideRight {
  animation: slideLeft 1s 0s cubic-bezier(0.77, 0.46, 0.47, 0.87) reverse;
}
@keyframes slideLeft {
  0% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
.dash-nav-icon {
  height: 16px;
  width: 20px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin: 20px;
}
.dash-nav-icon:hover span,
.dash-nav-icon:hover span::before,
.dash-nav-icon:hover span::after {
  width: 100%;
}
.dash-nav-icon span {
  width: 100%;
  height: 2px;
  background-color: #1b1f54;
  margin: auto;
  transition: 0.5s ease;
}
.dash-nav-icon span.active {
  width: 0%;
}
.dash-nav-icon span::before,
.dash-nav-icon span::after {
  width: 50%;
  height: 2px;
  position: absolute;
  background-color: #1b1f54;
  content: "";
  transition: 0.5s ease;
}
.dash-nav-icon span::before {
  top: 0;
  right: 0;
}
.dash-nav-icon span::after {
  bottom: 0;
  left: 0;
}
.dash-nav-icon span.active::before,
.dash-nav-icon span.active::after {
  width: 100%;
  background-color: #1b1f54 !important;
}
.dash-nav-icon span.active::before {
  top: 50%;
  right: 0;
  transform: rotate(45deg);
}
.dash-nav-icon span.active::after {
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}
.dash-nav-icon p {
  position: absolute;
  transition: 0.2s ease;
  color: #1b1f54;
  right: 40px;
}
.dash-nav-icon p.active {
  opacity: 0;
}
.dash-nav {
  position: relative;
  z-index: 99999;
}
.mobile-nav .container:nth-child(2) {
  justify-content: space-between;
}
.mobile-nav .container:nth-child(2)::after {
  display: none;
}
.nav-title-close {
  color: #1b1f54 !important;
}
.site-header.mobile-nav nav .sub-menu {
  display: block;
  position: relative;
  left: 0;
  transform: none;
  background-color: transparent;
  text-align: center;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  padding: 0;
  row-gap: 10px;
}
.site-header.mobile-nav nav .menu-item:hover {
  text-decoration: none;
}
.site-header.mobile-nav nav .menu-item-has-children > a::after {
  content: none;
}
.site-header.mobile-nav nav .sub-menu a {
  text-decoration: none;
}
.site-header.mobile-nav nav .sub-menu {
  margin-top: 10px;
}
.site-header.mobile-nav nav .menu {
  flex-direction: column;
}
.site-header.mobile-nav nav .menu > .menu-item {
  margin: 15px auto;
}
.site-header.mobile-nav nav .menu > .menu-item > a {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
}

.mobile-nav .nav-buttons {
  color: #00A3B8;
  margin: 40px 0;
  transform: scale(1.3);
}

.hero-category {
  width: 100vw;
  transform: translateX(-10%);
  margin-bottom: 7rem;
}
.hero-category img {
  width: 100%;
  min-height: 100px;
  object-fit: cover;
}

