/** Shopify CDN: Minification failed

Line 501:1 Expected "}" to go with "{"

**/
.h-ph {
  height: var(--h-h);
}
.h {
  padding-block: 16px;
  padding-inline: var(--p-i);
  height: var(--h-h);
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 24px;
}
.h_l,
.h_r,
.h_r-m {
  flex-basis: 100%;
}
.h_m {
  flex-shrink: 0;
}
.h_r {
  display: none;
  @media (width > 768px) {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
  }
}

.h_n {
  display: none;
  @media (width > 768px) {
    display: flex;
    gap: 20px;
  }
}
.h_n-item {
  text-transform: none;
}
.h_n a {
  font-size: 12px;
}

.h_m a figure {
  width: 80px;
}
.h_m a span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.h_r div {
  font-size: 12px;
}

.h_cb {
  font-size: 12px;
}
.h_cb_count {
  color: #333;
}

.h_r-m {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  @media (width > 768px) {
    display: none;
  }
}
.h_r-m > div {
  /* padding: 4px 8px; */
  position: relative;
}
.h_r-m svg {
  width: 20px;
}

.h_r-m_cc {
  position: absolute;
  background-color: black;
  color: white;
  font-size: 8px;
  line-height: 1;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 4px);
  right: -3px;
}

/******************
DROPDOWN MENU
******************/

.dd-menu {
  position: absolute;
  top: var(--h-h);
  left: 0;
  width: 100vw;
  height: calc(100dvh - var(--h-h));
  opacity: 0;
  visibility: hidden;
}

.h_n-item.active .dd-menu {
  opacity: 1;
  visibility: visible;
}

.dd-menu ul {
  position: relative;
  z-index: 2;

  width: auto;
  height: auto;

  padding: 28px 38px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  background: transparent;

  opacity: 0;
  transition: opacity 0.2s ease;
}

.h_n-item.active .dd-menu ul {
  opacity: 1;
}

.dd-menu li,
.dd-menu a {
  font-size: 12px;
  line-height: 1.4;
}

.dd-menu button {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  border: 0;
  background: transparent;
  backdrop-filter: none;
  cursor: default;
}

/*****************
MENU ICON
/****************/
#menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 24px;
  justify-content: center;
  @media (width > 768px) {
    display: none;
  }
}

#menu-icon span {
  width: 24px;
  height: 2px;
  background-color: black;
  transform-origin: center;
}
#menu-icon.open span:first-of-type {
  animation: top 0.4s linear both;
}
#menu-icon.open span:last-of-type {
  animation: bottom 0.4s linear both;
}

@keyframes top {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(4px) rotate(0);
  }
  100% {
    transform: translateY(4px) rotate(-45deg);
  }
}
@keyframes bottom {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-4px) rotate(0);
  }
  100% {
    transform: translateY(-4px) rotate(45deg);
  }
}

/*****************
MENU DRAWER
/****************/
#menu-drawer {
  position: fixed;
  top: var(--h-h);
  height: calc(100vh - var(--h-h));
  width: 100%;
  background-color: white;
  z-index: 999;

  @media (width > 768px) {
    display: none;
  }
}

#menu-drawer nav {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.d_item {
  padding: 16px var(--p-i);
  border-bottom: 1px solid #333;
}
.d_item.opened svg {
  transform: rotate(45deg);
}

.d_item-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d_item span {
  font-size: 16px;
  font-weight: 500;
}
.d_item svg {
  width: 14px;
  transition: transform 0.2s ease-out;
}
.d_dd {
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-out;
}
.d_dd ul {
  padding-top: 24px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ========================================
   MOBILE MENU — THE ROW STYLE
======================================== */

@media (max-width: 768px) {

  /* Full screen menu */
  #menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 9998;
    padding: 0 var(--p-i);
    box-sizing: border-box;
  }

  /* "Menu" label */
  #menu-drawer::before {
    content: "Menu";
    position: absolute;
    top: 30px;
    left: var(--p-i);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }

  /* Main menu layout */
  #menu-drawer nav {
    display: flex;
    flex-direction: column;
    padding-top: 105px;
    width: 100%;
  }

  /* Remove the existing lines */
  #menu-drawer .d_item {
    padding: 0;
    margin: 0 0 36px 0;
    border-bottom: 0;
  }

  #menu-drawer .d_item-h {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  /* Menu typography */
  #menu-drawer .d_item span {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
  }

  #menu-drawer .d_item a {
    text-decoration: none;
    color: #000;
  }

  /* Plus icon */
  #menu-drawer .d_item button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
  }

  #menu-drawer .d_item svg {
    width: 14px;
    height: 14px;
  }

  /* Dropdown children */
  #menu-drawer .d_dd {
    height: 0;
    overflow: hidden;
  }

  #menu-drawer .d_dd ul {
    padding: 20px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  #menu-drawer .d_dd li {
    list-style: none;
  }

  #menu-drawer .d_dd a {
    font-size: 14px;
    font-weight: 400;
  }


  /* ------------------------------
     HEADER WHILE MENU IS OPEN
  ------------------------------ */

  /* Hide logo + search + bag */
  .h_:has(#menu-icon.open) .h_m,
  .h_:has(#menu-icon.open) .h_r-m {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Header becomes transparent */
  .h_:has(#menu-icon.open) .h {
    background: transparent;
  }

  /* Move the hamburger/X to top right */
  #menu-icon.open {
    position: fixed;
    top: 20px;
    right: var(--p-i);
    left: auto;
    z-index: 10000;
    width: 20px;
    height: 20px;
    gap: 0;
  }

  #menu-icon.open span {
    width: 20px;
  }

}
@media (max-width: 768px) {
  #menu-icon.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer;
    position: fixed;
    top: 28px;
    right: 24px;
    z-index: 10001;
  }
}
/* MOBILE MENU CLOSE X */
@media (max-width: 768px) {


@media (max-width: 768px) {

  /* Full screen drawer */
  #menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    background: #fff !important;
    z-index: 10000 !important;
    padding: 0 24px !important;
    box-sizing: border-box;
  }

  /* Remove the old fake Menu label */
  #menu-drawer::before {
    content: none !important;
    display: none !important;
  }

  /* Menu / X row */
  .menu-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    width: 100%;
  }

  .menu-drawer-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
  }

  #menu-drawer-close {
    display: block !important;
    position: static !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #000 !important;
    font-size: 25px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    cursor: pointer;
  }

  #menu-drawer nav {
    padding-top: 70px !important;
  }
}
@media (max-width: 768px) {
  .menu-drawer-label,
  #menu-drawer .d_item-h > a,
  #menu-drawer .d_item-h > span > a {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
  }
}
@media (min-width: 769px) {
  .h_n .h_n-item > a {
    text-transform: none !important;
  }
}
@media (min-width: 769px) {
  .dd-menu a,
  .dd-menu li {
    text-transform: none !important;
  }
}