.mn-header {
  --mn-almost-black: #161618;
  --mn-cream: #f5f1e8;
  --mn-electrifying: #c6ff39;
  --mn-viridian: #658072;
  --mn-mine-shaft: #3e3e3e;
  --mn-divider: rgba(62, 62, 62, 0.5);
  --mn-card-border: rgba(198, 255, 57, 0.2);

  --mn-bar-bg: rgba(255, 255, 255, 0.48);
  --mn-bar-blur: 6px;
  --mn-panel-bg: rgba(22, 22, 24, 0.92);
  --mn-panel-blur: 20px;

  --mn-bar-radius: 5px;
  --mn-card-radius: 14.702px;
  --mn-pill-radius: 1632px;

  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  font-family:
    "roc-grotesk",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.mn-header *,
.mn-header *::before,
.mn-header *::after {
  box-sizing: border-box;
}

.mn-header__shell {
  padding: 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

.mn-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 61px;
  padding: 10px 24px;
  border-radius: var(--mn-bar-radius);
  background: var(--mn-bar-bg);
  -webkit-backdrop-filter: blur(var(--mn-bar-blur));
  backdrop-filter: blur(var(--mn-bar-blur));
  position: relative;
  z-index: 2;
  transition:
    border-bottom-left-radius 180ms ease,
    border-bottom-right-radius 180ms ease;
}

.mn-header[data-panel-open] .mn-header__bar {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.mn-header__nav {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
}

.mn-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.mn-header__nav-item {
  display: flex;
  align-items: center;
  position: static;
}

.mn-header__nav-trigger {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.mn-header__nav-label {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--mn-almost-black);
  text-transform: uppercase;
  letter-spacing: 0;
  padding-bottom: 2px;
  border-bottom: 0.5px solid transparent;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.mn-header__nav-item.is-active .mn-header__nav-label,
.mn-header__nav-item:hover .mn-header__nav-label,
.mn-header__nav-trigger[aria-expanded="true"] .mn-header__nav-label {
  border-bottom-color: var(--mn-almost-black);
}

.mn-header__nav-trigger:focus-visible {
  outline: 2px solid var(--mn-almost-black);
  outline-offset: 4px;
  border-radius: 2px;
}

.mn-header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--mn-almost-black);
}

.mn-header__logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: 170px;
  max-height: 28px;
  object-fit: contain;
}

.mn-header__logo-text {
  font-family: "Roc Grotesk Wide", "roc-grotesk", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--mn-almost-black);
}

.mn-header__actions {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.mn-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 41px;
  padding: 4px 8px 4px 16px;
  background: var(--mn-almost-black);
  color: var(--mn-cream);
  border-radius: var(--mn-pill-radius);
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.mn-header__cta:hover,
.mn-header__cta:focus {
  color: var(--mn-cream);
}

.mn-header__cta-label {
  white-space: nowrap;
}

.mn-header__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--mn-electrifying);
  border-radius: 46px;
  overflow: hidden;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mn-header__icons {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.mn-header__icon {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mn-almost-black);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.mn-header__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mn-header__icon:focus-visible {
  outline: 2px solid var(--mn-almost-black);
  outline-offset: 4px;
  border-radius: 2px;
}

.mn-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--mn-electrifying);
  color: var(--mn-almost-black);
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.mn-header__hamburger {
  display: none;
  width: 24px;
  height: 24px;
}

.mn-header__hamburger svg {
  width: 24px;
  height: 24px;
}

.mn-header__panels {
  position: relative;
  width: 100%;
}

.mn-header__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 var(--mn-bar-radius) var(--mn-bar-radius);
  background: var(--mn-panel-bg);
  -webkit-backdrop-filter: blur(var(--mn-panel-blur));
  backdrop-filter: blur(var(--mn-panel-blur));
  color: var(--mn-cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  overflow: hidden;
  z-index: 1;
}

.mn-header__panel[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mn-header__panel-inner {
  display: flex;
  align-items: flex-start;
  gap: 160px;
  padding: 0 32px 32px 0;
}

@media (min-width: 1225px) and (max-width: 1280px) {
  .mn-header__panel-inner {
    gap: 0;
  }
}

.mn-header__panel-left {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (min-width: 1225px) and (max-width: 1280px) {
  .mn-header__panel-left {
    gap: 0;
  }
}

.mn-header__panel-headline {
  width: 295px;
  flex: 0 0 295px;
  padding: 32px 40px 32px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mn-header__panel-title {
  font-family: "roc-grotesk-wide", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: var(--mn-cream);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0;
}

.mn-header__panel-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.mn-header__panel-col--category {
  width: 199px;
  flex: 0 0 auto;
}

.mn-header__col-label {
  padding: 32px 16px 16px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--mn-cream);
  opacity: 0.6;
  letter-spacing: 0;
}

.mn-header__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.mn-header__col-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0;
  transition:
    color 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.mn-header__col-link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M11.9166 11.9168V6.0835H6.08325M11.9166 6.0835L6.08325 11.9168' stroke='%23C6FF39' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.mn-header__col-link:hover,
.mn-header__col-link:focus,
.mn-header__col-link:active,
.mn-header__col-link:focus-visible {
  color: #ffffff;
}

.mn-header__col-link:hover::after,
.mn-header__col-link:focus::after,
.mn-header__col-link:active::after,
.mn-header__col-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.mn-header__panel[data-category-term="women"] .mn-header__col-link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M11.9166 11.9168V6.0835H6.08325M11.9166 6.0835L6.08325 11.9168' stroke='%237f4ac0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mn-header__panel-right {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 1225px) and (max-width: 1280px) {
  .mn-header__panel-right {
    display: flex;
    justify-content: flex-end;
  }
}

.mn-header__panel-col--products {
  width: 100%;
}

@media (min-width: 1225px) and (max-width: 1280px) {
  .mn-header__panel-col--products {
    width: fit-content;
  }
}

.mn-header__products {
  display: flex;
  gap: 8px;
  padding: 0 16px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1225px) and (max-width: 1280px) {
  .mn-header__products {
    justify-content: flex-end;
  }
}

.mn-header__products::-webkit-scrollbar {
  display: none;
}

.mn-header__products .mn-header__product-card {
  scroll-snap-align: start;
}

.mn-header__product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 180px;
  flex: 0 0 180px;
  aspect-ratio: 180 / 222.52;
  padding: 11.761px;
  background: var(--mn-almost-black);
  border: 0.368px solid var(--mn-card-border);
  border-radius: var(--mn-card-radius);
  text-decoration: none;
  color: var(--mn-cream);
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.mn-header__product-card-img {
  width: 122.756px;
  height: 116px;
  align-self: center;
  flex: 0 0 auto;
  border-radius: 6.192px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mn-header__product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mn-header .mn-header__product-card-name,
.mn-header__drawer .mn-header__product-card-name {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "roc-grotesk", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  line-height: 20.583px !important;
  color: var(--mn-cream) !important;
  text-transform: uppercase !important;
  text-align: left !important;
  letter-spacing: 0 !important;
}

.mn-header .mn-header__product-card-price,
.mn-header__drawer .mn-header__product-card-price {
  width: 100%;
  font-family: "roc-grotesk", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  color: var(--mn-cream) !important;
  text-transform: uppercase !important;
  text-align: left !important;
  letter-spacing: 0 !important;
}

.mn-header__product-card-price .mn-header__price-amount,
.mn-header__product-card-price .amount,
.mn-header__product-card-price .woocommerce-Price-amount {
  color: var(--mn-electrifying);
}

.mn-header__product-card-price del {
  opacity: 0.5;
  margin-right: 4px;
}

.mn-header__product-card-price ins {
  background: transparent;
  text-decoration: none;
}

.mn-header__panel[data-category-term="women"] .mn-header__product-card {
  border-color: rgba(127, 74, 192, 0.2);
}

.mn-header__panel[data-category-term="women"] .mn-header__product-card-price .mn-header__price-amount,
.mn-header__panel[data-category-term="women"] .mn-header__product-card-price .amount,
.mn-header__panel[data-category-term="women"] .mn-header__product-card-price .woocommerce-Price-amount {
  color: #7f4ac0;
}

.mn-header__accordion[data-category-term="women"] .mn-header__product-card {
  border-color: rgba(127, 74, 192, 0.2);
}

.mn-header__accordion[data-category-term="women"] .mn-header__product-card-price .mn-header__price-amount,
.mn-header__accordion[data-category-term="women"] .mn-header__product-card-price .amount,
.mn-header__accordion[data-category-term="women"] .mn-header__product-card-price .woocommerce-Price-amount {
  color: #7f4ac0;
}

.mn-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(180deg, #000000 0%, var(--mn-almost-black) 100%);
  color: var(--mn-cream);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mn-header__drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.mn-header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--mn-divider);
}

.mn-header__drawer-logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: 127px;
  filter: brightness(0) invert(1);
}

.mn-header__drawer-head-actions .mn-header__icon--search svg [stroke],
.mn-header__drawer-head-actions .mn-header__icon--cart svg [stroke] {
  stroke: #ffffff;
}

.mn-header__drawer-head-actions .mn-header__icon--search svg [fill]:not([fill="none"]),
.mn-header__drawer-head-actions .mn-header__icon--cart svg [fill]:not([fill="none"]) {
  fill: #ffffff;
}

.mn-header__drawer-head-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mn-header__drawer-head-actions .mn-header__icon {
  color: var(--mn-cream);
}

.mn-header__drawer-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px;
}

.mn-header__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 24px;
  border-radius: 100px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--mn-almost-black);
  text-decoration: none;
  min-height: 34px;
}

.mn-header__drawer-btn--login {
  background: var(--mn-cream);
}

.mn-header__drawer-btn--cta {
  background: var(--mn-viridian);
}

.mn-header__drawer-btn--login:hover,
.mn-header__drawer-btn--login:focus,
.mn-header__drawer-btn--cta:hover,
.mn-header__drawer-btn--cta:focus {
  color: var(--mn-almost-black);
}

.mn-header__drawer-accordions {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 32px;
}

.mn-header__accordion {
  padding: 24px 0 16px;
}

.mn-header__accordion-head {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0 24px 8px;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--mn-cream);
  position: relative;
}

.mn-header__accordion-head::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 48px);
  margin-left: 24px;
  height: 1px;
  background-color: var(--mn-mine-shaft);
}

.mn-header__accordion-title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--mn-cream);
  letter-spacing: 0;
}

.mn-header__accordion-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mn-cream);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mn-header__accordion-head[aria-expanded="true"] .mn-header__accordion-chevron {
  transform: rotate(180deg);
}

.mn-header__accordion-head[aria-expanded="true"]::after {
  display: none;
}

.mn-header__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mn-header__accordion-body[data-open="true"] {
  max-height: 1200px;
  margin-bottom: 0;
}

.mn-header__drawer-cat-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.mn-header__drawer-cat-list:has(+ .mn-header__drawer-products-label) {
  padding-bottom: 8px;
}

.mn-header__drawer-cat-list:has(+ .mn-header__drawer-products-label)::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 48px);
  margin-left: 24px;
  height: 1px;
  background-color: var(--mn-mine-shaft);
}

.mn-header__drawer-cat-link {
  display: block;
  padding: 4px 16px;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  text-decoration: none;
}

.mn-header__drawer-cat-link:hover {
  color: #ffffff;
}

.mn-header__drawer-products-label {
  display: block;
  padding: 16px 16px 0 0;
  margin-top: 16px;
  margin-inline: 24px;
}

.mn-header__drawer-products {
  display: flex;
  gap: 8px;
  padding: 16px 24px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mn-header__drawer-products::-webkit-scrollbar {
  display: none;
}

.mn-header__drawer-products .mn-header__product-card {
  flex: 0 0 180px;
}

.mn-header__backdrop {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  cursor: pointer;
}

.mn-header[data-panel-open] .mn-header__backdrop {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.25);
}

body.mn-no-scroll {
  overflow: hidden;
}

body.mn-no-scroll chat-widget,
body.mn-no-scroll .pxl-scroll-top.pxl-on {
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (max-width: 1199.98px) {
  .mn-header__shell {
    padding: 16px 32px;
  }
  .mn-header__panel-inner {
    gap: 80px;
  }
  .mn-header__panel-left {
    gap: 32px;
  }
  .mn-header__panel-headline {
    width: 200px;
    flex: 0 0 200px;
    padding: 32px 24px;
  }
}

@media (max-width: 1023.98px) {
  .mn-header__shell {
    padding: 12px 8px;
    gap: 0;
  }

  .mn-header__bar {
    min-height: 56px;
    padding: 10px 16px;
    border-radius: var(--mn-bar-radius);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
  }

  .mn-header__nav,
  .mn-header__cta,
  .mn-header__icon--user,
  .mn-header__panels {
    display: none !important;
  }

  .mn-header__hamburger {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .mn-header__logo {
    grid-column: 2;
    flex: 0 0 auto;
    justify-self: center;
  }

  .mn-header__logo img {
    height: 19px;
    max-width: 130px;
  }

  .mn-header__actions {
    grid-column: 3;
    flex: 0 0 auto;
    justify-self: end;
    justify-content: flex-end;
  }

  .mn-header__icons {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .mn-header__shell {
    padding: 12px 8px;
  }
}
