.prk-mt-header,
.prk-mt-header * ,
.prk-mt-navbar,
.prk-mt-navbar * ,
.prk-mt-socials,
.prk-mt-socials * {
  box-sizing: border-box;
}

.prk-mt-header {
  width: 100%;
  background: var(--prk-mt-header-bg, #fff);
  border-bottom: 1px solid var(--prk-mt-header-border, #f0f0f1);
  z-index: var(--prk-mt-header-z, 1000);
}

.prk-mt-header.is-fixed {
  position: fixed;
  top: var(--prk-mt-header-top, 15px);
  right: var(--prk-mt-header-x, 16px);
  left: var(--prk-mt-header-x, 16px);
  width: auto;
  margin: 0;
}

.prk-mt-header__inner {
  min-height: 64px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.prk-mt-header__menu,
.prk-mt-header__action,
.prk-mt-header__action-placeholder {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  color: var(--prk-mt-header-icon, #162C5B);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
}

.prk-mt-header__menu {
  gap: 5px;
  cursor: pointer;
}

.prk-mt-header__menu-text {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 700;
}

.prk-mt-header__logo {
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.prk-mt-header__logo a,
.prk-mt-header__logo img {
  display: block;
}

.prk-mt-header__logo img {
  width: var(--prk-mt-logo-width, 112px);
  max-width: 45vw;
  height: auto;
  object-fit: contain;
}

.prk-mt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
}

.prk-mt-icon--font i {
  font-size: 24px;
  line-height: 1;
}

.prk-mt-icon--image img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.prk-mt-icon--svg svg {
  width: 24px;
  height: 24px;
  display: block;
}

.prk-mt-navbar {
  position: fixed;
  left: var(--prk-mt-navbar-x, 16px);
  right: var(--prk-mt-navbar-x, 16px);
  bottom: var(--prk-mt-navbar-bottom, 16px);
  height: var(--prk-mt-navbar-height, 60px);
  z-index: var(--prk-mt-navbar-z, 100002);
  perspective: 900px;
  transform-style: preserve-3d;
  pointer-events: auto;
  transition: all .4s ease-out;
}

.prk-mt-navbar__nav {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--prk-mt-navbar-bg, #fff);
  color: var(--prk-mt-navbar-icon, #162C5B);
  border: 1px solid #F2F6FF;
  border-radius: var(--prk-mt-navbar-radius, 15px);
  box-shadow: 5px 2px 31px rgb(0 0 0 / 17%);
  transform-origin: 50% 0;
  transition: transform var(--prk-mt-navbar-dur, .6s) ease-out, opacity .28s ease-out, visibility .28s ease-out;
  overflow: hidden;
  backface-visibility: hidden;
}

.prk-mt-navbar.is-blur .prk-mt-navbar__nav {
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: transparent;
}

.prk-mt-navbar__nav--second {
  opacity: 0;
  visibility: hidden;
  transform: rotateX(-90deg) translateY(0);
}

.prk-mt-navbar.has-second.is-flipped .prk-mt-navbar__nav--primary {
  opacity: 0;
  visibility: hidden;
  transform: rotateX(90deg);
}

.prk-mt-navbar.has-second.is-flipped .prk-mt-navbar__nav--second {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0) translateY(calc(-1 * var(--prk-mt-navbar-second-shift, 0))) translateZ(1px);
  box-shadow: none;
}

.prk-mt-navbar__item {
  min-width: 46px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prk-mt-navbar__link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 46px;
  padding: 5px 4px;
  color: var(--prk-mt-item-color, var(--prk-mt-navbar-icon, #162C5B));
  text-decoration: none;
}

.prk-mt-navbar__item.is-button .prk-mt-navbar__link {
  flex-direction: row;
  gap: 7px;
  height: 38px;
  min-width: 84px;
  padding: 8px 10px;
  border-radius: 11px;
  background: var(--prk-mt-item-bg, #f30a4926);
  color: var(--prk-mt-item-color, #f30a49);
  font-weight: 700;
}

.prk-mt-navbar__item.is-active .prk-mt-navbar__link,
.prk-mt-navbar__item:hover .prk-mt-navbar__link {
  color: var(--prk-mt-navbar-active, #08c96f);
}

.prk-mt-navbar__icon-wrap {
  position: relative;
  display: inline-flex;
}

.prk-mt-navbar__icon-wrap .prk-mt-icon--font i {
  font-size: 24px;
}

.prk-mt-navbar__text {
  color: var(--prk-mt-navbar-text, #666);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.prk-mt-navbar__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 8px;
  height: 8px;
  border-radius: 999px;
  font-size: 0;
  background: transparent;
}

.prk-mt-navbar__cart-count.pluser {
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f30b4a;
  color: #fff;
  font-size: 9px;
  line-height: 15px;
  font-family: prk-font;
}

.prk-mt-navbar__logged-check {
  position: absolute;
  width: 12px;
  height: 12px;
  right: -4px;
  bottom: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.prk-mt-product-toggle {
  position: fixed;
  left: 0;
  bottom: calc(var(--prk-mt-navbar-bottom, 16px) + var(--prk-mt-navbar-height, 60px) + 18px);
  width: 40px;
  height: 40px;
  z-index: var(--prk-mt-product-toggle-z, calc(var(--prk-mtpb-z, 100002) + 2));
  border: 0;
  border-radius: 0 25px 25px 0;
  background: #fff;
  color: #162C5B;
  box-shadow: 5px 2px 31px rgb(0 0 0 / 13%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prk-mt-socials {
  position: fixed;
  left: 16px;
  bottom: calc(var(--prk-mt-navbar-bottom, 16px) + var(--prk-mt-navbar-height, 60px) + 15px);
  z-index: calc(var(--prk-mt-navbar-z, 100002) + 2);
  margin: 0;
  padding: 8px 5px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(200px, 0, 0) translateZ(1px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

html.prk-mt-menu-open .prk-mt-socials {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) translateZ(1px);
}

.prk-mt-socials a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #162C5B;
  text-decoration: none;
}

.prk-mt-socials i {
  font-size: 21px;
  line-height: 1;
}

@media (min-width: 1024px) {
  .prk-mt-header,
  .prk-mt-navbar,
  .prk-mt-product-toggle,
  .prk-mt-socials {
    display: none !important;
  }
}

/* MobileTheme v2 additions */
.prk-mt-header--modern {
  width: auto;
  margin: var(--prk-mt-header-top, 15px) var(--prk-mt-header-x, 16px) 0;
  background: transparent;
  border: 0;
}

.prk-mt-header--modern .prk-mt-header__inner {
  min-height: var(--prk-mt-header-height, 60px);
  padding: 8px 14px;
  border-radius: var(--prk-mt-header-radius, 14px);
  background: var(--prk-mt-header-bg, #fff);
  box-shadow: var(--prk-mt-header-shadow, 0 6px 24px rgba(22,44,91,.08));
  border: 1px solid var(--prk-mt-header-border, #f0f0f1);
}

.prk-mt-header--classic {
  margin: 0;
  background: var(--prk-mt-header-bg, #fff);
  border-bottom: 1px solid var(--prk-mt-header-border, #f0f0f1);
}

.prk-mt-header--classic .prk-mt-header__inner {
  min-height: var(--prk-mt-header-height, 64px);
}

.prk-mt-navbar__nav {
  border-color: var(--prk-mt-navbar-border, #F2F6FF);
  box-shadow: var(--prk-mt-navbar-shadow, 5px 2px 31px rgba(0,0,0,.17));
}

.prk-mt-navbar.is-blur .prk-mt-navbar__nav {
  background: var(--prk-mt-navbar-blur-bg, rgba(255,255,255,.72));
}

.prk-mt-navbar.has-second.is-flipped .prk-mt-navbar__nav--second {
  transform: rotateX(0) translateY(calc(-1 * var(--prk-mt-navbar-second-shift, 0))) translateZ(1px);
}

.prk-mt-navbar__icon-wrap .prk-mt-icon--font i,
.prk-mt-navbar__icon-wrap .prk-mt-icon--svg svg,
.prk-mt-navbar__icon-wrap .prk-mt-icon--image img {
  width: var(--prk-mt-navbar-icon-size, 24px);
  height: var(--prk-mt-navbar-icon-size, 24px);
  font-size: var(--prk-mt-navbar-icon-size, 24px);
}

.prk-mt-navbar__text {
  font-size: var(--prk-mt-navbar-text-size, 9px);
}

.prk-mt-navbar__item.is-button .prk-mt-navbar__link {
  height: var(--prk-mt-navbar-button-height, 38px);
  border-radius: var(--prk-mt-navbar-button-radius, 11px);
}

.prk-mt-socials {
  left: var(--prk-mt-socials-left, 16px);
  width: var(--prk-mt-socials-box-width, 48px);
  gap: var(--prk-mt-socials-gap, 10px);
  border-radius: var(--prk-mt-socials-radius, 999px);
  background: var(--prk-mt-socials-bg, rgba(255,255,255,.85));
  box-shadow: var(--prk-mt-socials-shadow, 5px 2px 31px rgba(0,0,0,.13));
}

.prk-mt-socials a {
  color: var(--prk-mt-social-item-color, var(--prk-mt-socials-color, #162C5B));
}

.prk-mt-socials .prk-mt-icon--font i,
.prk-mt-socials .prk-mt-icon--svg svg,
.prk-mt-socials .prk-mt-icon--image img {
  width: var(--prk-mt-socials-icon-size, 22px);
  height: var(--prk-mt-socials-icon-size, 22px);
  font-size: var(--prk-mt-socials-icon-size, 22px);
}

.prk-mt-icon--svg svg {
  color: currentColor;
}


/* MobileTheme stage56: simple dedicated drawer, no DefaultHeader drawer, no push/3d, no body transform */
@media (max-width: 1023px) {
  #prk-mobile-theme-header,
  .prk-mt-header {
    z-index: var(--prk-mt-header-z, 1000) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  #prk-mobile-theme-header.is-fixed,
  .prk-mt-header.is-fixed {
    top: var(--prk-mt-header-top, 15px) !important;
  }

  .prk-mt-navbar,
  [data-prk-mobile-theme-navbar] {
    z-index: var(--prk-mt-navbar-z, 100002) !important;
  }

  .prk-mt-socials,
  [data-prk-mobile-theme-socials] {
    z-index: var(--prk-mt-socials-z, 100031) !important;
  }

  .prk-mt-drawer,
  .prk-mt-drawer * {
    box-sizing: border-box;
  }

  .prk-mt-drawer {
    position: fixed;
    inset: 0;
    z-index: var(--prk-mt-drawer-z, 99990);
    pointer-events: none;
    visibility: hidden;
  }

  .prk-mt-drawer.is-open,
  .prk-mt-drawer.is-closing {
    pointer-events: auto;
    visibility: visible;
  }

  .prk-mt-drawer.is-closing {
    pointer-events: none;
  }

  .prk-mt-drawer__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--prk-mt-drawer-overlay-bg, rgba(0, 0, 0, .45));
    opacity: 0;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transition: opacity var(--prk-mt-motion-duration, 500ms) cubic-bezier(.16, 1, .3, 1);
  }

  .prk-mt-drawer.is-open .prk-mt-drawer__overlay,
  .prk-mt-drawer.is-closing .prk-mt-drawer__overlay {
    opacity: 1;
  }

  .prk-mt-drawer__panel {
    position: absolute;
    z-index: 1;
    top: var(--prk-mt-drawer-top, calc(var(--prk-mt-header-top, 20px) + var(--prk-mt-header-height, 60px) + 12px));
    right: var(--prk-mt-drawer-right, 20px);
    left: auto;
    bottom: auto;
    width: min(var(--prk-mt-drawer-width, 280px), var(--prk-mt-drawer-max-width, 88vw));
    max-width: var(--prk-mt-drawer-max-width, 88vw);
    height: var(--prk-mt-drawer-height, auto);
    max-height: calc(100dvh - var(--prk-mt-drawer-top, 110px) - var(--prk-mt-drawer-bottom, 90px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--prk-mt-drawer-bg, #fff);
    color: var(--prk-mt-drawer-link-color, #162C5B);
    border-radius: var(--prk-mt-drawer-radius, 16px);
    box-shadow: 0 18px 55px rgba(15, 23, 42, .18);
    will-change: transform;
    transform: translate3d(calc(100% + var(--prk-mt-drawer-right, 20px) + 16px), 0, 0);
    transition: transform var(--prk-mt-motion-duration, 500ms) cubic-bezier(.16, 1, .3, 1);
    min-height: 60vh;
  }

  .prk-mt-drawer[data-drawer-side="left"] .prk-mt-drawer__panel {
    left: var(--prk-mt-drawer-left, 20px);
    right: auto;
    transform: translate3d(calc(-100% - var(--prk-mt-drawer-left, 20px) - 16px), 0, 0);
  }

  .prk-mt-drawer.is-open .prk-mt-drawer__panel {
    transform: translate3d(0, 0, 0);
  }

  .prk-mt-drawer__header {
    min-height: 72px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--prk-mt-drawer-border-color, #f0f0f1);
    background: var(--prk-mt-drawer-bg, #fff);
  }

  .prk-mt-drawer__logo-link,
  .prk-mt-drawer__site-name {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--prk-mt-drawer-link-color, #162C5B);
    text-decoration: none;
  }

  .prk-mt-drawer__logo-img {
    width: var(--prk-mt-drawer-logo-width, 112px);
    max-width: 45vw;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .prk-mt-drawer__close {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--prk-mt-drawer-close-color, #162C5B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .prk-mt-drawer__body {
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
    background: var(--prk-mt-drawer-bg, #fff);
  }

  .prk-mt-drawer__nav,
  .prk-mt-drawer__menu {
    min-height: 0;
    max-height: calc(100dvh - var(--prk-mt-drawer-top, 110px) - var(--prk-mt-drawer-bottom, 110px) - 72px);
    overflow: auto;
    overscroll-behavior: contain;
  }

  .prk-mt-drawer__menu,
  .prk-mt-drawer__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .prk-mt-drawer__menu li {
    position: relative;
    border-bottom: 1px solid var(--prk-mt-drawer-border-color, #f0f0f1);
  }

  .prk-mt-drawer__menu a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: var(--prk-mt-drawer-item-padding, 15px 20px);
    color: var(--prk-mt-drawer-link-color, #162C5B);
    font-size: var(--prk-mt-drawer-font-size, 14px);
    font-weight: 500;
    text-decoration: none;
  }

  .prk-mt-drawer__menu a:hover,
  .prk-mt-drawer__menu .current-menu-item > a,
  .prk-mt-drawer__menu .current-menu-parent > a,
  .prk-mt-drawer__menu .current-menu-ancestor > a {
    color: var(--prk-mt-drawer-link-active, #ff3a30);
  }

  .prk-mt-drawer__item-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .prk-mt-drawer__item-icon {
    width: var(--prk-mt-drawer-icon-size, 24px);
    height: var(--prk-mt-drawer-icon-size, 24px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--prk-mt-drawer-icon-color, #162C5B);
    flex: 0 0 auto;
  }

  .prk-mt-drawer__item-icon i {
    font-size: var(--prk-mt-drawer-icon-size, 24px);
    line-height: 1;
  }

  .prk-mt-drawer__item-icon img,
  .prk-mt-drawer__item-icon svg {
    width: var(--prk-mt-drawer-icon-size, 24px);
    height: var(--prk-mt-drawer-icon-size, 24px);
    object-fit: contain;
    display: block;
  }

  .prk-mt-drawer__submenu-toggle {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
    border: 0;
    padding: 0;
    background: transparent;
    color: currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .prk-mt-drawer__submenu-toggle svg {
    width: 18px;
    height: 18px;
  }

  .prk-mt-drawer .sub-menu {
    display: none;
  }

  .prk-mt-drawer[data-submenu-mode="accordion"] li.is-open > .sub-menu,
  .prk-mt-drawer[data-submenu-mode="expanded"] .sub-menu,
  .prk-mt-drawer[data-submenu-mode="simple"] .sub-menu {
    display: block;
  }

  .prk-mt-drawer[data-submenu-mode="accordion"] li.is-open > .prk-mt-drawer__submenu-toggle svg {
    transform: rotate(-90deg);
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__panel,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__body,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__nav,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu {
    overflow: hidden;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__body,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__nav,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu {
    position: static;
    height: 100%;
    max-height: none;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu li {
    display: flex;
    align-items: stretch;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu li > a {
    flex: 1 1 auto;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__submenu-toggle {
    position: static;
    transform: none;
    flex: 0 0 48px;
    height: auto;
    min-height: 50px;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .sub-menu {
    position: absolute;
    inset: 0;
    z-index: var(--prk-card-z, 20);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    background: var(--prk-mt-drawer-bg, #fff);
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), opacity .22s ease, visibility .22s ease;
    overflow: auto;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .menu-item-has-children.is-open > .sub-menu,
  .prk-mt-drawer[data-submenu-mode="card"] .sub-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .prk-mt-drawer__submenu-close-item {
    display: block !important;
    position: sticky !important;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid var(--prk-mt-drawer-border-color, #f0f0f1);
    background: var(--prk-mt-drawer-bg, #fff);
  }

  .prk-mt-drawer__submenu-close {
    width: 100%;
    min-height: 72px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--prk-mt-drawer-link-color, #162C5B);
    font-size: var(--prk-mt-drawer-font-size, 14px);
    font-weight: 700;
    text-align: right;
    cursor: pointer;
  }

  .prk-mt-drawer__submenu-close-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
  }

  .prk-mt-drawer__submenu-close-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* MobileTheme stage57: sticky header + clean submenu modes */
@media (max-width: 1023px) {
  #prk-mobile-theme-header.is-fixed,
  .prk-mt-header.is-fixed {
    position: sticky !important;
    top: var(--prk-mt-header-top, 15px) !important;
    right: auto !important;
    left: auto !important;
    width: auto !important;
    margin: var(--prk-mt-header-top, 15px) var(--prk-mt-header-x, 16px) 0 !important;
    z-index: var(--prk-mt-header-z, 1000) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  #prk-mobile-theme-header.prk-mt-header--modern,
  .prk-mt-header.prk-mt-header--modern {
    width: auto !important;
    margin-inline: var(--prk-mt-header-x, 16px) !important;
    margin-top: var(--prk-mt-header-top, 15px) !important;
    background: transparent !important;
    border: 0 !important;
  }

  html.prk-mt-menu-open #prk-mobile-theme-header,
  html.prk-mt-menu-open .prk-mt-header {
    position: sticky !important;
    top: var(--prk-mt-header-top, 15px) !important;
    margin-inline: var(--prk-mt-header-x, 16px) !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Shared submenu base */
  .prk-mt-drawer .sub-menu {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: var(--prk-mt-drawer-bg, #fff);
  }

  .prk-mt-drawer__submenu-toggle {
    color: var(--prk-mt-drawer-link-color, #162C5B);
    transition: transform .25s ease, color .2s ease, background .2s ease;
    border-radius: 10px;
  }

  .prk-mt-drawer__submenu-toggle:hover {
    background: rgba(22, 44, 91, .055);
    color: var(--prk-mt-drawer-link-active, #ff3a30);
  }

  /* Accordion / dropdown mode */
  .prk-mt-drawer[data-submenu-mode="accordion"] .sub-menu,
  .prk-mt-drawer[data-submenu-mode="simple"] .sub-menu {
    display: block !important;
    position: static !important;
    max-height: 0;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -6px, 0);
    pointer-events: none;
    transition: max-height .34s cubic-bezier(.16, 1, .3, 1), opacity .22s ease, transform .28s cubic-bezier(.16, 1, .3, 1), visibility .22s ease;
  }

  .prk-mt-drawer[data-submenu-mode="accordion"] li.is-open > .sub-menu,
  .prk-mt-drawer[data-submenu-mode="simple"] li.is-open > .sub-menu,
  .prk-mt-drawer[data-submenu-mode="accordion"] .sub-menu.is-active,
  .prk-mt-drawer[data-submenu-mode="simple"] .sub-menu.is-active {
    max-height: var(--prk-submenu-max, 760px);
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .prk-mt-drawer[data-submenu-mode="accordion"] li.is-open > .prk-mt-drawer__submenu-toggle,
  .prk-mt-drawer[data-submenu-mode="simple"] li.is-open > .prk-mt-drawer__submenu-toggle {
    color: var(--prk-mt-drawer-link-active, #ff3a30);
  }

  .prk-mt-drawer[data-submenu-mode="accordion"] li.is-open > .prk-mt-drawer__submenu-toggle svg,
  .prk-mt-drawer[data-submenu-mode="simple"] li.is-open > .prk-mt-drawer__submenu-toggle svg {
    transform: rotate(-90deg);
  }

  .prk-mt-drawer[data-submenu-mode="accordion"] .sub-menu a,
  .prk-mt-drawer[data-submenu-mode="simple"] .sub-menu a {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline-start: calc(var(--prk-mt-drawer-item-padding-start, 20px) + 18px);
    font-size: calc(var(--prk-mt-drawer-font-size, 14px) - 1px);
    color: color-mix(in srgb, var(--prk-mt-drawer-link-color, #162C5B) 82%, #8a94a6);
    background: rgba(22, 44, 91, .018);
  }

  .prk-mt-drawer[data-submenu-mode="expanded"] .sub-menu {
    display: block !important;
    position: static !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

  /* Card / slider mode */
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__panel,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__body,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__nav,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu {
    overflow: hidden !important;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__body,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__nav,
  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu {
    position: relative !important;
    height: 100% !important;
    max-height: none !important;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu li {
    position: static !important;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu > li,
  .prk-mt-drawer[data-submenu-mode="card"] .sub-menu > li.menu-item-has-children {
    display: flex;
    align-items: stretch;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__menu li > a {
    flex: 1 1 auto;
    min-width: 0;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__submenu-toggle {
    position: static !important;
    transform: rotate(180deg);
    flex: 0 0 48px;
    width: 48px;
    min-height: 50px;
    height: auto;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .sub-menu {
    position: absolute !important;
    inset: 0 !important;
    z-index: var(--prk-card-z, 20);
    display: block !important;
    max-height: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(105%, 0, 0);
    pointer-events: none;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    transition: transform .34s cubic-bezier(.16, 1, .3, 1), opacity .22s ease, visibility .22s ease;
    box-shadow: -8px 0 22px rgba(15, 23, 42, .035);
  }

  .prk-mt-drawer[data-submenu-mode="card"] .menu-item-has-children.is-open > .sub-menu,
  .prk-mt-drawer[data-submenu-mode="card"] .sub-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .sub-menu > li:not(.prk-mt-drawer__submenu-close-item) {
    display: flex;
    align-items: stretch;
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__submenu-close-item {
    position: sticky !important;
    top: 0;
    z-index: 30;
    display: block !important;
    background: var(--prk-mt-drawer-bg, #fff);
    border-bottom: 1px solid var(--prk-mt-drawer-border-color, #f0f0f1);
  }

  .prk-mt-drawer[data-submenu-mode="card"] .prk-mt-drawer__submenu-close {
    width: 100%;
    min-height: 64px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--prk-mt-drawer-link-color, #162C5B);
    font-weight: 700;
    cursor: pointer;
  }
}

/* MobileTheme product page header and bottom product bar */
.prk-mtph,
.prk-mtph *,
.prk-mtpb,
.prk-mtpb * {
  box-sizing: border-box;
}

.prk-mtph {
  position: sticky;
  top: var(--prk-mtph-top, 15px);
  right: var(--prk-mtph-x, 16px);
  left: var(--prk-mtph-x, 16px);
  z-index: var(--prk-mtph-z, 100003);
  width: auto;
  margin: var(--prk-mtph-top, 15px) var(--prk-mtph-x, 16px) 0;
  color: var(--prk-mtph-color, #162C5B);
}

.prk-mtph__inner {
  min-height: var(--prk-mtph-height, 45px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  background: var(--prk-mtph-bg, #fff);
  border: 1px solid var(--prk-mtph-border, #f0f0f1);
  border-radius: var(--prk-mtph-radius, 14px);
  box-shadow: var(--prk-mtph-shadow, 0 6px 24px rgba(22,44,91,.08));
}

.prk-mtph__item {
  position: relative;
  inline-size: 40px;
  block-size: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  color: var(--prk-mtph-color, #162C5B);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}

.prk-mtph__item.is-left {
  order: 1;
}

.prk-mtph__item.is-right {
  order: 3;
}

.prk-mtph__item--wishlist,
.prk-mtph__item--share,
.prk-mtph__item--cart_sidebar,
.prk-mtph__item--cart_link {
  color: var(--prk-mtph-color, #162C5B);
}

.prk-mtph__item:hover,
.prk-mtph__item--home {
  color: var(--prk-mtph-active, #ff3a30);
}

.prk-mtph__icon,
.prk-mtph__icon .prk-mt-icon,
.prk-mtph__icon i,
.prk-mtph__icon svg {
  font-size: var(--prk-mtph-icon-size, 24px);
  inline-size: var(--prk-mtph-icon-size, 24px);
  block-size: var(--prk-mtph-icon-size, 24px);
}

.prk-mtph__cart-count {
  position: absolute;
  inset-block-start: 2px;
  inset-inline-end: 2px;
  min-width: 8px;
  height: 8px;
  border-radius: 999px;
  font-size: 0;
}

.prk-mtph__cart-count.pluser {
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ff3a30, #ff6a00);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
}


body.single-product .prk-mt-navbar.is-product {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: rotateX(-90deg) translateY(8px);
  transform-origin: 50% 100%;
  transition: transform var(--prk-mtpb-dur, .6s) ease-out, opacity var(--prk-mtpb-dur, .6s) ease-out, visibility var(--prk-mtpb-dur, .6s) ease-out;
}

html.prk-mt-product-nav-open body.single-product .prk-mt-navbar.is-product {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: rotateX(0) translateY(0);
}

body.single-product .prk-mt-navbar.is-product .prk-mt-navbar__nav--primary {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0) translateZ(1px);
}

body.single-product .prk-mt-navbar.is-product .prk-mt-navbar__nav--second {
  display: none;
}

.prk-mtpb {
  position: fixed;
  left: var(--prk-mtpb-x, 16px);
  right: var(--prk-mtpb-x, 16px);
  bottom: var(--prk-mtpb-bottom, 16px);
  height: 0;
  z-index: var(--prk-mtpb-z, 100002);
  pointer-events: none;
  perspective: 900px;
}

body.single-product .price-fixed-bottom {
  position: fixed !important;
  left: var(--prk-mtpb-x, 16px) !important;
  right: var(--prk-mtpb-x, 16px) !important;
  bottom: var(--prk-mtpb-bottom, 16px) !important;
  width: auto !important;
  max-width: none !important;
  z-index: var(--prk-mtpb-z, 100002) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  background: var(--prk-mtpb-bg, #fff) !important;
  border: 1px solid #F2F6FF !important;
  border-radius: var(--prk-mtpb-radius, 15px) !important;
  box-shadow: var(--prk-mtpb-shadow, 5px 2px 31px rgba(0,0,0,.17)) !important;
  transform-origin: 50% 100%;
  backface-visibility: hidden;
  opacity: 1;
  visibility: visible;
  transition: transform var(--prk-mtpb-dur, .6s) ease-out, opacity var(--prk-mtpb-dur, .6s) ease-out, visibility var(--prk-mtpb-dur, .6s) ease-out;
}

body.single-product .price-fixed-bottom .price {
  flex: 0 0 auto;
  min-width: max-content;
}

body.single-product .price-fixed-bottom .price-fixed-bottom-child-box {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 202px;
}

html.prk-mt-product-nav-open body.single-product .price-fixed-bottom {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: rotateX(90deg) translateY(8px);
}

.prk-mtpb__toggle {
  position: fixed;
  left: var(--prk-mtpb-x, 16px);
  bottom: calc(var(--prk-mtpb-bottom, 16px) + 74px);
  width: 40px;
  height: 40px;
  z-index: calc(var(--prk-mtpb-z, 100002) + 2);
  pointer-events: auto;
  border: 0;
  border-radius: 0 25px 25px 0;
  background: var(--prk-mtpb-toggle-bg, #fff);
  color: var(--prk-mtpb-toggle-color, #162C5B);
  box-shadow: var(--prk-mtpb-shadow, 5px 2px 31px rgba(0,0,0,.13));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--prk-mtpb-dur, .6s) ease-out, opacity var(--prk-mtpb-dur, .6s) ease-out;
}

html.prk-mt-product-nav-open .prk-mtpb__toggle {
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .prk-mtph,
  .prk-mtpb,
  body.single-product .price-fixed-bottom {
    display: none !important;
  }
}

.prk-mtph__item.is-right:first-of-type {
  margin-inline-start: auto;
}

.prk-mtph__item.is-right ~ .prk-mtph__item.is-right {
  margin-inline-start: 0;
}

/* Stage62: product header two-piece layout + keep original side toggle */
body.single-product .prk-mtph {
  position: sticky;
  top: var(--prk-mtph-top, 15px);
  right: 0;
  left: 0;
  z-index: var(--prk-mtph-z, 100003);
  width: auto;
  margin: var(--prk-mtph-top, 15px) var(--prk-mtph-x, 16px) 0;
  color: var(--prk-mtph-color, #162C5B);
  pointer-events: none;
}

body.single-product .prk-mtph__inner {
  min-height: var(--prk-mtph-height, 45px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  direction: ltr;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.single-product .prk-mtph__group {
  min-height: var(--prk-mtph-height, 45px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  pointer-events: auto;
  direction: ltr;
  background: var(--prk-mtph-bg, #fff);
  border: 1px solid var(--prk-mtph-border, #f0f0f1);
  border-radius: var(--prk-mtph-radius, 14px);
  box-shadow: var(--prk-mtph-shadow, 0 6px 24px rgba(22,44,91,.08));
}

body.single-product .prk-mtph__group--left {
  order: 1;
}

body.single-product .prk-mtph__group--right {
  order: 2;
}

body.single-product .prk-mtph__item {
  position: relative;
  inline-size: var(--prk-mtph-height, 45px);
  block-size: var(--prk-mtph-height, 45px);
  min-inline-size: var(--prk-mtph-height, 45px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--prk-mtph-height, 45px);
  color: var(--prk-mtph-color, #162C5B);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  direction: rtl;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

body.single-product .prk-mtph__item + .prk-mtph__item {
  border-inline-start: 1px solid var(--prk-mtph-border, #f0f0f1);
}

body.single-product .prk-mtph__group--left .prk-mtph__item--share { order: 1; }
body.single-product .prk-mtph__group--left .prk-mtph__item--wishlist { order: 2; }
body.single-product .prk-mtph__group--left .prk-mtph__item--cart_sidebar,
body.single-product .prk-mtph__group--left .prk-mtph__item--cart_link { order: 3; }
body.single-product .prk-mtph__group--right .prk-mtph__item--home { order: 1; }
body.single-product .prk-mtph__group--right .prk-mtph__item--back { order: 2; }

body.single-product .prk-mtph__item:hover,
body.single-product .prk-mtph__item--home,
body.single-product .prk-mtph__item.is-liked,
body.single-product .prk-mtph__item.sit-wishlist-btn.is-liked {
  color: var(--prk-mtph-active, #ff3a30);
}

body.single-product .prk-mtph__icon,
body.single-product .prk-mtph__icon .prk-mt-icon,
body.single-product .prk-mtph__icon i,
body.single-product .prk-mtph__icon svg {
  font-size: var(--prk-mtph-icon-size, 24px);
  inline-size: var(--prk-mtph-icon-size, 24px);
  block-size: var(--prk-mtph-icon-size, 24px);
}

body.single-product .prk-mtph__cart-count {
  position: absolute;
  inset-block-start: 6px;
  inset-inline-end: 7px;
  min-width: 8px;
  height: 8px;
  border-radius: 999px;
  font-size: 0;
  background: #ff5b0e;
}

body.single-product .prk-mtph__cart-count.pluser {
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ff3a30, #ff6a00);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
}

body.single-product .prk-mtpb__toggle {
  display: none !important;
}

body.single-product .prk-mt-product-toggle {
  left: 0;
  bottom: calc(var(--prk-mtpb-bottom, 16px) + 74px);
  z-index: calc(var(--prk-mtpb-z, 100002) + 2);
  transition: transform var(--prk-mtpb-dur, .6s) ease-out, opacity var(--prk-mtpb-dur, .6s) ease-out;
}

/* html.prk-mt-product-nav-open body.single-product .prk-mt-product-toggle {
  transform: rotate(180deg);
} */

/* Stage64: product action sheet + default mobile search modal trigger */
body.single-product .prk-mtph__item--actions_modal,
body.single-product .prk-mtph__item--search_default,
body.single-product .prk-mtph__item--price_chart,
body.single-product .prk-mtph__item--notify,
body.single-product .prk-mtph__item--compare_link {
  color: var(--prk-mtph-color, #162C5B);
}

.prk-mt-product-actions-modal {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.prk-mt-product-actions-modal__head {
  min-height: 54px;
}

.prk-mt-product-actions-modal__row {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-top: 1px solid #f0f0f1;
  background: transparent;
  color: #292d32;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
}

.prk-mt-product-actions-modal__row:first-child {
  border-top: 0;
}

.prk-mt-product-actions-modal__row:hover,
.prk-mt-product-actions-modal__row:focus-visible {
  color: var(--prk-mtph-active, #ff3a30);
}

.prk-mt-product-actions-modal__icon,
.prk-mt-product-actions-modal__icon svg {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.prk-mt-product-actions-modal__label {
  line-height: 1.9;
}



/* MobileTheme stage65: z-index is fully controlled by theme options */
.prk-mt-header,
#prk-mobile-theme-header {
  z-index: var(--prk-mt-header-z, 1000) !important;
}

.prk-mt-navbar,
[data-prk-mobile-theme-navbar] {
  z-index: var(--prk-mt-navbar-z, 100002) !important;
}

.prk-mt-socials,
[data-prk-mobile-theme-socials] {
  z-index: var(--prk-mt-socials-z, 100031) !important;
}

.prk-mt-drawer {
  z-index: var(--prk-mt-drawer-z, 99990) !important;
}

body.single-product .prk-mt-product-toggle {
  z-index: var(--prk-mt-product-toggle-z, calc(var(--prk-mtpb-z, 100002) + 2)) !important;
}

/* Stage67: product header breadcrumb template */
body.single-product #prk-mobile-theme-product-header.prk-mtph.prk-mtph--breadcrumb {
  position: sticky;
  top: 0;
  inset-inline: 0;
  width: 100%;
  margin: 0;
  z-index: var(--prk-mtph-z, 100003) !important;
  background: var(--prk-mtph-bg, #fff);
  color: var(--prk-mtph-color, #162C5B);
  pointer-events: auto;
  border: 0;
  box-shadow: none;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__top {
  min-height: var(--prk-mtph-height, 45px);
  background: var(--prk-mtph-bg, #fff);
  direction: ltr;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__group {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: visible;
  pointer-events: auto;
  direction: ltr;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item {
  position: relative;
  inline-size: 40px;
  block-size: 40px;
  min-inline-size: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  color: var(--prk-mtph-color, #162C5B);
  background: transparent;
  border: 0 !important;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  direction: rtl;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item + .prk-mtph__item {
  border-inline-start: 0 !important;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item:active {
  transform: scale(.96);
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item:hover,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item--home,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item.is-liked,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__item.sit-wishlist-btn.is-liked {
  color: var(--prk-mtph-active, #ff3a30);
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__icon,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__icon .prk-mt-icon,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__icon i,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .prk-mtph__icon svg {
  font-size: var(--prk-mtph-icon-size, 24px);
  inline-size: var(--prk-mtph-icon-size, 24px);
  block-size: var(--prk-mtph-icon-size, 24px);
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .product-breadcrumb-nav {
  background: var(--prk-mtph-bg, #fff);
  border-bottom: 1px solid var(--prk-mtph-border, #f0f0f1);
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .hide-scrollbar::-webkit-scrollbar {
  display: none;
}

body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .product-breadcrumb-nav a,
body.single-product #prk-mobile-theme-product-header.prk-mtph--breadcrumb .product-breadcrumb-nav span {
  line-height: 1.8;
}


/* Stage69: per-item icon color and size for product mobile header */
body.single-product #prk-mobile-theme-product-header .prk-mtph__item {
  color: var(--prk-mtph-item-color, var(--prk-mtph-color, #162C5B));
}

body.single-product #prk-mobile-theme-product-header .prk-mtph__item:hover,
body.single-product #prk-mobile-theme-product-header .prk-mtph__item.is-liked,
body.single-product #prk-mobile-theme-product-header .prk-mtph__item.sit-wishlist-btn.is-liked {
  color: var(--prk-mtph-item-color, var(--prk-mtph-active, #ff3a30));
}

body.single-product #prk-mobile-theme-product-header .prk-mtph__icon,
body.single-product #prk-mobile-theme-product-header .prk-mtph__icon .prk-mt-icon,
body.single-product #prk-mobile-theme-product-header .prk-mtph__icon i,
body.single-product #prk-mobile-theme-product-header .prk-mtph__icon svg,
body.single-product #prk-mobile-theme-product-header .prk-mtph__icon img {
  font-size: var(--prk-mtph-item-icon-size, var(--prk-mtph-icon-size, 24px));
  inline-size: var(--prk-mtph-item-icon-size, var(--prk-mtph-icon-size, 24px));
  block-size: var(--prk-mtph-item-icon-size, var(--prk-mtph-icon-size, 24px));
}


/*
 * MobileTheme — WooCommerce product archives
 *
 * در آرشیو محصولات، اولویت Sticky با نوار فیلتر و مرتب‌سازی Archive V4 است.
 * این Override همچنین جلوی Sticky شدن دوباره هدر هنگام بازشدن Drawer را می‌گیرد.
 */
@media (max-width: 1023px) {
    #prk-mobile-theme-header.prk-mt-header--archive-static,
    .prk-mt-header.prk-mt-header--archive-static,
    html.prk-mt-menu-open
        #prk-mobile-theme-header.prk-mt-header--archive-static,
    html.prk-mt-menu-open
        .prk-mt-header.prk-mt-header--archive-static {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
    }
}