/** Shopify CDN: Minification failed

Line 371:1 Unexpected "menu-drawer__menu-item"
Line 412:1 Expected identifier but found "*"
Line 478:32 Unexpected "*"

**/
.header__icon--menu {
  position: initial;
}

.js menu-drawer > details > summary::before,
.js menu-drawer > details[open]:not(.menu-opening) > summary::before {
  content: '';
  position: absolute;
  cursor: default;
  width: 100%;
  height: calc(100vh - 100%);
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
  top: 100%;
  left: 0;
  background: rgba(var(--color-foreground), 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0s, visibility 0s;
}

menu-drawer > details[open] > summary::before {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--duration-default) ease, visibility var(--duration-default) ease;
}

.menu-drawer {
  position: absolute;
  transform: translateX(-100%);
  visibility: hidden;
  z-index: 3;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 0;
  background-color: rgb(var(--color-background));
  overflow-x: hidden;
  filter: drop-shadow(
    var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset) var(--drawer-shadow-blur-radius)
      rgba(var(--color-shadow), var(--drawer-shadow-opacity))
  );
}

.js .menu-drawer {
  height: calc(100vh - 100%);
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
}

.js details[open] > .menu-drawer,
.js details[open] > .menu-drawer__submenu {
  transition: transform var(--duration-default) ease, visibility var(--duration-default) ease;
}

.js details[open].menu-opening > .menu-drawer,
details[open].menu-opening > .menu-drawer__submenu {
  transform: translateX(0);
  visibility: visible;
}

.js .menu-drawer__navigation .submenu-open {
  visibility: hidden; /* hide menus from screen readers when hidden by submenu */
}

@media screen and (min-width: 750px) {
  .menu-drawer {
    width: 40rem;
    border-width: 0 var(--drawer-border-width) 0 0;
    border-style: solid;
    border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
  }
}

.menu-drawer__inner-container {
  position: relative;
  height: 100%;
}

.menu-drawer__navigation-container {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  overflow-y: auto;
  height: 100%;
}

.menu-drawer__navigation {
  padding: 3rem 0;
}

.menu-drawer__inner-submenu {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.js .menu-drawer__menu li {
  margin-bottom: 0.2rem;
}

.menu-drawer__menu-item {
  padding: 1.1rem 3rem;
  text-decoration: none;
  font-size: 1.8rem;
}

.menu-drawer summary.menu-drawer__menu-item {
  padding-right: 5.2rem;
}

.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.04);
}

.menu-drawer__menu-item--active:hover {
  background-color: rgba(var(--color-foreground), 0.08);
}

.js .menu-drawer__menu-item .icon-caret {
  display: none;
}

.menu-drawer__menu-item > .svg-wrapper {
  width: 15px;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.js .menu-drawer__submenu {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--color-background));
  z-index: 1;
  transform: translateX(100%);
  visibility: hidden;
}

.js .menu-drawer__submenu .menu-drawer__submenu {
  overflow-y: auto;
}

.menu-drawer__close-button {
  margin-top: 1.5rem;
  padding: 1.2rem 2.6rem 1.2rem 3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  text-align: left;
}

.menu-drawer__close-button .svg-wrapper {
  transform: rotate(180deg);
  margin-right: 1rem;
  width: 15px;
}

.menu-drawer__utility-links {
  padding: 0;
  background-color: rgba(var(--color-foreground), 0.03);
  position: relative;
}

.header--has-social .menu-drawer__utility-links {
  padding: 2rem 3rem;
}

@media screen and (max-width: 749px) {
  .header--has-account:where(:not(.header--has-social):not(.header--has-localizations)) .menu-drawer__utility-links {
    padding: 2rem 3rem;
  }
}

@media screen and (max-width: 989px) {
  .header--has-localizations:where(:not(.header--has-social)) .menu-drawer__utility-links {
    padding: 2rem 3rem;
  }
}

.menu-drawer__account {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
  margin-bottom: 0;
}

.menu-drawer__utility-links:has(.menu-drawer__localization) .menu-drawer__account {
  margin: 0;
}

.menu-drawer__account account-icon > .svg-wrapper {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}

.menu-drawer__account shop-user-avatar {
  --shop-avatar-size: 2.4rem;
  margin-right: 0.55rem;
  margin-left: -0.45rem;
}

.menu-drawer__account:hover account-icon > .svg-wrapper {
  transform: scale(1.07);
}

.menu-drawer .list-social {
  justify-content: flex-start;
  margin-left: -1.25rem;
}

.menu-drawer .list-social:empty {
  display: none;
}

.menu-drawer .list-social__link {
  padding: 1.1rem 1.1rem;
}

@media screen and (max-width: 749px) {
  .menu-drawer.country-selector-open {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* Custom drawer menu hover effect */
.menu-drawer__menu-item {
  text-decoration: none !important;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-shadow 0.25s ease,
    background-color 0.25s ease;
}

.menu-drawer__menu-item:hover,
.menu-drawer__menu-item:focus {
  color: #bb3754ff !important;
  transform: translateX(10px) scale(1.06);
  text-shadow:
    0 0 6px rgba(191, 10, 48, 0.9),
    0 0 14px rgba(191, 10, 48, 0.65);
  background-color: rgba(255, 255, 255, 0.08) !important;
  text-decoration: none !important;
}

.menu-drawer__menu-item:hover span,
.menu-drawer__menu-item:focus span {
  color: #bb3754ff !important;
  text-decoration: none !important;
}

.menu-drawer__menu-item--active {
  text-decoration: none !important;
}

.menu-drawer__menu-item--active:hover {
  color: #bb3754ff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
/* Remove white hover background from drawer menu */
.menu-drawer__menu-item:hover,
.menu-drawer__menu-item:focus,
.menu-drawer__menu-item--active:hover {
  background-color: transparent !important;
  color: #bb3754ff !important;
  transform: translateX(10px) scale(1.06);
  text-shadow:
    0 0 6px rgba(191, 10, 48, 0.9),
    0 0 14px rgba(191, 10, 48, 0.65);
  text-decoration: none !important;
}

/* Make sure span inside the menu item also turns red */
.menu-drawer__menu-item:hover span,
.menu-drawer__menu-item:focus span {
  color: #bb3754ff !important;
  text-decoration: none !important;
}

/* Remove active item background too */
.menu-drawer__menu-item--active {
  background-color: transparent !important;
  text-decoration: none !important;
}
/* Drawer search box above menu */
.poa-drawer-search {
  padding: 0 3rem 2rem 3rem;
  margin-top: 1.5rem;
}

.poa-drawer-search-box {
  width: 100%;
  height: 4.8rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.poa-drawer-search-input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.5rem;
  padding-left: 1.8rem;
}

.poa-drawer-search-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.poa-drawer-search-button {
  width: 5rem;
  height: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poa-drawer-search-button:hover {
  color: #bb3754ff;
}

.poa-drawer-search-button .svg-wrapper {
  width: 2rem;
  height: 2rem;
}
/* Softer red color for Categories/Menu titles and hover */
.poa-drawer-title {
  color: #d94a5a !important;
}

/* If the arrow is also red, soften it */
.menu-drawer__menu-item:hover,
*menu-drawer__menu-item:focus,
.poa-drawer-link:hover,
.poa-drawer-link:focus {
  color: #d94a5a !important;
  text-shadow:
    0 0 4px rgba(217, 74, 90, 0.45),
    0 0 10px rgba(217, 74, 90, 0.25) !important;
}

/* Softer red for arrows/icons on hover */
.menu-drawer__menu-item:hover .svg-wrapper,
.menu-drawer__menu-item:focus .svg-wrapper,
.poa-drawer-link:hover .svg-wrapper,
.poa-drawer-link:focus .svg-wrapper {
  color: #d94a5a !important;
}
/* Fix drawer menu readability - remove strong glow */

/* Section titles like Categories / Menu */
.poa-drawer-title {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

/* If you want Categories/Menu title red but readable, use this instead:
.poa-drawer-title {
  color: #ffccd2 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}
*/

/* Menu items normal state */
.menu-drawer__menu-item,
.poa-drawer-link {
  text-shadow: none !important;
}

/* Hover effect without strong glow */
.menu-drawer__menu-item:hover,
.*enu-drawer__menu-item:focus,
.poa-*rawer-link:hover,
.poa-drawer-link*focus {
  color: #ffccd2 !important;
  background-color: transparent !important;
  text-shadow: none !important;
  transform: translateX(8px) scale(1.04);
  text-decoration: none !important;
}

/* Arrows/icons on hover */
.menu-drawer__menu-item:hover .svg-wrapper,
.menu-drawer__menu-item:focus .svg-wrapper,
.poa-drawer-link:hover .svg-wrapper,
.poa-drawer-link:focus .svg-wrapper {
  color: #ffccd2 !important;
  text-shadow: none !important;
}

/* Active item without glow/background */
.menu-drawer__menu-item--active,
.menu-drawer__menu-item--active:hover,
.menu-drawer__menu-item--active:focus {
  background-color: transparent !important;
  text-shadow: none !important;
  text-decoration: none !important;
}
/* Keep menu items white after click/back, red only on hover */

/* Normal state */
.menu-drawer__menu-item,
.menu-drawer__menu-item:focus,
.menu-drawer__menu-item--active,
.menu-drawer details[open] > summary.menu-drawer__menu-item {
  color: #ffffff !important;
  background-color: transparent !important;
  text-shadow: none !important;
  text-decoration: none !important;
}

/* Normal arrow/icon state */
.menu-drawer__menu-item .svg-wrapper,
.menu-drawer__menu-item:focus .svg-wrapper,
.menu-drawer details[open] > summary.menu-drawer__menu-item .svg-wrapper {
  color: #ffffff !important;
}

/* Red only when mouse is actually hovering */
.menu-drawer__menu-item:hover {
  color: #ffccd2 !important;
  background-color: transparent !important;
  transform: translateX(8px) scale(1.04);
  text-shadow: none !important;
  text-decoration: none !important;
}

/* Arrow red only on hover */
.menu-drawer__menu-item:hover .svg-wrapper {
  color: #ffccd2 !important;
}
/* Remove arrows from drawer menu items */
.menu-drawer__menu-item > .svg-wrapper {
  display: none !important;
}

/* Remove extra right padding after hiding arrows */
.menu-drawer summary.menu-drawer*_menu-item {
  padding-right: 3rem*!important;
}
/* Bigger drawer menu words */
.menu-drawer__menu-item,
.menu-drawer summary.menu-drawer__menu-item,
.poa-drawer-title,
.poa-drawer-link {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

/* Space between Categories and Menu */
.menu-drawer__menu > li,
.poa-drawer-section {
  margin-bottom: 1.2rem !important;
}

/* Child links under Categories/Menu */
.menu-drawer__submenu .menu-drawer__menu-item,
.poa-drawer-links .poa-drawer-link {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
}

/* Remove horizontal scrollbar at bottom */
html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* Prevent drawer from creating horizontal overflow */
.menu-drawer,
.menu-drawer__inner-container,
.menu-drawer__navigation-container {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Make drawer width controlled */
#menu-drawer {
  max-width: 100vw !important;
}

/* If the open drawer pushes content sideways, stop it */
.menu-drawer-container,
.header-drawer,
header-drawer {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
/* Make side drawer smaller and cleaner */
#menu-drawer,
.menu-drawer {
  width: 32rem !important;
  max-width: 32rem !important;
}

/* On mobile screens, keep it comfortable but not too wide */
@media screen and (max-width: 749px) {
  #menu-drawer,
  .menu-drawer {
    width: 82vw !important;
    max-width: 82vw !important;
  }
}

/* On very small phones */
@media screen and (max-width: 420px) {
  #menu-drawer,
  .menu-drawer {
    width: 88vw !important;
    max-width: 88vw !important;
  }
}

/* Prevent horizontal scrollbar */
html,
body {
  overflow-x: hidde* !important;
}