@charset "UTF-8";

:root {
  --font-body-family: Helvetica, Arial, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: Helvetica, Arial, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-decorative-family: Helvetica, Arial, sans-serif;
  --font-decorative-style: normal;
  --color-foreground: 36, 40, 51;
  --color-background: 255, 255, 255;
  --page-width: 1600px;
}

body {
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  background: rgb(var(--color-background));
  margin: 0;
}

.color-background-1 {
  --color-background: 255, 255, 255;

  --color-foreground: 36, 40, 51;
  --color-shadow: 0, 0, 0;
  --color-button: 36, 40, 51;
  --color-button-text: 255, 255, 255;
  --color-secondary-button-text: 36, 40, 51;
  --color-outline: 36, 40, 51;
}

.color-background-2 {
  --color-background: 249, 249, 249;

  --color-foreground: 18, 18, 18;
  --color-shadow: 0, 0, 0;
  --color-button: 18, 18, 18;
  --color-button-text: 255, 255, 255;
  --color-secondary-button-text: 18, 18, 18;
  --color-outline: 18, 18, 18;
}

.color-inverse {
  --color-background: 36, 40, 51;

  --color-foreground: 255, 255, 255;
  --color-shadow: 0, 0, 0;
  --color-button: 255, 214, 0;
  --color-button-text: 0, 0, 0;
  --color-secondary-button-text: 255, 255, 255;
  --color-outline: 255, 255, 255;
}

.color-accent-1 {
  --color-background: 239, 255, 250;

  --color-foreground: 36, 40, 51;
  --color-shadow: 0, 0, 0;
  --color-button: 36, 40, 51;
  --color-button-text: 255, 255, 255;
  --color-secondary-button-text: 36, 40, 51;
  --color-outline: 36, 40, 51;
}

.color-accent-2 {
  --color-background: 36, 40, 51;

  --color-foreground: 255, 255, 255;
  --color-shadow: 0, 0, 0;
  --color-button: 255, 255, 255;
  --color-button-text: 36, 40, 51;
  --color-secondary-button-text: 255, 255, 255;
  --color-outline: 255, 255, 255;
}

.color-scheme-a8c2ea25-d958-4c79-b961-28c0332fd14a {
  --color-background: 226, 203, 179;

  --color-foreground: 36, 40, 51;
  --color-shadow: 0, 0, 0;
  --color-button: 235, 129, 21;
  --color-button-text: 255, 255, 255;
  --color-secondary-button-text: 36, 40, 51;
  --color-outline: 36, 40, 51;
}

body,
.color-background-1,
.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2,
.color-scheme-a8c2ea25-d958-4c79-b961-28c0332fd14a {
  color: rgb(var(--color-foreground));
  background: rgba(var(--color-background), var(--alpha-background));
}

:root {
  --font-body-family: Helvetica, Arial, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-body-letter-spacing: normal;
  --font-heading-family: Helvetica, Arial, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-header-letter-spacing: normal;
  --font-decorative-family: Helvetica, Arial, sans-serif;
  --font-decorative-style: normal;
  --font-decorative-letter-spacing: 0.12em;
  --sale-badge-background: 0, 0, 0;
  --sale-badge-foreground: 255, 214, 0;

  --gift-badge-background: 181, 0, 181;
  --gift-badge-foreground: 255, 255, 255;

  --new-badge-background: 12, 183, 113;
  --new-badge-foreground: 255, 255, 255;

  --preorder-badge-background: 51, 79, 180;
  --preorder-badge-foreground: 255, 255, 255;

  --custom-badge-background: 255, 255, 255;
  --custom-badge-foreground: 0, 0, 0;

  --color-error: 255, 0, 0;
  --color-warning: 255, 214, 0;
  --color-success: 12, 183, 113;


  --page-width: 1600px;



  --small-radius: 0.25rem;
  --medium-radius: 0.5rem;
  --large-radius: 0.875rem;


  --card-media-padding: 0px;
  --card-media-padding-horizontal: 0px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  /* 防止 Safari 和 Chrome 自动调整文本大小 */
  text-size-adjust: 100%;
}

@media screen and (max-width: 749px) {
  html {
    font-size: 14px;
  }
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  margin: 0;
  line-height: 1.4;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  letter-spacing: var(--font-body-letter-spacing);
  font-weight: var(--font-body-weight);
}

main {
  flex: 1 1 auto;
}


.no-js:not(html),
.no-js-inline,
html.no-js .no-js-hidden {
  display: none !important
}

html.no-js .no-js {
  display: block !important
}

html.no-js .no-js-inline {
  display: inline-block !important
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

@media screen and (min-width:750px) {
  .page-width {
    padding-left: 2rem;
    padding-right: 2rem
  }
}

@media screen and (min-width:750px) {
  .page-width.width--narrow {
    padding-left: 9rem;
    padding-right: 9rem
  }
}

@media screen and (min-width:1200px) {
  .page-width.width--narrow {
    max-width: 72.6rem;
    padding-left: 0;
    padding-right: 0
  }
}

.full-width {
  width: 100%
}

.full-height {
  height: 100%
}

[hidden],
.hidden {
  display: none !important
}

[aria-hidden=true] a,
[aria-hidden=true] button,
[aria-hidden=true] input,
[aria-hidden=true] textarea,
[aria-hidden=true] select {
  visibility: hidden;
  pointer-events: none
}

@media screen and (max-width:749px) {
  .small-hide {
    display: none !important
  }
}

@media screen and (min-width:750px)and (max-width:1199px) {
  .medium-hide {
    display: none !important
  }
}

@media screen and (min-width:1200px) {
  .large-up-hide {
    display: none !important
  }
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important
}

.visibility-hidden {
  visibility: hidden
}

@media screen and (max-width:749px) {
  .visually-hidden-mobile {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal !important
  }
}

.overflow-hidden,
.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop {
  overflow: hidden
}

@media screen and (min-width:750px) {
  .overflow-hidden-mobile {
    overflow: auto
  }
}

@media screen and (min-width:1200px) {
  .overflow-hidden-tablet {
    overflow: auto
  }
}

.d-block,
deferred-media,
product-model {
  display: block
}

.d-flex {
  display: flex;
  flex-wrap: wrap
}

.d-inline-flex {
  display: inline-flex;
  flex-wrap: wrap
}

.gap-1 {
  gap: .25rem
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: .75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-7 {
  gap: 1.75rem
}

.gap-8 {
  gap: 2rem
}

@media screen and (min-width:750px) {
  .gap-desktop-1 {
    gap: .25rem
  }

  .gap-desktop-2 {
    gap: .5rem
  }

  .gap-desktop-3 {
    gap: .75rem
  }

  .gap-desktop-4 {
    gap: 1rem
  }

  .gap-desktop-5 {
    gap: 1.25rem
  }

  .gap-desktop-6 {
    gap: 1.5rem
  }

  .gap-desktop-7 {
    gap: 1.75rem
  }

  .gap-desktop-8 {
    gap: 2rem
  }

  .gap-desktop-1--important {
    gap: .25rem !important
  }

  .gap-desktop-2--important {
    gap: .5rem !important
  }

  .gap-desktop-3--important {
    gap: .75rem !important
  }

  .gap-desktop-4--important {
    gap: 1rem !important
  }

  .gap-desktop-5--important {
    gap: 1.25rem !important
  }

  .gap-desktop-6--important {
    gap: 1.5rem !important
  }

  .gap-desktop-7--important {
    gap: 1.75rem !important
  }

  .gap-desktop-8--important {
    gap: 2rem !important
  }
}

@media screen and (max-width:749px) {
  .gap-mobile-1 {
    gap: .25rem
  }

  .gap-mobile-2 {
    gap: .5rem
  }

  .gap-mobile-3 {
    gap: .75rem
  }

  .gap-mobile-4 {
    gap: 1rem
  }

  .gap-mobile-5 {
    gap: 1.25rem
  }

  .gap-mobile-6 {
    gap: 1.5rem
  }

  .gap-mobile-7 {
    gap: 1.75rem
  }

  .gap-mobile-8 {
    gap: 2rem
  }

  .gap-mobile-1--important {
    gap: .25rem !important
  }

  .gap-mobile-2--important {
    gap: .5rem !important
  }

  .gap-mobile-3--important {
    gap: .75rem !important
  }

  .gap-mobile-4--important {
    gap: 1rem !important
  }

  .gap-mobile-5--important {
    gap: 1.25rem !important
  }

  .gap-mobile-6--important {
    gap: 1.5rem !important
  }

  .gap-mobile-7--important {
    gap: 1.75rem !important
  }

  .gap-mobile-8--important {
    gap: 2rem !important
  }
}

.align-items-start {
  align-items: flex-start !important
}

.align-items-center {
  align-items: center !important
}

.align-items-end {
  align-items: flex-end !important
}

.justify-content-start,
.justify-content-left {
  justify-content: flex-start !important
}

.justify-content-center {
  justify-content: center !important
}

.justify-content-end,
.justify-content-right {
  justify-content: flex-end !important
}

.justify-content-space {
  justify-content: space-between !important
}

@media screen and (max-width:749px) {
  .small-align-items-start {
    align-items: flex-start !important
  }

  .small-align-items-center {
    align-items: center !important
  }

  .small-align-items-end {
    align-items: flex-end !important
  }

  .small-justify-content-start {
    justify-content: flex-start !important
  }

  .small-justify-content-center {
    justify-content: center !important
  }

  .small-justify-content-end {
    justify-content: flex-end !important
  }

  .small-justify-content-space {
    justify-content: space-between !important
  }
}

.link {
  cursor: pointer;
  display: inline-block;
  border: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent
}

.link.link-text[aria-disabled=true],
.link.link-text[disabled] {
  opacity: .5
}

@media(prefers-reduced-motion:reduce) {
  .link.link-text:hover {
    opacity: .75
  }
}

@media(prefers-reduced-motion:no-preference) {
  .link.link-text {
    position: relative;
    --underline-scale: 0
  }

  .link.link-text:after {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    width: 100%;
    background: rgba(var(--color-foreground), 1);
    transition: transform .3s cubic-bezier(0, 0, .3, 1);
    transform: scaleX(var(--underline-scale));
    transform-origin: bottom right
  }

  .link.link-text:hover {
    --underline-scale: 1
  }

  .link.link-text:hover:after {
    transform-origin: bottom left
  }

  .link.link-text.show-underline {
    --underline-scale: 1
  }

  .link.link-text.show-underline:hover {
    --underline-scale: 0
  }
}

.link.link-full:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.link.link-underline:hover {
  text-decoration: underline
}

.position-container {
  display: flex
}

.position-container.position--top-left {
  align-items: flex-start;
  justify-content: flex-start
}

.position-container.position--top-center {
  align-items: flex-start;
  justify-content: center
}

.position-container.position--top-right {
  align-items: flex-start;
  justify-content: flex-end
}

.position-container.position--middle-left {
  align-items: center;
  justify-content: flex-start
}

.position-container.position--middle-center {
  align-items: center;
  justify-content: center
}

.position-container.position--middle-right {
  align-items: center;
  justify-content: flex-end
}

.position-container.position--bottom-left {
  align-items: flex-end;
  justify-content: flex-start
}

.position-container.position--bottom-center {
  align-items: flex-end;
  justify-content: center
}

.position-container.position--bottom-right {
  align-items: flex-end;
  justify-content: flex-end
}

@media screen and (max-width:749px) {

  .position-container.position--top-left,
  .position-container.position--top-center,
  .position-container.position--top-right,
  .position-container.position--middle-left,
  .position-container.position--middle-center,
  .position-container.position--middle-right,
  .position-container.position--bottom-left,
  .position-container.position--bottom-center,
  .position-container.position--bottom-right {
    justify-content: center
  }

  .position-container.position-mobile--top-left {
    align-items: flex-start;
    justify-content: flex-start
  }

  .position-container.position-mobile--top-center {
    align-items: flex-start;
    justify-content: center
  }

  .position-container.position-mobile--top-right {
    align-items: flex-start;
    justify-content: flex-end
  }

  .position-container.position-mobile--middle-left {
    align-items: center;
    justify-content: flex-start
  }

  .position-container.position-mobile--middle-center {
    align-items: center;
    justify-content: center
  }

  .position-container.position-mobile--middle-right {
    align-items: center;
    justify-content: flex-end
  }

  .position-container.position-mobile--bottom-left {
    align-items: flex-end;
    justify-content: flex-start
  }

  .position-container.position-mobile--bottom-center {
    align-items: flex-end;
    justify-content: center
  }

  .position-container.position-mobile--bottom-right {
    align-items: flex-end;
    justify-content: flex-end
  }
}

.ms-auto {
  margin-left: auto
}

.me-auto {
  margin-right: auto
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.ps-0 {
  padding-left: 0 !important
}

.pe-0 {
  padding-right: 0 !important
}

.pt-0 {
  padding-top: 0 !important
}

.pb-0 {
  padding-bottom: 0 !important
}

.ms-0 {
  margin-left: 0 !important
}

.me-0 {
  margin-right: 0 !important
}

.mt-0 {
  margin-top: 0 !important
}

.mb-0 {
  margin-bottom: 0 !important
}

.ps-1 {
  padding-left: .5rem !important
}

.pe-1 {
  padding-right: .5rem !important
}

.pt-1 {
  padding-top: .5rem !important
}

.pb-1 {
  padding-bottom: .5rem !important
}

.ms-1 {
  margin-left: .5rem !important
}

.me-1 {
  margin-right: .5rem !important
}

.mt-1 {
  margin-top: .5rem !important
}

.mb-1 {
  margin-bottom: .5rem !important
}

.ps-2 {
  padding-left: 1rem !important
}

.pe-2 {
  padding-right: 1rem !important
}

.pt-2 {
  padding-top: 1rem !important
}

.pb-2 {
  padding-bottom: 1rem !important
}

.ms-2 {
  margin-left: 1rem !important
}

.me-2 {
  margin-right: 1rem !important
}

.mt-2 {
  margin-top: 1rem !important
}

.mb-2 {
  margin-bottom: 1rem !important
}

.ps-3 {
  padding-left: 1.5rem !important
}

.pe-3 {
  padding-right: 1.5rem !important
}

.pt-3 {
  padding-top: 1.5rem !important
}

.pb-3 {
  padding-bottom: 1.5rem !important
}

.ms-3 {
  margin-left: 1.5rem !important
}

.me-3 {
  margin-right: 1.5rem !important
}

.mt-3 {
  margin-top: 1.5rem !important
}

.mb-3 {
  margin-bottom: 1.5rem !important
}

.ps-4 {
  padding-left: 2rem !important
}

.pe-4 {
  padding-right: 2rem !important
}

.pt-4 {
  padding-top: 2rem !important
}

.pb-4 {
  padding-bottom: 2rem !important
}

.ms-4 {
  margin-left: 2rem !important
}

.me-4 {
  margin-right: 2rem !important
}

.mt-4 {
  margin-top: 2rem !important
}

.mb-4 {
  margin-bottom: 2rem !important
}

.ps-5 {
  padding-left: 2.5rem !important
}

.pe-5 {
  padding-right: 2.5rem !important
}

.pt-5 {
  padding-top: 2.5rem !important
}

.pb-5 {
  padding-bottom: 2.5rem !important
}

.ms-5 {
  margin-left: 2.5rem !important
}

.me-5 {
  margin-right: 2.5rem !important
}

.mt-5 {
  margin-top: 2.5rem !important
}

.mb-5 {
  margin-bottom: 2.5rem !important
}

.ps-6 {
  padding-left: 3rem !important
}

.pe-6 {
  padding-right: 3rem !important
}

.pt-6 {
  padding-top: 3rem !important
}

.pb-6 {
  padding-bottom: 3rem !important
}

.ms-6 {
  margin-left: 3rem !important
}

.me-6 {
  margin-right: 3rem !important
}

.mt-6 {
  margin-top: 3rem !important
}

.mb-6 {
  margin-bottom: 3rem !important
}

*:focus {
  outline: 0;
  box-shadow: none
}

*:focus-visible {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: 3px
}

*:focus-visible.focus-inset {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: -2px
}

*:focus-visible.focus-none {
  outline: none !important;
  box-shadow: none !important
}

.focused {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: 3px
}

.focused.focus-inset {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: -2px
}

.no-js *:focus {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: 3px
}

.no-js *:focus.focus-inset {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: -2px
}

.no-js *:focus.focus-none {
  outline: none !important;
  box-shadow: none !important
}

.no-js *:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important
}

.no-js *:focus:not(:focus-visible).focus-inset {
  outline: none !important;
  box-shadow: none !important
}

.gradient {
  --alpha-background: 1;
  background: var(--gradient-background, rgba(var(--color-background), var(--alpha-background)));
  background-attachment: fixed
}

.background--blur {
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem)
}

.background--transparent {
  background-color: transparent !important
}

.reverse-color {
  background-color: rgb(var(--color-foreground)) !important;
  color: rgb(var(--color-background)) !important
}

.isolate {
  position: relative;
  z-index: 0
}

.isolate.isolate--higher {
  z-index: 1
}

body[scroll-y-off] {
  width: 100%;
  position: fixed
}

hr {
  border: none;
  height: 1px;
  background-color: rgba(var(--color-foreground), .1);
  display: block;
  margin: 1rem 0
}

hr.hr--l {
  margin: 2rem 0
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0
}

.no-pointer-event {
  pointer-events: none !important
}

.round {
  border-radius: 9999px;
  overflow: hidden
}

.sm-round {
  border-radius: var(--small-radius);
  overflow: hidden
}

.md-round {
  border-radius: var(--medium-radius);
  overflow: hidden
}

.lg-round {
  border-radius: var(--large-radius);
  overflow: hidden
}

.blur {
  filter: blur(1rem)
}

.skip-to-content-link:focus {
  z-index: 101;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto
}

::selection {
  background-color: rgba(var(--color-foreground), .2)
}

.ratio {
  position: relative;
  display: flex;
  align-items: stretch
}

.ratio:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent)
}

.icon {
  width: .875rem;
  height: auto
}

.texture-background-image {
  position: absolute !important;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none
}

.texture-background-image.background--fixed {
  clip-path: inset(-1px)
}

.texture-background-image.background--fixed img,
.texture-background-image.background--fixed svg {
  position: fixed !important
}

.texture-background-image.background--ambient-move img,
.texture-background-image.background--ambient-move svg {
  animation: ambientMove 30s linear infinite
}

picture img {
  width: 100%;
  height: 100%
}

.media {
  display: block;
  position: relative;
  overflow: hidden
}

.media>:not(.zoom, .button, .deferred-media-poster-button, .loading-overlay-spinner),
.media model-viewer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.media img {
  object-fit: cover;
  object-position: center center
}

.media.media-fit--cover img {
  object-fit: cover
}

.media.media-fit--contain img {
  object-fit: contain
}

.media.media--square,
.media.media--narrow,
.media.media--panoramic,
.media.media--landscape,
.media.media--portrait,
.media.media--adapt {
  --padding-bottom: 100%
}

.media.media--square:before,
.media.media--narrow:before,
.media.media--panoramic:before,
.media.media--landscape:before,
.media.media--portrait:before,
.media.media--adapt:before {
  content: "";
  display: block;
  pointer-events: none;
  padding-bottom: var(--padding-bottom)
}

.media.media--adapt {
  --padding-bottom: var(--ratio-percent, 100%)
}

.media.media--portrait {
  --padding-bottom: 125%
}

.media.media--landscape {
  --padding-bottom: 62.5%
}

.media.media--panoramic {
  --padding-bottom: 56.25%
}

.media.media--narrow {
  --padding-bottom: 45%
}

.media.media--circle {
  border-radius: 9999px;
  overflow: hidden
}

.media-poster {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0
}

.video-model-media {
  display: block;
  position: relative;
  overflow: hidden
}

.video-model-media video,
.video-model-media iframe,
.video-model-media .shopify-model-viewer-ui,
.video-model-media model-viewer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center
}

.video-model-media.media-fit--cover video,
.video-model-media.media-fit--cover iframe,
.video-model-media.media-fit--cover .shopify-model-viewer-ui,
.video-model-media.media-fit--cover model-viewer {
  object-fit: cover
}

.deferred-media video,
.deferred-media iframe,
.deferred-media .shopify-model-viewer-ui,
.deferred-media model-viewer {
  display: none
}

.deferred-media[loaded] video,
.deferred-media[loaded] iframe,
.deferred-media[loaded] .shopify-model-viewer-ui,
.deferred-media[loaded] model-viewer {
  display: block
}

.deferred-media[loaded]:not(product-model) .media-poster {
  filter: blur(1rem)
}

.font-body {
  font-family: var(--font-body-family), serif !important;
  font-style: var(--font-body-style) !important;
  font-weight: var(--font-body-weight) !important;
  letter-spacing: var(--font-body-letter-spacing) !important
}

.font-decorative {
  font-family: var(--font-decorative-family), serif !important;
  font-style: var(--font-decorative-style) !important;
  letter-spacing: var(--font-decorative-letter-spacing) !important
}

b,
.font-weight-bold {
  font-weight: var(--font-body-weight-bold) !important
}

.font-italic {
  font-style: italic
}

.font-size-extra-s {
  font-size: .5rem !important
}

.font-size-xxs {
  font-size: .625rem !important
}

.font-size-xs {
  font-size: .75rem !important
}

.font-size-s {
  font-size: .875rem !important
}

.font-size-l {
  font-size: 1.25rem !important
}

.font-size-xl {
  font-size: 1.5rem !important
}

.font-size-xxl {
  font-size: 1.75rem !important
}

.font-size-extra-l {
  font-size: 2rem !important
}

.letter-space-1 {
  letter-spacing: 1px
}

.letter-space-2 {
  letter-spacing: 2px
}

.letter-space-3 {
  letter-spacing: 3px
}

.lh-0 {
  line-height: 0 !important
}

.lh-1 {
  line-height: 1
}

.lh-2 {
  line-height: 2
}

.ln-normal {
  line-height: normal
}

.uppercase {
  text-transform: uppercase !important
}

.capitalize {
  text-transform: capitalize !important
}

.lowercase {
  text-transform: lowercase !important
}

.light {
  opacity: .75 !important
}

.lighter {
  opacity: .5 !important
}

.underline {
  text-decoration: underline !important
}

.line-through {
  text-decoration: line-through !important
}

.break {
  word-break: break-word
}

s {
  opacity: .75;
  font-weight: 400
}

h1,
h2,
h3,
h4,
h5,
h6,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading-family), serif;
  font-style: var(--font-heading-style);
  letter-spacing: var(--font-header-letter-spacing);
  font-weight: var(--font-heading-weight);
  color: inherit;
  line-height: normal;
  word-break: normal;
  margin-block-start: 0;
  margin-block-end: 1rem
}

.hxxl {
  font-size: 4rem
}

.hxl {
  font-size: 3rem
}

.h0 {
  font-size: 2.25rem
}

h1,
.h1 {
  font-size: 2rem
}

h2,
.h2 {
  font-size: 1.75rem
}

h3,
.h3 {
  font-size: 1.5rem
}

h4,
.h4 {
  font-size: 1.25rem
}

h5,
.h5 {
  font-size: 1rem
}

h6,
.h6 {
  font-size: .875rem
}

p {
  margin-block-start: 0;
  margin-block-end: .5rem
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), .75);
  border-left: 2px solid rgba(var(--color-foreground), .2);
  padding-left: 1rem
}

fieldset {
  border: none;
  padding: 0;
  margin: 0
}

fieldset legend {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none
}

.caption {
  font-size: .75rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), .75)
}

.rte>*:first-child {
  margin-top: 0
}

.rte>*:last-child {
  margin-bottom: 0
}

.rte>*:is(p) {
  margin-bottom: 1.5rem
}

.rte>*:is(ul, ol, div) {
  margin-bottom: 1rem
}

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
  margin-bottom: .5rem
}

.rte table {
  table-layout: fixed
}

@media screen and (min-width:750px) {
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem
  }
}

.rte img {
  height: auto;
  max-width: 100%;
  border-radius: var(--medium-radius)
}

.rte video,
.rte iframe {
  width: 100%;
  height: auto;
  border-radius: var(--medium-radius);
  border: none
}

.rte iframe {
  aspect-ratio: 16/9
}

.rte ul,
.rte ol {
  list-style-position: inside;
  padding-left: 2rem
}

.rte li {
  list-style: inherit;
  margin-bottom: .5rem
}

.rte li p {
  display: inline
}

.rte li:last-child {
  margin-bottom: 0
}

.rte a {
  --color-opacity: .75;
  color: rgba(var(--color-foreground), var(--color-opacity));
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-thickness .1s ease
}

.rte a:hover {
  --color-opacity: 1;
  text-decoration-thickness: 2px
}

.rte blockquote {
  display: inline-flex
}

.rte blockquote>* {
  margin: -.5rem 0
}

.rte:after {
  clear: both;
  content: "";
  display: block
}

.text-align--left {
  text-align: left !important
}

.text-align--center {
  text-align: center !important
}

.text-align--right {
  text-align: right !important
}

@media screen and (max-width:749px) {
  .text-align-mobile--left {
    text-align: left !important
  }

  .text-align-mobile--center {
    text-align: center !important
  }

  .text-align-mobile--right {
    text-align: right !important
  }
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 1px rgba(var(--color-foreground), .2)
}

table:not([class]) td,
table:not([class]) th {
  padding: 1rem;
  border: 1px solid rgba(var(--color-foreground), .2)
}

table.table-collapse {
  border-collapse: collapse
}

details>* {
  box-sizing: border-box
}

summary {
  cursor: pointer;
  list-style: none
}

summary::-webkit-details-marker {
  display: none
}

.details-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: .5rem 0
}

.details-disclosure summary .icon-caret {
  flex: 0 0 auto;
  margin-left: auto;
  width: .875rem;
  opacity: .75;
  transition: transform .3s ease
}

.details-disclosure .details-disclosure-content {
  padding: .5rem 0;
  visibility: hidden;
  opacity: 0
}

.details-disclosure.has-opened summary .icon-caret {
  transform: scaleY(-1)
}

.details-disclosure.has-opened .details-disclosure-content {
  visibility: visible;
  opacity: 1;
  animation: slideIn .3s ease
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem
}

.col {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  flex: 1 1 0;
  width: 100%
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%
}

@media(min-width:750px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media(min-width:1200px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%
  }
}

.grid {
  display: grid
}

.grid.columns--1 {
  grid-template-columns: repeat(1, 1fr)
}

.grid.columns--2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid.columns--3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid.columns--4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid.columns--5 {
  grid-template-columns: repeat(5, 1fr)
}

.grid.columns--6 {
  grid-template-columns: repeat(6, 1fr)
}

@media screen and (max-width:749px) {
  .grid.columns-mobile--1 {
    grid-template-columns: repeat(1, 1fr)
  }

  .grid.columns-mobile--2 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media screen and (min-width:750px) {
  .grid-desktop {
    display: grid
  }

  .grid-desktop.columns-desktop--1 {
    grid-template-columns: repeat(1, 1fr)
  }

  .grid-desktop.columns-desktop--2 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-desktop.columns-desktop--3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .grid-desktop.columns-desktop--4 {
    grid-template-columns: repeat(4, 1fr)
  }

  .grid-desktop.columns-desktop--5 {
    grid-template-columns: repeat(5, 1fr)
  }

  .grid-desktop.columns-desktop--6 {
    grid-template-columns: repeat(6, 1fr)
  }

  .grid-desktop--important {
    display: grid !important
  }

  .grid-desktop--important.columns-desktop--1 {
    grid-template-columns: repeat(1, 1fr) !important
  }

  .grid-desktop--important.columns-desktop--2 {
    grid-template-columns: repeat(2, 1fr) !important
  }

  .grid-desktop--important.columns-desktop--3 {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .grid-desktop--important.columns-desktop--4 {
    grid-template-columns: repeat(4, 1fr) !important
  }

  .grid-desktop--important.columns-desktop--5 {
    grid-template-columns: repeat(5, 1fr) !important
  }

  .grid-desktop--important.columns-desktop--6 {
    grid-template-columns: repeat(6, 1fr) !important
  }
}

@media screen and (max-width:749px) {
  .grid-mobile {
    display: grid
  }

  .grid-mobile.columns-mobile--1 {
    grid-template-columns: repeat(1, 1fr)
  }

  .grid-mobile.columns-mobile--2 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-mobile--important {
    display: grid !important
  }

  .grid-mobile--important.columns-mobile--1 {
    grid-template-columns: repeat(1, 1fr) !important
  }

  .grid-mobile--important.columns-mobile--2 {
    grid-template-columns: repeat(2, 1fr) !important
  }

  .grid-mobile--important.columns-mobile--3 {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .grid-mobile--important.columns-mobile--4 {
    grid-template-columns: repeat(4, 1fr) !important
  }

  .grid-mobile--important.columns-mobile--5 {
    grid-template-columns: repeat(5, 1fr) !important
  }

  .grid-mobile--important.columns-mobile--6 {
    grid-template-columns: repeat(6, 1fr) !important
  }
}

.auto-grid {
  display: grid;
  gap: 1.25rem;
  padding: 0;
  grid-template-columns: repeat(auto-fill, minmax(var(--item-min-size, 0), 1fr))
}

.auto-grid .grid-item {
  min-width: var(--item-min-size, 0);
  max-width: 100%
}

@media screen and (max-width:749px) {
  .auto-grid {
    grid-template-columns: repeat(auto-fill, minmax(var(--item-min-size-mobile, var(--item-min-size, 0)), 1fr))
  }

  .auto-grid .grid-item {
    min-width: var(--item-min-size-mobile, var(--item-min-size, 0))
  }
}

@media screen and (max-width:749px) {
  .auto-grid-mobile {
    display: grid;
    gap: 1.25rem;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(var(--item-min-size-mobile, 0), 1fr))
  }

  .auto-grid-mobile .grid-item {
    min-width: var(--item-min-size-mobile, 0);
    max-width: 100%
  }
}

@media screen and (min-width:750px) {
  .auto-grid-desktop {
    display: grid;
    gap: 1.25rem;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(var(--item-min-size, 0), 1fr))
  }

  .auto-grid-desktop .grid-item {
    min-width: var(--item-min-size, 0);
    max-width: 100%
  }
}

.shopify-challenge__button,
.button {
  --buttons-radius: var(--small-radius);
  --border-width: 1px;
  --border-color: var(--color-button-text);
  --border-offset: 1px;
  --border-opacity: .05;
  --alpha-button-background: 1;
  --alpha-button-text: 1;
  position: relative;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 0 2rem !important;
  min-height: 3rem;
  min-width: 3rem;
  width: auto;
  max-width: 100%;
  border: 0;
  border-radius: var(--buttons-radius);
  font: inherit;
  font-size: .875rem !important;
  font-weight: var(--font-body-weight-bold) !important;
  line-height: 1;
  text-decoration: none;
  color: rgba(var(--color-button-text), var(--alpha-button-text)) !important;
  background: rgba(var(--color-button), var(--alpha-button-background)) !important;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  cursor: pointer;
}

.focus-inset.shopify-challenge__button,
.focus-inset.button {
  --color-outline: var(--color-button-text)
}

.shopify-challenge__button:after,
.button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 0 var(--border-width) rgba(var(--border-color), var(--border-opacity));
  pointer-events: none;
  border-radius: var(--buttons-radius);
  transition: box-shadow .3s ease
}

.button .icon {
  width: 1.25rem;
  height: auto;
  pointer-events: none;
  flex-shrink: 0;
  flex-grow: 0
}

.button .icon.icon-arrow-right,
.button .icon.icon-arrow-left {
  transition: transform .3s cubic-bezier(0, 0, .3, 1)
}

.button:hover .icon-arrow-right {
  transform: translate(.5rem)
}

.button:hover .icon-arrow-left {
  transform: translate(-.5rem)
}

.button[disabled],
.button[aria-disabled=true],
.button .disabled {
  cursor: not-allowed;
  opacity: .5 !important
}

.button.button--icon {
  padding: 0 !important;
  min-width: 3rem;
  min-height: 3rem
}

.button.button--icon .icon {
  transition: transform .3s cubic-bezier(0, 0, .3, 1)
}

.button.button--icon:hover .icon {
  transform: scale(1.2)
}

.button.button--secondary {
  --border-opacity: 1;
  --alpha-button-background: 0;
  --color-button-text: var(--color-secondary-button-text)
}

.button.button--secondary:not([disabled], [aria-disabled=true]):hover:after {
  --border-width: 2px
}

.button.button--tertiary {
  --border-opacity: 0;
  --color-button-text: var(--color-foreground);
  --color-button: var(--color-foreground);
  --alpha-button-background: .02;
  text-decoration: underline
}

.button.button--tertiary:not([disabled], [aria-disabled=true]):hover {
  --alpha-button-background: .05
}

.button.button--ethereal {
  --border-opacity: 0;
  --color-button-text: var(--color-foreground);
  --color-button: var(--color-foreground);
  --alpha-button-background: 0
}

.button.button--ethereal:not([disabled], [aria-disabled=true]):hover {
  --alpha-button-text: .5
}

.button.button--ambient {
  --color-button-text: var(--color-foreground);
  --color-button: var(--color-background)
}

.button.button--ambient-reverse {
  --color-button-text: var(--color-background);
  --color-button: var(--color-foreground)
}

.button.button--float {
  --color-button-text: var(--color-background);
  --alpha-button-background: .1;
  --color-button: var(--color-foreground);
  --border-opacity: .5;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px)
}

.button.button--pill {
  --buttons-radius: 9999px
}

.button.button--full-width {
  display: flex;
  width: 100%
}

.button.button--large {
  padding: 0 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  font-size: 1.125rem
}

.button.button--large .icon {
  width: 1.75rem
}

.button.button--small {
  padding: 0 1.25rem;
  min-height: 2.25rem;
  min-width: 2.25rem;
  font-size: .75rem
}

.button.button--small .icon {
  width: 1rem
}

.button.button--mini {
  padding: 0 .875rem;
  min-height: 2rem;
  min-width: 2rem;
  font-size: .625rem;
  gap: .25rem
}

.button.button--mini .icon {
  width: .875rem
}

.button.button--hover-animate:not([disabled], [aria-disabled=true]) {
  transition: transform .3s cubic-bezier(0, 0, .3, 1)
}

.button.button--hover-animate:not([disabled], [aria-disabled=true]):before {
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: rgb(var(--color-button-text));
  opacity: 0;
  transition: opacity .3s cubic-bezier(0, 0, .3, 1)
}

.button.button--hover-animate:not([disabled], [aria-disabled=true]):hover {
  transform: translateY(-.125rem)
}

.button.button--hover-animate:not([disabled], [aria-disabled=true]):hover:before {
  opacity: .2
}

.button-group {
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.button-group.button--multiple {
  flex-wrap: wrap
}

.button-group.button--multiple .button {
  flex: 1 1 auto
}

.button--clear {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none
}

[role=button] {
  cursor: pointer
}

.select,
.field {
  --color-input-border: var(--color-foreground);
  --border-width: 1px;
  --alpha-input-border: 1;
  --alpha-input-text: 1;
  --input-radius: var(--small-radius);
  position: relative;
  display: flex;
  align-items: stretch;
  gap: .5rem;
  font-size: 1rem;
  background: rgba(var(--color-background), .1);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  border-radius: var(--input-radius)
}

.select:after,
.field:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 var(--border-width) rgb(var(--color-input-border));
  border-radius: var(--input-radius);
  pointer-events: none;
  z-index: 1;
  transition: box-shadow .1s ease
}

.select:hover,
.field:hover,
.select:has(input:focus, select:focus, textarea:focus),
.field:has(input:focus, select:focus, textarea:focus) {
  --border-width: 2px
}

.field-error.select,
.field-error.field {
  --color-input-border: var(--color-error);
  --color-background: var(--color-error)
}

.select .select-select,
.field .field-input {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  position: relative;
  flex: 1 1 auto;
  color: rgba(var(--color-foreground), var(--alpha-input-text));
  background: transparent;
  border-radius: var(--input-radius);
  height: 3rem;
  width: 100%;
  min-width: 8rem;
  padding: 0 1rem;
  border: 0
}

.select .select-select:focus,
.field .field-input:focus,
.select .select-select:focus-visible,
.field .field-input:focus-visible {
  outline: none !important;
  box-shadow: none !important
}

.select .select-select :disabled,
.field .field-input :disabled {
  background: rgba(var(--color-foreground), .1)
}

.field .field-input.text-area {
  padding: 1rem;
  min-height: 10rem
}

.field .field-input.text-area~.field-label {
  padding: 1rem;
  align-items: flex-start
}

.field .field-input:not(:placeholder-shown)~.field-label,
.field .field-input:-webkit-autofill~.field-label,
.field .field-input:focus~.field-label {
  display: none
}

.field .field-input:-webkit-autofill~.field-button,
.field .field-input:-webkit-autofill~.field-label {
  color: #000
}

.field .field-input::-webkit-search-cancel-button {
  display: none
}

.field .field-input::placeholder {
  opacity: 0
}

@media screen and (max-width:749px) {
  .field .field-input {
    font-size: 16px
  }
}

.field .field-label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: rgba(var(--color-foreground), .75);
  font-size: .875rem;
  line-height: 1
}

.field .field-button {
  background: none;
  color: inherit;
  border: none;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  height: auto;
  padding: 0 1rem;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.field .field-button .icon {
  width: 1.5rem
}

.field.field--no-border {
  --border-width: 0;
  --alpha-input-border: 0;
  background: rgba(var(--color-foreground), .1)
}

.field.field--pill {
  --input-radius: 9999px
}

.field.field--line {
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none
}

.field.field--line:after {
  box-shadow: inset 0 calc(var(--border-width) * -1) 0 0 rgb(var(--color-input-border))
}

.field.field--line .field-label,
.field.field--line .field-input {
  padding-left: 0
}

.field.field--line .field-button {
  padding-right: 0
}

.select .select-select {
  --alpha-input-text: .75;
  padding-right: 2rem;
  cursor: pointer
}

.select .select-select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  color: #000;
  padding: .25rem 1rem
}

.select .select-select::-ms-expand {
  display: none
}

.select .field-button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  pointer-events: none;
  display: flex
}

.select .field-button .icon {
  width: .875rem
}

.select.select--inline {
  display: inline-flex;
  width: auto
}

.field-line-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: nowrap
}

.field-line-group>* {
  flex: 1 1 50%
}

.flexible-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.flexible-group .field {
  flex: 100 1 auto
}

.flexible-group .button {
  flex: 1 100 auto
}

.radio,
.checkbox {
  --border-radius: var(--small-radius);
  display: flex;
  align-items: center;
  gap: .5rem
}

.radio input,
.checkbox input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  margin: 0;
  padding: 0
}

.radio label,
.checkbox label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  word-break: break-word
}

.radio label .input-face,
.checkbox label .input-face {
  flex: 0 0 auto;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius)
}

.radio label .input-face:after,
.checkbox label .input-face:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--color-foreground), .4);
  border-radius: var(--border-radius);
  pointer-events: none;
  z-index: 1
}

.radio label .input-face span,
.checkbox label .input-face span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  --alpha-background: 0;
  border-radius: var(--border-radius);
  background: rgba(var(--color-foreground), var(--alpha-background));
  transition: transform .1s cubic-bezier(0, 0, .3, 1)
}

.radio label:hover .input-face span,
.checkbox label:hover .input-face span,
.radio label:has(input:focus-visible) .input-face span,
.checkbox label:has(input:focus-visible) .input-face span {
  --alpha-background: .2;
  transform: scale(.6)
}

.radio label:has(input:checked) .input-face,
.checkbox label:has(input:checked) .input-face {
  --color-pulse: var(--color-foreground);
  animation: pulse .1s cubic-bezier(0, 0, .3, 1)
}

.radio label:has(input:checked) .input-face span,
.checkbox label:has(input:checked) .input-face span {
  --alpha-background: 1;
  transform: scale(.5)
}

.radio {
  --border-radius: 9999px
}

.search-field .field-button-group {
  display: flex;
  align-items: stretch
}

.search-field .field-button-group .search-button {
  opacity: .75
}

.search-field .field-button-group .reset-button {
  padding: 0
}

.search-field .reset-button {
  opacity: .5;
  width: max-content;
  white-space: nowrap
}

.search-trending-main {
  min-height: 10rem;
  overflow: hidden
}

.search-trending-main .keyword-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  gap: 1rem;
  row-gap: .5rem;
  font-size: .875rem;
  opacity: .75
}

.search-trending-main .keyword-list .hot {
  font-weight: var(--font-body-weight-bold)
}

.search-trending-main .suggest-icon {
  width: 100%;
  height: 15rem
}

.search-trending-main .search-tips {
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: .75
}

.drop-menu {
  position: relative
}

.drop-menu.has-opened:not([data-constrain]) .drop-menu-button .icon-caret {
  transform: scaleY(-1)
}

.drop-menu.has-opened:not([data-constrain]) .drop-menu-wrapper {
  visibility: visible;
  opacity: 1;
  animation: slideIn .3s ease
}

.drop-menu.has-opened:not([data-constrain]) .drop-menu-wrapper.pop-from--top {
  animation: slideInFromTop .3s ease
}

.drop-menu.has-opened:not([data-constrain]) .drop-menu-wrapper.pop-from--left {
  animation: slideInFromLeft .3s ease
}

.drop-menu.has-opened:not([data-constrain]) .drop-menu-wrapper.pop-from--right {
  animation: slideInFromRight .3s ease
}

.drop-menu.has-opened[data-constrain].position--constrained .drop-menu-button .icon-caret {
  transform: scaleY(-1)
}

.drop-menu.has-opened[data-constrain].position--constrained .drop-menu-wrapper {
  visibility: visible;
  opacity: 1;
  animation: slideIn .3s ease
}

.drop-menu.has-opened[data-constrain].position--constrained .drop-menu-wrapper.pop-from--top {
  animation: slideInFromTop .3s ease
}

.drop-menu.has-opened[data-constrain].position--constrained .drop-menu-wrapper.pop-from--left {
  animation: slideInFromLeft .3s ease
}

.drop-menu.has-opened[data-constrain].position--constrained .drop-menu-wrapper.pop-from--right {
  animation: slideInFromRight .3s ease
}

.drop-menu .drop-menu-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  --alpha-button-background: 0;
  background: rgba(var(--color-foreground), var(--alpha-button-background));
  cursor: pointer;
  position: relative;
  border-radius: var(--small-radius)
}

.drop-menu .drop-menu-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgb(var(--color-foreground));
  border-radius: var(--small-radius);
  pointer-events: none;
  z-index: 1;
  transition: box-shadow .1s ease
}

.drop-menu .drop-menu-button:hover:after {
  box-shadow: inset 0 0 0 2px rgb(var(--color-foreground))
}

.drop-menu .drop-menu-button:hover {
  --alpha-button-background: .05
}

.drop-menu .drop-menu-button .icon-caret {
  width: .75rem;
  opacity: .75;
  transition: transform .3s ease
}

.drop-menu .drop-menu-wrapper {
  position: absolute;
  border-radius: var(--small-radius);
  top: 100%;
  bottom: auto;
  left: 0;
  min-width: 100%;
  width: max-content;
  overflow: hidden;
  background: rgb(var(--color-background));
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  padding: 1rem;
  margin-top: .5rem
}

.drop-menu .drop-menu-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgb(var(--color-foreground), .5);
  border-radius: var(--small-radius);
  pointer-events: none;
  z-index: 1
}

.drop-menu .drop-menu-wrapper.pop-from--top {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: .5rem
}

.drop-menu .drop-menu-wrapper .drop-menu-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.quantity {
  font-size: .875rem;
  color: rgb(var(--color-foreground));
  width: 12.5rem;
  display: flex;
  align-items: stretch;
  --inputs-border-opacity: .5;
  --border-radius: var(--small-radius);
  position: relative;
  border-radius: var(--border-radius)
}

.quantity:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--color-foreground), var(--inputs-border-opacity));
  border-radius: var(--border-radius);
  pointer-events: none;
  z-index: 1
}

.quantity .quantity-input {
  font-weight: var(--font-body-weight-bold);
  text-align: center;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0 .5rem;
  width: 100%;
  flex: 1 1 auto;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield
}

.quantity .quantity-input:focus,
.quantity .quantity-input:focus-visible {
  background: rgb(var(--color-background));
  z-index: 2
}

.quantity .quantity-input::-webkit-outer-spin-button,
.quantity .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.quantity .quantity-button {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.quantity .quantity-button.disabled {
  cursor: not-allowed;
  opacity: .5
}

.title-wrapper {
  position: relative;
  padding-top: 1rem;
  margin-bottom: 2rem;
  overflow: hidden
}

.title-wrapper .text-content {
  max-width: 60rem;
  display: inline-block
}

.title-wrapper .water-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), .05);
  line-height: .875;
  z-index: -1;
  pointer-events: none
}

.title-wrapper.title-wrapper--with-bottom {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(var(--color-foreground), .2)
}

@media screen and (max-width:749px) {
  .title-wrapper .water-text {
    font-size: 3rem
  }
}

.has-loading .loading-overlay-spinner {
  display: none
}

.has-loading.loading {
  opacity: .5;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}

.has-loading.loading .loading-overlay-spinner {
  display: inline-flex;
  line-height: 0;
  align-items: center;
  justify-content: center
}

.has-loading.loading .loading-overlay-spinner .spinner {
  width: 1.25rem;
  height: auto;
  animation: loading-rotator 1.4s linear infinite
}

.has-loading.loading .loading-overlay-spinner .spinner circle {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: currentColor;
  animation: loading-dash 1.4s ease-in-out infinite
}

.has-loading.loading .loading-hidden {
  display: none !important
}

@keyframes loading-rotator {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(270deg)
  }
}

@keyframes loading-dash {
  0% {
    stroke-dashoffset: 280
  }

  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg)
  }

  to {
    stroke-dashoffset: 280;
    transform: rotate(450deg)
  }
}

.beauty-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--color-background), .5) rgba(var(--color-foreground), 1)
}

.beauty-scrollbar::-webkit-scrollbar {
  width: .25rem;
  height: .25rem
}

.beauty-scrollbar::-webkit-scrollbar-track {
  background: rgba(var(--color-foreground), 1)
}

.beauty-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(var(--color-background), .5);
  border-radius: var(--small-radius)
}

.beauty-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-background), .85)
}

.hidden-scrollbar {
  scrollbar-width: none
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none
}

.sticky-scroll {
  display: block;
  position: relative
}

.sticky-scroll .sticky-scroll-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden
}

.tool-tip {
  position: fixed;
  right: auto;
  bottom: auto;
  transform: translate(-50%) translateY(-100%);
  z-index: 103;
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  padding: .5rem 1rem;
  font-size: .75rem;
  line-height: normal;
  font-weight: var(--font-body-weight-bold);
  border-radius: 9999px;
  width: max-content;
  max-width: 10rem
}

.tool-tip:after {
  position: absolute;
  content: "";
  height: .5rem;
  width: .5rem;
  background: inherit;
  top: 100%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%) translateY(-50%) rotate(45deg)
}

.typing-words {
  position: relative
}

.typing-words:after {
  content: "|";
  margin-left: 2px;
  animation: blink 1s ease infinite
}

.image-lazy-loading.loading-animation--pixel {
  image-rendering: pixelated
}

.image-lazy-loading.loading-animation--pixel.image-lazy-loaded {
  image-rendering: auto
}

.image-lazy-loading.loading-animation--breathing:not(.image-lazy-loaded) {
  background-color: rgba(var(--color-foreground), .05);
  animation: shimmer .8s cubic-bezier(0, 0, .3, 1) infinite
}

.image-lazy-loading.loading-animation--breathing.image-lazy-loaded {
  animation: fadeIn .3s cubic-bezier(.2, 0, 1, 1)
}

.icon-wrap {
  display: inline-block;
  position: relative;
  padding: .5rem;
  cursor: pointer;
  line-height: 0;
  border-radius: 9999px;
  color: rgb(var(--color-foreground));
  background: rgba(var(--color-foreground), .05)
}

.icon-wrap.icon-wrap--lage {
  padding: .75rem
}

.icon-wrap.icon-wrap--lage .icon {
  width: 1.5rem
}

.icon-wrap:hover .icon {
  animation: scaleIn .3s cubic-bezier(0, 0, .3, 1)
}

.text-with-icon {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  gap: .5rem
}

.text-with-icon.text-icon--inline {
  display: inline-flex;
  line-height: 0
}

.text-with-icon .icon {
  width: .875rem
}

.text-with-icon.icon--s .icon {
  width: .75rem
}

.text-with-icon.icon--l .icon {
  width: 1rem
}

.text-with-icon.icon--xl .icon {
  width: 1.5rem
}

.list-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem
}

.list-social .social-item {
  padding: .25rem;
  line-height: 0;
  --icon-width: 2rem;
  --alpha-border: 0;
  position: relative;
  border-radius: var(--small-radius)
}

.list-social .social-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--color-foreground), var(--alpha-border));
  border-radius: var(--small-radius);
  pointer-events: none;
  z-index: 1
}

.list-social .social-item .icon {
  width: var(--icon-width)
}

.list-social .social-item:hover .icon {
  animation: bounceScale .3s ease
}

.list-social.social-style--icon .social-item {
  padding: 0
}

.list-social.social-style--icon .social-item .icon {
  width: calc(var(--icon-width) * 1.25)
}

.list-social.social-style--border .social-item {
  --alpha-border: 1
}

.list-social.social-style--wrapper .social-item {
  --alpha-background: .05;
  background: rgba(var(--color-foreground), var(--alpha-background));
  --alpha-border: .02
}

.list-social.social-style--wrapper .social-item:hover {
  --alpha-background: 1;
  color: rgb(var(--color-background))
}

.list-social.social-style--solid .social-item {
  --alpha-background: 1;
  color: rgb(var(--color-background));
  background: rgba(var(--color-foreground), var(--alpha-background))
}

.list-social.social-style--solid .social-item:hover {
  --alpha-background: .05;
  color: rgb(var(--color-foreground))
}

.placeholder {
  display: block !important;
  background: rgba(var(--color-foreground), .05);
  color: rgba(var(--color-foreground), .6);
  fill: rgba(var(--color-foreground), .6);
  border-radius: var(--small-radius);
  animation: shimmer .8s linear infinite forwards
}

.placeholder-svg {
  background: rgba(var(--color-foreground), .2)
}

.text-content>* {
  margin-top: 0;
  margin-bottom: 0
}

.text-content>*:not(:first-child) {
  margin-top: 1rem
}

.text-content .text-content-heading {
  font-size: 2rem
}

.text-content .text-content-heading.heading-size--small {
  font-size: 1.5rem
}

.text-content .text-content-heading.heading-size--large {
  font-size: 2.5rem
}

.text-content .text-content-heading.heading-size--super {
  font-size: 6rem;
  line-height: .875
}

.text-content .text-content-buttons {
  margin-top: 2rem
}

@media screen and (max-width:749px) {
  .text-content .text-content-heading.heading-size--super {
    font-size: 4rem
  }
}

@media screen and (min-width:750px) {
  .text-content.content-width--narrow {
    max-width: 40rem
  }

  .text-content.content-width--normal {
    max-width: 60rem
  }
}

article,
.main-page,
[role=main] .shopify-policy__container {
  line-height: 1.6
}

[role=main] .shopify-policy__container {
  max-width: 60rem
}

[role=main] .shopify-policy__container .shopify-policy__title {
  padding: 4rem 0
}

.alert-message {
  font-size: .875rem;
  font-weight: var(--font-body-weight-bold);
  text-align: left;
  padding: 1rem;
  border-radius: var(--small-radius);
  background: rgba(var(--color-foreground), .1);
  color: rgb(var(--color-foreground))
}

.alert-message .message-list {
  font-weight: 400;
  padding-left: 1rem;
  margin-top: .5rem;
  margin-bottom: 0
}

.alert-message .message-list li:not(:last-child) {
  margin-bottom: .5rem
}

.alert-message.alert-error {
  --color-foreground: var(--color-error)
}

.alert-message.alert-success {
  --color-foreground: var(--color-success)
}

.alert-message.alert-warning {
  --color-foreground: var(--color-warning)
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  display: none
}

.modal>.modal-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-foreground), .1);
  -webkit-backdrop-filter: blur(.5rem);
  backdrop-filter: blur(.5rem)
}

.modal>.modal-inner {
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 1rem rgba(var(--color-shadow), .2);
  visibility: hidden;
  opacity: .01;
  width: 45rem;
  min-height: 20rem;
  position: relative;
  border-radius: var(--medium-radius)
}

.modal>.modal-inner:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--color-foreground), .05);
  border-radius: var(--medium-radius);
  pointer-events: none;
  z-index: 1
}

.modal>.modal-inner .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  --color-button: var(--color-background);
  --alpha-button-background: .2;
  border-radius: 0;
  z-index: 1
}

.modal>.modal-inner .modal-close .icon {
  width: 1rem
}

.modal>.modal-inner .modal-content {
  overflow-y: auto;
  max-height: calc(100vh - 4rem);
  padding: 3rem 2rem 2rem
}

@media screen and (min-width:750px) {
  .modal>.modal-inner {
    max-width: 50rem
  }
}

.modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem
}

.modal[open]>.modal-inner {
  visibility: visible;
  animation: slideIn .3s cubic-bezier(0, 0, .3, 1) forwards
}

@media(prefers-reduced-motion:reduce) {
  .modal[open]>.modal-inner {
    opacity: 1
  }
}

.modal.confirm-modal>.modal-inner {
  width: 20rem;
  min-height: auto
}

.modal.drawer>.modal-inner {
  border-radius: var(--large-radius);
  width: 30rem;
  height: 100%;
  padding: 1rem 2rem 2rem;
  display: grid;
  grid-template-rows: max-content auto
}

.modal.drawer>.modal-inner .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.modal.drawer>.modal-inner .drawer-header .drawer-close {
  margin-left: -1rem
}

.modal.drawer>.modal-inner .drawer-header .drawer-close .icon {
  width: 1rem
}

.modal.drawer>.modal-inner .drawer-content {
  overflow-y: hidden
}

.modal.drawer[open] {
  justify-content: flex-end
}

.modal.drawer[open]>.modal-inner {
  animation: fadeIn .3s cubic-bezier(0, 0, .3, 1) forwards
}

.modal.drawer[open].position--left {
  justify-content: flex-start
}

.slider .slider-container .slider-wrapper {
  list-style: none;
  padding: 0;
  margin: 0
}

.slider .slider-controller {
  display: none
}

@media screen and (max-width:749px) {
  .slider[data-slide-mobile] {
    display: block;
    touch-action: pan-y
  }

  .slider[data-slide-mobile]>.slider-container {
    position: relative;
    overflow: hidden
  }

  .slider[data-slide-mobile]>.slider-container>.slider-wrapper {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    will-change: transform
  }

  .slider[data-slide-mobile]>.slider-container>.slider-wrapper>.slider-slide {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%
  }

  .slider[data-slide-mobile]>.slider-container>.slider-wrapper.slider--center {
    justify-content: center
  }

  .slider[data-slide-mobile]>.slider-container>.slider-wrapper.auto-grid>.grid-item {
    width: var(--item-perfect-size-mobile);
    height: auto
  }

  .slider[data-slide-mobile]>.slider-container>.slider-wrapper.auto-grid-mobile>.grid-item {
    width: var(--item-perfect-size-mobile);
    height: auto
  }

  .slider[data-slide-mobile]>.slider-container.slider--overflow-visible {
    overflow: visible
  }

  .slider[data-slide-mobile] .slider-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin-top: 1rem
  }

  .slider[data-slide-mobile] .slider-controller .slider-nav-buttons {
    display: none
  }

  .slider[data-slide-mobile] .slider-controller .slider-page-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none
  }

  .slider[data-slide-mobile] .slider-controller.has-dots.has-nav {
    justify-content: space-between
  }

  .slider[data-slide-mobile] .slider-controller.has-dots.has-nav {
    justify-content: center
  }

  .slider[data-slide-mobile] .slider-controller:not(.has-dots) {
    display: none
  }

  .slider[data-slide-mobile].slider--installed>.slider-container>.slider-wrapper {
    justify-content: flex-start
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-nav-buttons {
    display: inline-flex;
    align-items: center;
    gap: 1rem
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-nav-buttons .nav-button .icon {
    transition: transform .5s cubic-bezier(0, 0, .3, 1)
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-nav-buttons .nav-button.nav-button--prev:hover .icon {
    transform: translate(-.5rem)
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-nav-buttons .nav-button.nav-button--next:hover .icon {
    transform: translate(.5rem)
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 0
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-page-dots .page-dot {
    position: relative;
    overflow: hidden;
    flex: 0 1 auto;
    width: 1.5rem;
    height: .25rem;
    border-radius: 9999px;
    background: rgba(var(--color-foreground), .2);
    cursor: default;
    transition: width .1s cubic-bezier(0, 0, .3, 1), transform .1s cubic-bezier(0, 0, .3, 1)
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-page-dots .page-dot.current {
    width: 3rem
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-page-dots .page-dot.current:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--color-foreground))
  }

  .slider[data-slide-mobile].slider--installed .slider-controller .slider-page-dots:hover .page-dot {
    transform: scaleY(2.4)
  }

  .slider[data-slide-mobile].slider--installed[data-draggable] .slider-container {
    cursor: grab
  }

  .slider[data-slide-mobile].slider--installed[data-draggable]:active .slider-container {
    cursor: grabbing
  }

  .slider[data-slide-mobile].slider--installed[data-draggable].slider--is-dragging .slider-container .slider-slide {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
  }

  .slider[data-slide-mobile].slider--installed[data-autoplay]:not([editor-selected]) .page-dot.current:after {
    animation: growWidth var(--slide-interval) linear
  }

  .slider[data-slide-mobile].slider--installed[data-autoplay]:not([editor-selected]):not(.slider--is-playing) .page-dot.current:after {
    animation-play-state: paused
  }
}

@media screen and (min-width:750px) {
  .slider[data-slide-desktop] {
    display: block;
    touch-action: pan-y
  }

  .slider[data-slide-desktop]>.slider-container {
    position: relative;
    overflow: hidden
  }

  .slider[data-slide-desktop]>.slider-container>.slider-wrapper {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    will-change: transform
  }

  .slider[data-slide-desktop]>.slider-container>.slider-wrapper>.slider-slide {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%
  }

  .slider[data-slide-desktop]>.slider-container>.slider-wrapper.slider--center {
    justify-content: center
  }

  .slider[data-slide-desktop]>.slider-container>.slider-wrapper.auto-grid>.grid-item {
    width: var(--item-perfect-size);
    height: auto
  }

  .slider[data-slide-desktop]>.slider-container>.slider-wrapper.auto-grid-desktop>.grid-item {
    width: var(--item-perfect-size);
    height: auto
  }

  .slider[data-slide-desktop]>.slider-container.slider--overflow-visible {
    overflow: visible
  }

  .slider[data-slide-desktop] .slider-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin-top: 1rem
  }

  .slider[data-slide-desktop] .slider-controller .slider-nav-buttons {
    display: none
  }

  .slider[data-slide-desktop] .slider-controller .slider-page-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none
  }

  .slider[data-slide-desktop] .slider-controller.has-dots.has-nav {
    justify-content: space-between
  }

  .slider[data-slide-desktop].slider--installed>.slider-container>.slider-wrapper {
    justify-content: flex-start
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-nav-buttons {
    display: inline-flex;
    align-items: center;
    gap: 1rem
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-nav-buttons .nav-button .icon {
    transition: transform .5s cubic-bezier(0, 0, .3, 1)
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-nav-buttons .nav-button.nav-button--prev:hover .icon {
    transform: translate(-.5rem)
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-nav-buttons .nav-button.nav-button--next:hover .icon {
    transform: translate(.5rem)
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 0
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-page-dots .page-dot {
    position: relative;
    overflow: hidden;
    flex: 0 1 auto;
    width: 1.5rem;
    height: .25rem;
    border-radius: 9999px;
    background: rgba(var(--color-foreground), .2);
    cursor: default;
    transition: width .1s cubic-bezier(0, 0, .3, 1), transform .1s cubic-bezier(0, 0, .3, 1)
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-page-dots .page-dot.current {
    width: 3rem
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-page-dots .page-dot.current:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--color-foreground))
  }

  .slider[data-slide-desktop].slider--installed .slider-controller .slider-page-dots:hover .page-dot {
    transform: scaleY(2.4)
  }

  .slider[data-slide-desktop].slider--installed[data-draggable] .slider-container {
    cursor: grab
  }

  .slider[data-slide-desktop].slider--installed[data-draggable]:active .slider-container {
    cursor: grabbing
  }

  .slider[data-slide-desktop].slider--installed[data-draggable].slider--is-dragging .slider-container .slider-slide {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
  }

  .slider[data-slide-desktop].slider--installed[data-autoplay]:not([editor-selected]) .page-dot.current:after {
    animation: growWidth var(--slide-interval) linear
  }

  .slider[data-slide-desktop].slider--installed[data-autoplay]:not([editor-selected]):not(.slider--is-playing) .page-dot.current:after {
    animation-play-state: paused
  }
}

.scrollable-content {
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
  touch-action: pan-y
}

.scrollable-content .scrollable-buttons {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  pointer-events: none
}

.scrollable-content .scrollable-buttons .nav-button[disabled] {
  visibility: hidden
}

.scrollable-content .scrollable-buttons .nav-button .icon {
  transition: transform .5s cubic-bezier(0, 0, .3, 1)
}

.scrollable-content .scrollable-buttons .nav-button:hover.nav-button--next .icon {
  transform: translate(.5rem)
}

.scrollable-content .scrollable-buttons .nav-button:hover.nav-button--prev .icon {
  transform: translate(-.5rem)
}

.scrollable-content.scrollable--overflow-visible {
  overflow: visible
}

.scrollable-content.scrollable--installed .scrollable-content-wrapper {
  justify-content: flex-start !important
}

.scrollable-content.scrollable--installed[data-draggable] {
  cursor: grab
}

.scrollable-content.scrollable--installed[data-draggable]:active {
  cursor: grabbing
}

.scrollable-content.scrollable--installed[data-draggable].scrollable--is-dragging .scrollable-content-wrapper {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}

.tab-panel .tab-panel-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem
}

.tab-panel .tab-panel-tabs.tabs-alignment--left {
  justify-content: flex-start
}

.tab-panel .tab-panel-tabs.tabs-alignment--center {
  justify-content: center
}

.tab-panel .tab-panel-tabs.tabs-alignment--right {
  justify-content: flex-end
}

.tab-panel .tab-panel-tabs .tab {
  cursor: pointer
}

.tab-panel .tab-panel-panels .panel[aria-hidden=true] {
  display: none !important
}

#toasts-container {
  position: fixed;
  z-index: 102;
  padding: 1rem;
  right: 0;
  bottom: 0;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

#toasts-container .toast {
  padding: .5rem 1rem;
  border-radius: var(--small-radius);
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  --color-background: #7eecf8;
  --color-foreground: #000000;
  background: var(--color-background);
  color: var(--color-foreground);
  animation: slideIn .3s cubic-bezier(0, 0, .3, 1)
}

#toasts-container .toast:before {
  content: "";
  display: inline-block;
  height: .5rem;
  width: .5rem;
  border-radius: 9999px;
  background: var(--color-foreground)
}

#toasts-container .toast.type-success {
  --color-background: #009519;
  --color-foreground: #ffffff
}

#toasts-container .toast.type-warning {
  --color-background: #ffdc2f;
  --color-foreground: #000000
}

#toasts-container .toast.type-error {
  --color-background: #da0b0b;
  --color-foreground: #ffffff
}

.badge {
  position: relative;
  font-size: .875rem;
  padding: 0 .875rem;
  height: 1.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  border-radius: 9999px
}

.badge .icon {
  width: 1rem
}

.badge.sale-badge {
  background: rgb(var(--sale-badge-background));
  color: rgb(var(--sale-badge-foreground))
}

.badge.sold-out-badge {
  background: rgba(var(--color-foreground), .1);
  color: rgba(var(--color-foreground), .8)
}

.badge.gift-badge {
  background: rgb(var(--gift-badge-background));
  color: rgb(var(--gift-badge-foreground))
}

.badge.new-badge {
  background: rgb(var(--new-badge-background));
  color: rgb(var(--new-badge-foreground))
}

.badge.preorder-badge {
  background: rgb(var(--preorder-badge-background));
  color: rgb(var(--preorder-badge-foreground))
}

.badge.limit-edition-badge {
  background: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-foreground));
  font-size: .625rem;
  text-transform: uppercase
}

.badge.custom-badge {
  background: rgb(var(--custom-badge-background));
  color: rgb(var(--custom-badge-foreground))
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-content: flex-start;
  align-items: center
}

.card-badges.position--left {
  justify-content: flex-start
}

.card-badges.position--right {
  justify-content: flex-end
}

.card-badges.badges--small .badge {
  font-size: .625rem;
  padding: 0 .5rem;
  height: 1.25rem
}

.card-badges.badges--small .badge .icon {
  width: .75rem
}

.color-swatches {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .25rem
}

.color-swatches .color-swatch {
  --border-opacity: .05;
  --border-width: 2px;
  width: 1.5rem;
  height: 1.5rem;
  padding: .25rem;
  cursor: default;
  position: relative;
  border-radius: 9999px
}

.color-swatches .color-swatch:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 var(--border-width) rgba(var(--color-foreground), var(--border-opacity));
  border-radius: 9999px;
  pointer-events: none;
  z-index: 1
}

.color-swatches .color-swatch .color {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  overflow: hidden
}

.color-swatches .color-swatch .color:has(img) {
  background: transparent !important
}

.color-swatches .color-swatch .color:has(img) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.color-swatches .color-swatch:hover {
  --border-opacity: .2
}

.color-swatches .color-swatch.active,
.color-swatches .color-swatch:has(input:checked) {
  --border-opacity: 1;
  --color-pulse: var(--color-foreground);
  animation: pulse .1s ease
}

.color-swatches .color-swatch:has(input:disabled, input.disabled) .color {
  opacity: .5
}

.color-swatches .color-swatch:has(input:disabled, input.disabled):before {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  background: rgb(var(--color-foreground))
}

.color-swatches .color-swatch:has(input:focus-visible) {
  outline: 2px solid rgba(var(--color-outline), .75) !important;
  box-shadow: 0 0 5px 3px rgb(var(--color-outline), .2);
  outline-offset: 3px
}

.color-swatches.swatch-type--image .color-swatch {
  width: 2.4rem;
  height: 2.4rem
}

.price {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: normal;
  color: rgb(var(--color-foreground))
}

.price .price-container {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem
}

.price .price-container .unit-price {
  padding: .25rem .5rem;
  line-height: 1;
  border-radius: 9999px;
  background: rgba(var(--color-foreground), .75);
  color: rgb(var(--color-background));
  font-size: .75rem
}

image-magnify {
  display: block;
  cursor: zoom-in
}

image-magnify img {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none
}

image-magnify.image-zoom-in {
  cursor: zoom-out
}

.main-page__wrapper,
.shopify-email-marketing-confirmation__container,
.shopify-policy__container,
.shopify-challenge__container {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.paginate-content--empty {
  padding: 10rem 0;
  text-align: center
}

.paginate-content--empty .empty-title {
  opacity: .5
}

.breadcrumb {
  width: 100%
}

.breadcrumb .breadcrumb-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center
}

.breadcrumb .breadcrumb-wrapper .breadcrumb-item {
  display: flex;
  align-items: center
}

.breadcrumb .breadcrumb-wrapper .breadcrumb-item.page-current a {
  opacity: .75
}

.breadcrumb .breadcrumb-wrapper .breadcrumb-item:not(:last-child):after {
  content: "/";
  display: inline-block;
  margin: 0 .5rem
}

.rating-wrapper {
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.rating-wrapper .rating {
  --star-size: 1rem;
  display: flex;
  gap: calc(var(--star-size) * .125)
}

.rating-wrapper .rating .icon {
  width: var(--star-size)
}

.rating-wrapper.star-size--medium .rating {
  --star-size: 1.25rem
}

.rating-wrapper.star-size--large .rating {
  --star-size: 1.5rem
}

.banner {
  position: relative;
  display: flex;
  align-items: stretch
}

.banner .banner-content {
  width: 100%
}

.banner:before {
  content: "";
  display: block;
  width: 0
}

.banner.banner--adapt {
  height: 100%
}

.banner.banner--adapt.banner--placeholder:before {
  padding-bottom: 40rem
}

.banner.banner--small:before {
  padding-bottom: 30rem
}

.banner.banner--medium:before {
  padding-bottom: 40rem
}

.banner.banner--large:before {
  padding-bottom: 50rem
}

@media screen and (min-width:750px) {
  .banner.banner--small:before {
    padding-bottom: 40rem
  }

  .banner.banner--medium:before {
    padding-bottom: 50rem
  }

  .banner.banner--large:before {
    padding-bottom: 60rem
  }
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  line-height: 0
}

.icon-list li .icon,
.icon-list li .media {
  width: 1.75rem
}

.icon-list li:hover .icon,
.icon-list li:hover .media {
  animation: bounceScale .3s cubic-bezier(0, 0, .3, 1)
}

.discount-code {
  padding: .5rem 1rem;
  border: 1px dashed rgb(var(--color-foreground), .5);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  --alpha-background: 0;
  background: rgba(var(--color-foreground), var(--alpha-background))
}

.discount-code:hover {
  --alpha-background: .2
}

.featured-card .featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem
}

.featured-card .slider-wrapper {
  gap: 1rem
}

@media screen and (forced-colors:active) {
  body {
    --color-background: Canvas;
    --color-foreground: CanvasText
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    color: CanvasText
  }

  a {
    color: LinkText
  }

  a:hover,
  a:focus {
    background-color: LinkText;
    color: Canvas;
    outline: 1px solid LinkText
  }

  button,
  .button,
  input[type=button],
  input[type=submit],
  input[type=reset] {
    --color-button: ButtonFace;
    --color-button-text: ButtonText;
    border: 2px solid ButtonText
  }

  button:hover,
  button:focus,
  .button:hover,
  .button:focus,
  input[type=button]:hover,
  input[type=button]:focus,
  input[type=submit]:hover,
  input[type=submit]:focus,
  input[type=reset]:hover,
  input[type=reset]:focus {
    --color-button: Highlight;
    --color-button-text: HighlightText
  }

  img {
    border: 2px solid LinkText
  }

  table,
  table th,
  table td,
  input,
  textarea,
  select {
    border: 1px solid CanvasText
  }

  input:focus,
  textarea:focus,
  select:focus {
    outline: 1px solid Highlight
  }
}

@media(prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important
  }
}

@media(prefers-reduced-motion:no-preference) {
  @keyframes ambientMove {
    0% {
      transform: rotate(0) translate(1em) rotate(0) scale(1.2)
    }

    to {
      transform: rotate(360deg) translate(1em) rotate(-360deg) scale(1.2)
    }
  }

  @keyframes shimmer {
    0% {
      opacity: 1
    }

    50% {
      opacity: .4
    }

    to {
      opacity: 1
    }
  }

  @keyframes slideIn {
    0% {
      transform: translateY(2rem);
      opacity: .01
    }

    to {
      transform: translateY(0);
      opacity: 1
    }
  }

  @keyframes slideInFromTop {
    0% {
      opacity: .01;
      transform: translateY(-2rem)
    }

    to {
      opacity: 1;
      transform: translate(0)
    }
  }

  @keyframes slideInFromLeft {
    0% {
      opacity: .01;
      transform: translate(-5rem)
    }

    to {
      opacity: 1;
      transform: translate(0)
    }
  }

  @keyframes slideInFromRight {
    0% {
      opacity: .01;
      transform: translate(5rem)
    }

    to {
      opacity: 1;
      transform: translate(0)
    }
  }

  @keyframes slideUpDown {
    0% {
      transform: translateY(0);
      opacity: 1
    }

    50% {
      transform: translateY(-100%);
      opacity: 0
    }

    51% {
      transform: translateY(100%)
    }

    to {
      transform: translateY(0);
      opacity: 1
    }
  }

  @keyframes fadeIn {
    0% {
      opacity: .01
    }

    to {
      opacity: 1
    }
  }

  @keyframes fadeOut {
    0% {
      opacity: 1
    }

    to {
      opacity: .01
    }
  }

  @keyframes scaleIn {
    0% {
      transform: scale(.1);
      opacity: .01
    }

    to {
      transform: scale(1);
      opacity: 1
    }
  }

  @keyframes scaleDown {
    0% {
      transform: scale(1.5);
      opacity: .01
    }

    to {
      transform: scale(1);
      opacity: 1
    }
  }

  @keyframes rotateIn {
    0% {
      transform: rotate(-180deg) scale(.1);
      opacity: 0
    }

    to {
      transform: rotate(0) scale(1);
      opacity: 1
    }
  }

  @keyframes bounceScale {
    0% {
      transform: scale(1)
    }

    50% {
      transform: scale(1.25)
    }

    to {
      transform: scale(1)
    }
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 rgba(var(--color-pulse), .5)
    }

    to {
      box-shadow: 0 0 0 .5rem rgba(var(--color-pulse), 0)
    }
  }

  @keyframes scaleUp {
    0% {
      transform: scale(1)
    }

    to {
      transform: scale(1.05)
    }
  }

  @keyframes shrinkSlightly {
    0% {
      transform: scale(1.05)
    }

    to {
      transform: scale(1)
    }
  }

  @keyframes bounceUp {

    0%,
    to {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-2rem)
    }
  }

  @keyframes bounceDown {

    0%,
    to {
      transform: translateY(0)
    }

    50% {
      transform: translateY(2rem)
    }
  }

  @keyframes bounceRight {

    0%,
    to {
      transform: translate(0)
    }

    50% {
      transform: translate(1rem)
    }
  }

  @keyframes bounceLeft {

    0%,
    to {
      transform: translate(0)
    }

    50% {
      transform: translate(-1rem)
    }
  }

  @keyframes blink {
    50% {
      opacity: 0
    }
  }

  @keyframes growWidth {
    0% {
      transform: scaleX(0);
      transform-origin: left
    }

    to {
      transform: scaleX(1);
      transform-origin: left
    }
  }

  @keyframes growWidthFromRight {
    0% {
      transform: scaleX(0);
      transform-origin: right
    }

    to {
      transform: scaleX(1);
      transform-origin: right
    }
  }

  @keyframes pushInFromLeft {
    0% {
      transform: translate(-100%)
    }

    to {
      transform: translate(0)
    }
  }

  @keyframes pushInFromRight {
    0% {
      transform: translate(100%)
    }

    to {
      transform: translate(0)
    }
  }

  @keyframes pushOutToLeft {
    0% {
      transform: translate(0)
    }

    to {
      transform: translate(-100%)
    }
  }

  @keyframes pushOutToRight {
    0% {
      transform: translate(0)
    }

    to {
      transform: translate(100%)
    }
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    animation: none !important
  }
}

.scroll-trigger {
  visibility: hidden;
  opacity: .01
}

.scroll-trigger:not(.scroll-trigger--offscreen) {
  visibility: visible
}

@media(prefers-reduced-motion) {
  .scroll-trigger:not(.scroll-trigger--offscreen) {
    opacity: 1
  }
}

@media(prefers-reduced-motion:no-preference) {
  .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
    animation: slideIn .8s cubic-bezier(0, 0, .3, 1) forwards;
    animation-delay: calc(var(--animation-order) * .15s)
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--left-in {
    animation: slideInFromLeft .5s cubic-bezier(0, 0, .3, 1) forwards;
    animation-delay: calc(var(--animation-order) * .15s)
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--right-in {
    animation: slideInFromRight .5s cubic-bezier(0, 0, .3, 1) forwards;
    animation-delay: calc(var(--animation-order) * .15s)
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
    animation: fadeIn 1.2s cubic-bezier(0, 0, .3, 1) forwards;
    animation-delay: calc(var(--animation-order) * .15s)
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--scale-in {
    animation: scaleDown .3s cubic-bezier(0, 0, .3, 1) forwards;
    animation-delay: calc(var(--animation-order) * .15s)
  }
}

@media(prefers-reduced-motion:no-preference)and (hover:hover)and (min-width:750px) {
  .hover-trigger .animate-scale-up {
    transition: transform .8s cubic-bezier(0, 0, .3, 1)
  }

  .hover-trigger .animate--fade-in {
    visibility: hidden;
    opacity: 0;
    transition: opacity .8s cubic-bezier(0, 0, .3, 1)
  }

  .hover-trigger .animate--fade-out {
    visibility: visible;
    opacity: 1;
    transition: opacity .8s cubic-bezier(0, 0, .3, 1)
  }

  .hover-trigger:hover .animate-scale-up {
    transform: scale(1.05)
  }

  .hover-trigger:hover .animate--fade-in {
    visibility: visible;
    opacity: 1
  }

  .hover-trigger:hover .animate--fade-out {
    visibility: hidden;
    opacity: 0
  }
}

.section-header {
  z-index: 3
}

.section-header .header-wrapper {
  display: block;
  position: relative
}

.section-header .header-wrapper .header {
  --alpha-shadow: 0;
  --alpha-border: .05;
  box-shadow: 0 .25rem .5rem rgba(var(--color-shadow), var(--alpha-shadow))
}

.header-main {
  display: grid;
  grid-template-areas: "left-area heading icons";
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: center;
  z-index: 1;
  min-height: 4rem;
  padding-top: .25rem;
  padding-bottom: .25rem
}

.header-main .header-left-area {
  grid-area: left-area;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.header-heading {
  width: max-content;
  line-height: 0;
  grid-area: heading;
  justify-self: center;
  transition: transform .3s cubic-bezier(0, 0, .3, 1);
  transform-origin: left center
}

.header-heading .header-heading-logo-wrapper {
  width: 100%;
  display: inline-block
}

.header-heading .header-heading-logo-wrapper .header-heading-logo {
  max-width: 100%;
  width: var(--logo-width-mobile, 100px);
  height: auto
}

.header-heading .header-heading-logo-wrapper .header-heading-logo.transparent-logo,
.header-main .search-wrapper,
.header-main .header-menu-nav {
  display: none
}

.header-icons {
  display: flex;
  grid-area: icons;
  justify-self: end
}

.header-icons .header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 4rem;
  padding: 0;
  cursor: pointer
}

.header-icons .header-icon .icon {
  flex: 0 0 auto;
  width: 1.5rem;
  transition: transform .3s ease
}

.header-icons .header-icon .cart-count-bubble {
  text-align: center;
  font-size: .875rem;
  font-weight: var(--font-body-weight-bold)
}

.header-icons .header-icon .cart-count-bubble span[aria-hidden=true] {
  display: inline-block
}

.header-icons .header-icon .cart-count-bubble.bubble-style--cart,
.header-icons .header-icon .cart-count-bubble.bubble-style--bag {
  position: relative;
  line-height: 0
}

.header-icons .header-icon .cart-count-bubble.bubble-style--cart span[aria-hidden=true],
.header-icons .header-icon .cart-count-bubble.bubble-style--bag span[aria-hidden=true] {
  position: absolute;
  top: 0;
  left: 100%;
  font-size: .75rem
}

.header-icons .header-icon .cart-count-bubble.bubble-style--cart span[aria-hidden=true] {
  margin-left: -6px;
  margin-top: 4px
}

.header-icons .header-icon .cart-count-bubble.bubble-style--bag span[aria-hidden=true] {
  line-height: normal;
  top: auto;
  bottom: 0;
  margin-left: .125rem
}

.header-icons .header-icon .cart-count-bubble.bubble-style--frame {
  min-width: 3rem;
  padding: .25rem .875rem;
  margin-left: .5rem;
  position: relative;
  border-radius: 9999px
}

.header-icons .header-icon .cart-count-bubble.bubble-style--frame:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px rgb(var(--color-foreground));
  border-radius: 9999px;
  pointer-events: none;
  z-index: 1
}

.header-icons .header-icon .cart-count-bubble.bubble-style--frame:hover span[aria-hidden=true] {
  animation: slideUpDown .3s cubic-bezier(0, 0, .3, 1) forwards
}

.header-icons .header-icon .cart-count-bubble.bubble-style--text {
  min-width: 3rem;
  margin-left: .5rem;
  font-size: 1rem
}

.header-icons .header-icon .cart-count-bubble.bubble-style--text:hover {
  opacity: .5
}

.header-icons .header-icon:hover .icon {
  transform: scale(1.1)
}

.section-header .header-wrapper .header .header-bottom {
  display: none
}

.header-menu-nav .list-menu {
  list-style: none;
  padding: 0;
  margin: 0
}

.header-menu-nav .list-menu.list-menu--inline {
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 1.5rem
}

.header-menu-nav .list-menu.list-menu--inline .header-menu-first-level {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.header-menu-nav .list-menu.list-menu--inline .header-menu-first-level .first-level-item {
  padding: 1rem 0;
  font-size: .875rem;
  font-weight: var(--font-body-weight-bold);
  display: flex;
  align-items: center;
  gap: .5rem
}

.header-menu-nav .list-menu.list-menu--disclosure {
  position: absolute;
  top: 100%;
  min-width: 20rem;
  width: auto;
  margin-top: .5rem;
  border-radius: var(--medium-radius);
  padding: 1rem 0;
  background: rgb(var(--color-background));
  box-shadow: 0 0 .5rem rgba(var(--color-shadow), .2)
}

.header-menu-nav .list-menu.list-menu--disclosure.list-menu-second--disclosure {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: .25rem
}

.header-menu-nav .list-menu.list-menu--disclosure.list-menu-second--disclosure:before {
  content: "";
  position: absolute;
  width: .25rem;
  left: auto;
  top: 0;
  right: 100%;
  bottom: 0
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item {
  position: relative;
  padding: .5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item>drop-menu {
  width: 100%
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item>drop-menu>details>summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item>drop-menu>details>summary .icon-caret {
  width: .875rem;
  transition: transform .1s cubic-bezier(0, 0, .3, 1)
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item>drop-menu>details.has-opened>summary .icon-caret {
  transform: rotate(-90deg)
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item.header-menu-second-level>drop-menu[data-hover-open]>details.has-opened>summary {
  position: relative
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item.header-menu-second-level>drop-menu[data-hover-open]>details.has-opened>summary:after {
  content: "";
  position: absolute;
  left: 100%;
  top: -100%;
  height: 300%;
  width: 5rem
}

.header-menu-nav .list-menu.list-menu--disclosure .list-menu-item.header-menu-second-level>drop-menu[data-hover-open]>details.has-opened.position--exceed>summary:after {
  left: auto;
  right: 100%
}

.header-menu-nav .list-menu.list-menu--mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  max-height: calc(100vh - 8rem);
  padding: 2rem 0;
  overflow-y: auto;
  border-bottom: 1px solid rgba(var(--color-foreground), .1);
  --gap-column: 2rem;
  --gap-row: 2rem
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--gap-row) var(--gap-column);
  grid-template-columns: repeat(5, minmax(0, 1fr))
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item {
  grid-column: span 1
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item .list-menu .list-menu-item {
  padding: .25rem 0
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item .mega-menu-image {
  --image-ratio: 100%;
  position: relative
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item .mega-menu-image:before {
  content: "";
  display: block;
  width: 0;
  padding-bottom: var(--image-ratio)
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-2 {
  grid-column: span 2
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-2 .mega-menu-image {
  --image-ratio: calc((100% - var(--gap-column)) / 2)
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-3 {
  grid-column: span 3
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-3 .mega-menu-image {
  --image-ratio: calc((100% - var(--gap-column) * 2) / 3)
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-4 {
  grid-column: span 4
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-4 .mega-menu-image {
  --image-ratio: calc((100% - var(--gap-column) * 3) / 4)
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-5 {
  grid-column: span 5
}

.header-menu-nav .list-menu.list-menu--mega .mega-menu-list .mega-menu-item.column-5 .mega-menu-image {
  --image-ratio: calc((100% - var(--gap-column) * 4) / 5)
}

.header-menu-nav .list-menu details .header-submenu {
  visibility: hidden;
  opacity: 0
}

.header-menu-nav .list-menu details.has-opened>.header-submenu {
  visibility: visible;
  opacity: 1;
  animation: slideIn .3s ease
}

.header-menu-nav .list-menu details.has-opened>.header-submenu.list-menu-second--disclosure {
  animation: slideInFromLeft .3s ease
}

.header-menu-nav .list-menu details.has-opened.position--exceed>summary .icon-caret {
  transform: rotate(90deg) !important
}

.header-menu-nav .list-menu details.has-opened.position--exceed>.header-submenu {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: .25rem
}

.section-header .header-wrapper .header .first-level-drop>details>summary .icon-caret {
  width: .75rem;
  opacity: .75;
  transition: transform .1s cubic-bezier(0, 0, .3, 1)
}

.section-header .header-wrapper .header .first-level-drop>details.has-opened>summary .icon-caret {
  transform: scaleY(-1)
}

.section-header .header-wrapper .header .first-level-drop>details.has-opened.position--exceed>.header-submenu {
  right: 0
}

.section-header .header-wrapper .header .first-level-drop[data-hover-open]>details.has-opened>summary {
  position: relative
}

.section-header .header-wrapper .header .first-level-drop[data-hover-open]>details.has-opened>summary:after {
  content: "";
  position: absolute;
  left: -50%;
  top: 90%;
  width: 200%;
  min-width: 10rem;
  height: 10rem;
  z-index: 1
}

.section-header .header-wrapper .header .first-level-drop[data-hover-open]>details.has-opened>.header-submenu {
  z-index: 1
}

.section-header .header-wrapper .header header-drawer .menu-toggle-button {
  line-height: 0
}

.section-header .header-wrapper .header header-drawer .menu-toggle-button .button .hamburger {
  transition: transform .3s cubic-bezier(0, 0, .3, 1);
  -webkit-user-select: none;
  user-select: none;
  width: 3rem;
  height: auto
}

.section-header .header-wrapper .header header-drawer .menu-toggle-button .button .hamburger .line {
  fill: none;
  transition: stroke-dasharray .3s, stroke-dashoffset .3s;
  stroke: rgb(var(--color-foreground));
  stroke-width: 5.5;
  stroke-linecap: round
}

.section-header .header-wrapper .header header-drawer .menu-toggle-button .button .hamburger .line.top {
  stroke-dasharray: 40 139
}

.section-header .header-wrapper .header header-drawer .menu-toggle-button .button .hamburger .line.bottom {
  stroke-dasharray: 40 180
}

.section-header .header-wrapper .header .mega-menu-image {
  border-radius: var(--medium-radius)
}

.section-header .header-wrapper .header .mega-menu-image .media-content {
  padding: 1rem
}

.section-header .header-wrapper .header .mega-menu-image .media-content .image-title.title-effect--background {
  padding: 1rem 3rem;
  --alpha-text-background: .8;
  background: linear-gradient(270deg, rgba(var(--color-background), 0), rgba(var(--color-background), var(--alpha-text-background)) 40% 60%, rgba(var(--color-background), 0))
}

.section-header .header-wrapper .header .mega-menu-image .media-content .image-title.title-effect--shadow {
  text-shadow: 0 0 .25rem rgb(var(--color-background))
}

.section-header .header-wrapper .header .image-title.title-size--small {
  font-size: 1rem
}

.section-header .header-wrapper .header .image-title.title-size--medium {
  font-size: 1.5rem
}

.section-header .header-wrapper .header .image-title.title-size--large {
  font-size: 2rem
}

.section-header .header-wrapper .header .menu-bubble {
  padding: .125rem .625rem;
  font-size: .625rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: .25rem
}

.section-header .header-wrapper .header:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(var(--color-foreground), var(--alpha-border))
}

@media screen and (max-width:749px) {
  .section-header .header-wrapper .header .header-main {
    gap: 0
  }

  .section-header .header-wrapper .header.header-mobile--center .header-main {
    grid-template-columns: 1fr auto 1fr
  }

  .section-header .header-wrapper .header.header-mobile--center .header-main .header-heading {
    text-align: center;
    transform-origin: center center
  }
}

@media screen and (min-width:1200px) {
  .section-header .header-wrapper .header .header-main {
    gap: 0
  }

  .section-header .header-wrapper .header .header-main .header-left-area {
    display: none
  }

  .section-header .header-wrapper .header .header-main .header-left-area header-drawer {
    display: none
  }

  .section-header .header-wrapper .header .header-main .header-heading .header-heading-logo-wrapper .header-heading-logo {
    width: var(--logo-width, 100px)
  }

  .section-header .header-wrapper .header .header-main .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 30rem
  }

  .section-header .header-wrapper .header .header-main .search-wrapper .search-form {
    width: 100%
  }

  .section-header .header-wrapper .header .header-main .search-wrapper .search-container {
    display: none;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: rgb(var(--color-background));
    padding: 1.25rem;
    border-radius: var(--medium-radius);
    box-shadow: 0 0 .5rem rgba(var(--color-shadow), .2)
  }

  .section-header .header-wrapper .header .header-main .search-wrapper.in-focus .search-container {
    display: block;
    animation: slideIn .3s cubic-bezier(0, 0, .3, 1)
  }

  .section-header .header-wrapper .header .header-main .search-wrapper.predictive-search-wrapper .predictive-search-main {
    max-height: var(--result-max-height)
  }

  .section-header .header-wrapper .header .header-main .header-menu-nav {
    display: block;
    grid-area: navigation
  }

  .section-header .header-wrapper .header .header-bottom {
    display: block
  }

  .section-header .header-wrapper .header .header-bottom .header-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem
  }

  .section-header .header-wrapper .header .header-bottom .header-bottom-wrapper .header-contact {
    flex: 0 0 auto;
    font-size: .875rem;
    margin-left: auto
  }

  .section-header .header-wrapper .header.drawer-menu .header-main {
    padding-top: .5rem;
    padding-bottom: .5rem
  }

  .section-header .header-wrapper .header.drawer-menu.header--has-menu .header-left-area {
    display: flex
  }

  .section-header .header-wrapper .header.drawer-menu.header--has-menu .header-left-area header-drawer {
    display: block
  }

  .section-header .header-wrapper .header.header--menu-position-bottom.header--has-menu .header-main {
    border-bottom: 1px solid rgba(var(--color-foreground), .2)
  }

  .section-header .header-wrapper .header.header--left-left .header-main {
    grid-template-areas: "heading icons";
    grid-template-columns: 1fr auto
  }

  .section-header .header-wrapper .header.header--left-left.header--has-menu .header-main {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: auto auto 1fr;
    gap: 2rem
  }

  .section-header .header-wrapper .header.header--left-left.header--has-menu.drawer-menu .header-main {
    grid-template-areas: "left-area heading icons";
    grid-template-columns: auto 1fr auto;
    gap: 1rem
  }

  .section-header .header-wrapper .header.header--left-left.header--has-menu.drawer-menu .header-main .header-heading {
    justify-self: left
  }

  .section-header .header-wrapper .header.header--left-center .header-main {
    grid-template-areas: "heading icons";
    grid-template-columns: 1fr auto
  }

  .section-header .header-wrapper .header.header--left-center .header-main .header-heading {
    justify-self: flex-start
  }

  .section-header .header-wrapper .header.header--left-center.header--has-menu .header-main {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem
  }

  .section-header .header-wrapper .header.header--left-center.header--has-menu.drawer-menu .header-main {
    grid-template-areas: "left-area heading icons";
    grid-template-columns: auto 1fr auto;
    gap: 1rem
  }

  .section-header .header-wrapper .header.header--left-bottom .header-main {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas: "heading inline-search icons"
  }

  .section-header .header-wrapper .header.header--left-bottom .header-main .header-heading {
    justify-self: flex-start
  }

  .section-header .header-wrapper .header.header--left-bottom .header-main .search-wrapper {
    grid-area: inline-search;
    justify-self: center
  }

  .section-header .header-wrapper .header.header--left-bottom.header--has-menu.drawer-menu .header-main {
    grid-template-columns: auto 1fr 4fr 2fr;
    grid-template-areas: "left-area heading inline-search icons";
    gap: 1rem
  }

  .section-header .header-wrapper .header.header--center-bottom .header-main {
    grid-template-areas: "left-area heading icons";
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem
  }

  .section-header .header-wrapper .header.header--center-bottom .header-main .header-left-area {
    display: flex
  }

  .section-header .header-wrapper .header.header--center-bottom .header-main .header-left-area .search-wrapper {
    max-width: 25rem
  }
}

@media screen and (min-width:1200px)and (min-width:750px) {
  .section-header .header-wrapper .header.header--center-bottom .header-main .header-heading {
    text-align: center;
    transform-origin: center center
  }
}

@media screen and (min-width:1200px) {
  .section-header .header-wrapper .header.header--center-bottom.drawer-menu .header-main .header-left-area .search-wrapper {
    margin-left: 0
  }

  .section-header .header-wrapper .header.header--center-left .header-main {
    grid-template-areas: "heading icons";
    grid-template-columns: 1fr auto
  }
}

@media screen and (min-width:1200px)and (min-width:750px) {
  .section-header .header-wrapper .header.header--center-left .header-main .header-heading {
    text-align: center;
    transform-origin: center center
  }
}

@media screen and (min-width:1200px) {
  .section-header .header-wrapper .header.header--center-left.header--has-menu .header-main {
    grid-template-areas: "navigation heading icons";
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem
  }

  .section-header .header-wrapper .header.header--center-left.header--has-menu.drawer-menu .header-main {
    grid-template-areas: "left-area heading icons";
    grid-template-columns: 1fr auto 1fr
  }
}

.section-header .header-wrapper.header--background-transparent {
  height: 0
}

.section-header .header-wrapper.header--background-transparent .header {
  background: transparent
}

.section-header .header-wrapper.header--background-transparent .header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-background, rgb(var(--color-background)));
  transform: scaleY(0);
  transform-origin: bottom
}

.section-header .header-wrapper.header--first-level-uppercase .first-level-item {
  text-transform: uppercase
}

.section-header.shopify-section-header-sticky {
  position: sticky;
  top: 0
}

.section-header.scrolled-past-header sticky-header[data-sticky-type=reduce-logo-size] .header-heading {
  transform: scale(.75)
}

.section-header.scrolled-past-header .header {
  --alpha-shadow: .1;
  transition: box-shadow .3s .3s cubic-bezier(0, 0, .3, 1)
}

.section-header.animate {
  transition: top .3s ease-out
}

.section-header.shopify-section-header-hidden {
  top: calc(-1 * var(--header-height))
}

.section-header:hover .header-wrapper.header--background-transparent .header:before,
.section-header.header--is-active .header-wrapper.header--background-transparent .header:before,
.section-header.scrolled-past-header .header-wrapper.header--background-transparent .header:before {
  transition: transform .3s cubic-bezier(0, 0, .3, 1);
  transform: scaleY(1)
}

.section-header:not(:hover, .header--is-active, .scrolled-past-header) .header-wrapper.header--background-transparent .header {
  --color-foreground: var(--transparent-foreground-color);
  --alpha-border: 1
}

.section-header:not(:hover, .header--is-active, .scrolled-past-header) .header-wrapper.header--background-transparent .header .header-main .header-heading .header-heading-logo-wrapper.has-transparent-logo .header-heading-logo {
  display: none
}

.section-header:not(:hover, .header--is-active, .scrolled-past-header) .header-wrapper.header--background-transparent .header .header-main .header-heading .header-heading-logo-wrapper.has-transparent-logo .header-heading-logo.transparent-logo {
  display: block
}

.section-header:not(:hover, .header--is-active, .scrolled-past-header) .header-wrapper.header--background-transparent.header--transparent-border-hide .header {
  --alpha-border: 0
}

/*# sourceMappingURL=/cdn/shop/t/6/assets/style.css.map?v=165387476256984699031747554102 */