/** Shopify CDN: Minification failed

Line 904:33 Unexpected "{"

**/
.announcement-bar__wrapper,
.footer {
  position: relative;
  display: grid;
  display: -ms-grid;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
  grid-column-gap: 20px;
  grid-template-columns: repeat(12, [col-start] minmax(0, 1440px));
  -ms-grid-columns: repeat(12, [col-start] minmax(0, 1440px));
}

/* Sidecart */
.sidecart {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12000;
  visibility: hidden;
  transition: visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidecart[data-show="true"] {
  visibility: visible;
}

.sidecart[data-show="true"] .sidecart__container {
  transform: translate(0);
}

.sidecart[data-show="true"] .sidecart__blocker {
  opacity: 1;
}

.sidecart__blocker {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000040;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidecart__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 350px;
  color: #000;
  background-color: #fff;
  width: calc(100% - 10px);
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: -5px 0 5px #0000001a;
  transform: translate(100%);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (min-width: 720px) {
  .sidecart__container {
    max-width: 480px;
  }
}

.sidecart__close-btn {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #bdc7cf;
  -webkit-mask: url(close.svg) no-repeat center;
  mask: url(close.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.sidecart__continue-shopping-btn {
  display: flex;
  align-items: center;
  
  font-size: 1.125rem;
  font-weight: 600;
  color: #434b54;
  border: none;
  background: none;
}

.sidecart__continue-shopping-btn svg {
  width: 1.125em;
  height: 1.125em;
  stroke: #434b54;
}

.sidecart .theme-button {
  margin: 20px 0;
}

.sidecart__header {
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.sidecart__header h2 {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #656f7f;
  text-transform: uppercase;
}

.sidecart__header h2:before {
  content: "an item was added to cart";
}

.sidecart__header h2[data-cart-item-count="0"]:before {
  content: "cart is empty";
}

.sidecart__header__check {
  width: 16px;
  height: 16px;
  background-color: #219653;
  -webkit-mask: url(check-mark-1.svg) no-repeat center;
  mask: url(check-mark-1.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.sidecart__header__check[data-cart-item-count="0"] {
  display: none;
}

.sidecart__items-wrap {
  position: relative;
  padding: 0 20px 20px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidecart__items-wrap:has(div) {
  min-height: 142px;
}

.sidecart__items-wrap::-webkit-scrollbar {
  width: 8px;
}

.sidecart__items {
  margin-bottom: 1em;
}

.sidecart__item {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
  display: grid;
  grid-template-columns: 65px auto auto;
  grid-template-areas: "image info total";
  gap: 16px;
}

@media (min-width: 720px) {
  .sidecart__item {
    grid-template-columns: 65px 50% auto;
  }
}

.sidecart__item__image {
  grid-area: image;
  width: 65px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0000;
}

.sidecart__item__info {
  grid-area: info;
}

.sidecart__item__info__title {
  font-weight: 700;
  margin-bottom: 10px;
}

.sidecart__item__info__quantity-container {
  display: flex;
  line-height: 26px;
}

.sidecart__item__info__quantity-decrement,
.sidecart__item__info__quantity-increment {
  height: 30px;
  width: 30px;
  border: 1px solid #f2f2f2;
}

.sidecart__item__info__quantity-decrement:before,
.sidecart__item__info__quantity-increment:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #292034;
  -webkit-mask: no-repeat center;
  mask: no-repeat center;
  -webkit-mask-size: 16px;
  mask-size: 16px;
}

.sidecart__item__info__quantity-decrement:before {
  -webkit-mask-image: url(minus.svg);
  mask-image: url(minus.svg);
}

.sidecart__item__info__quantity-increment:before {
  -webkit-mask-image: url(plus.svg);
  mask-image: url(plus.svg);
}

.sidecart__item__info__quantity-input {
  color: #292034;
  font-size: 16px;
  width: 45px;
  text-align: center;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

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

.sidecart__item__total {
  grid-area: total;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.sidecart__item__total__price {
  color: #ff6b00;
}

.sidecart__item__total [data-remove-from-sidecart],
.sidecart__item__total [data-add-to-cart] {
  text-transform: uppercase;
}

.sidecart__item__total [data-add-to-cart] {
  margin: 8px 0;
}

.sidecart__bottom {
  padding: 20px;
}

.sidecart__bottom__subtotal {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  display: flex;
}

.sidecart__bottom__subtotal__text {
  width: 75%;
  color: #50555e;
  text-transform: uppercase;
}

.sidecart__bottom__subtotal__price {
  width: 25%;
  color: #ff6b00;
}

.sidecart__upsell-wrap {
  position: relative;
  padding: 0;
  width: 100%;
  height: 0;
}

.sidecart__upsell-wrap:has(div) {
  height: auto;
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidecart__upsell-wrap::-webkit-scrollbar {
  width: 8px;
}

.sidecart__upsell-wrap .sidecart__item__total__price {
  text-align: right;
  font-weight: 500;
}

.sidecart__upsell-wrap .sidecart__item__total__price .compare-price {
  text-decoration: line-through;
  color: #656f7f;
  margin-right: 8px;
}

/* Announcement */
.announcement-bar {
  position: relative;
  display: none;
}

@media (min-width: 720px) {
  .announcement-bar {
    display: block;
  }
}

.announcement-bar--page-level {
  display: block;
}

.announcement-bar__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
  width: 100%;
  object-fit: cover;
}

.announcement-bar__section {
  grid-column-end: span 10;
  grid-column-start: 2;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  column-gap: 32px;
  row-gap: 8px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-bar__section-content {
  font-family: Museo Sans Rounded, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.01em;
}

@media (min-width: 960px) {
  .announcement-bar__section-content {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
}

.announcement-bar__section-button {
  padding: 8px 20px;
}

/* Footer */
.footer {
  padding-top: 60px;
  padding-bottom: 24px;
}

.footer__logo {
  grid-column-end: span 12;
  margin-bottom: 32px;
}

@media (min-width: 720px) {
  .footer__logo {
    grid-column-end: span 10;
    margin-bottom: 48px;
  }
}

.footer__logo img {
  cursor: pointer;
}

.footer__store {
  padding-top: 8px;
}

.footer__store-wrapper {
  grid-column-end: span 12;
  gap: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  justify-content: flex-start;
  margin-bottom: 32px;
}

.footer__store-wrapper > * {
  cursor: pointer;
}

@media (min-width: 720px) {
  .footer__store-wrapper {
    grid-column-end: span 2;
    margin-bottom: 0;
  }
}

.footer__store-content {
  font-family: MuseoSansRounded, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #292034;
}

.footer__muse-family {
  grid-column-end: span 12;
}

@media (min-width: 720px) {
  .footer__muse-family {
    grid-column-end: span 3;
  }
}

.footer__hr {
  border-top: solid 1px #bdc7cf;
  margin: 24px 0 0;
  grid-column-end: span 12;
}

@media (min-width: 720px) {
  .footer__hr {
    margin: auto;
    height: 100%;
    border-right: solid 1px #bdc7cf;
    border-top: none;
    grid-column-end: span 1;
  }
}

.footer__family-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.footer__family-icons a {
  display: inline-flex;
  width: 100px;
  aspect-ratio: 81/35;
}

@media (max-width: 400px) {
  .footer__family-icons a {
    width: calc(50% - 4px);
  }
}

.footer__family-icons img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  filter: brightness(1);
  -webkit-filter: brightness(1);
  transition: filter ease-in-out 0.3s;
}

.footer__family-icons img:hover,
.footer__family-icons img:active {
  filter: brightness(0.84);
  -webkit-filter: brightness(0.84);
}

.footer__copyright,
.footer__address,
.footer__guarantee,
.footer__payment {
  font-family: MuseoSansRounded, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.03em;
  color: #292034;
  margin-top: 16px;
}

.footer__payment p {
  margin: 0 0 4px;
}

.footer__menus {
  grid-column-end: span 6;
  margin-top: 24px;
}

@media (min-width: 720px) {
  .footer__menus {
    grid-column-end: span 2;
    margin-top: 0;
  }
}

.footer__menus--dekstop {
  display: none;
}

@media (min-width: 720px) {
  .footer__menus--dekstop {
    display: block;
  }
}

@media (min-width: 720px) {
  .footer__menus--offset {
    grid-column-start: 5;
  }
}

.footer__menus ul {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.footer__menus ul li {
  display: flex;
}

.footer__menus-spacing {
  margin-top: 32px;
}

.footer__menus-heading {
  font-family: MuseoSansRounded, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #52b9e9;
  margin: 0;
}

.footer__menus-heading--desktop {
  display: none;
}

@media (min-width: 720px) {
  .footer__menus-heading--desktop {
    display: block;
  }
}

.footer__menus-heading.desktop {
  display: none;
}

@media (min-width: 720px) {
  .footer__menus-heading.desktop {
    display: flex;
  }
}

.footer__menus-heading.mobile {
  display: flex;
}

@media (min-width: 720px) {
  .footer__menus-heading.mobile {
    display: none;
  }
}

.footer__menus-items {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__menus-items.desktop {
  display: none;
}

@media (min-width: 720px) {
  .footer__menus-items.desktop {
    display: flex;
  }
}

.footer__menus-items.mobile {
  display: flex;
}

@media (min-width: 720px) {
  .footer__menus-items.mobile {
    display: none;
  }
}

.footer__menus-item {
  font-family: MuseoSansRounded, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.03em;
  color: #292034;
  text-decoration: none;
  transition: color ease-in-out 0.3s;
}

.footer__menus-item:hover {
  color: #bdc7cf;
}

.footer__stores {
  display: none;
  flex-direction: column;
  gap: 8px;
  grid-column-end: span 2;
  margin-top: 16px;
}

@media (min-width: 720px) {
  .footer__stores {
    display: flex;
  }
}

.footer__stores img {
  cursor: pointer;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.footer__stores img.border-light {
  box-shadow: 0 0 0 1px #c0c5cd;
}

.footer__stores a {
  text-decoration: none;
  cursor: pointer;
  pointer-events: all;
  display: flex;
}

.footer__stores * {
  pointer-events: none;
}

.footer__stores__social-icon {
  background-color: #50555e;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  border-radius: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 915px) and (min-width: 720px) {
  .footer__stores__social-icon {
    flex-direction: column;
    gap: 1rem;
  }
}

.footer__stores__social-icon_svg {
  margin-right: 1rem;
  width: 26px;
  fill: #fff;
  display: flex;
}

.footer__stores__social-icon-text {
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.footer__stores__social-icon-text_text {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer__stores--mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
  grid-column-end: span 12;
  gap: 8px;
}

@media (min-width: 720px) {
  .footer__stores--mobile {
    display: none;
  }
}

.footer__stores--mobile img {
  height: auto;
  border-radius: 4px;
}

.footer__stores--mobile img.border-light {
  box-shadow: 0 0 0 1px #c0c5cd;
}

.footer__stores--mobile a {
  text-decoration: none;
  display: flex;
}

.footer__social {
  grid-column-end: span 12;
}

.footer__social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer__social-icons img {
  cursor: pointer;
  transition: opacity ease-in-out 0.2s;
}

.footer__social-icons img:hover {
  opacity: 0.5;
}

.footer__social small,
.footer__social time {
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #656f7f;
}

.footer__social small {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  font-family: MuseoSansRounded, sans-serif;
}

.footer__logo {
  display: none !important;
}

/* Buttons */
.theme-button {
  cursor: pointer;
  transition: all ease-in 0.2s;
  text-decoration: none;
  padding: 12px 32px !important;
  border-radius: 50px;
  border-width: 0;
  font-family: Museo Sans Rounded, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-align: center;
}

.theme-button[data-full-width] {
  justify-content: center;
  width: 100%;
}

.theme-button--medium {
  font-size: 16px;
  line-height: 20px;
  padding: 8px 20px !important;
}

.theme-button--small {
  font-size: 11px;
  line-height: 13px;
  padding: 8px !important;
}

.theme-button--primary {
  color: #fff;
  background-color: #00b098;
}

.theme-button--primary[data-border="true"] {
  border: 1px solid #fff;
}

.theme-button--primary:link,
.theme-button--primary:visited {
  color: #fff;
  background-color: #00b098;
}

.theme-button--primary:focus,
.theme-button--primary:hover {
  background: #007d6c;
  color: #fff;
}

.theme-button--primary:active {
  background: #006456;
  color: #fff;
}

.theme-button--primary[disabled] {
  color: #eaebef;
  background-color: #656f7f;
}

.theme-button--primary.theme-button--icon:before {
  background-color: #fff;
}

.theme-button--secondary {
  color: #292034;
  background-color: #fff;
}

.theme-button--secondary[data-border="true"] {
  border: 1px solid #292034;
}

.theme-button--secondary:link,
.theme-button--secondary:visited {
  color: #292034;
  background-color: #fff;
}

.theme-button--secondary:focus,
.theme-button--secondary:hover {
  background: #e6e6e6;
  color: #292034;
}

.theme-button--secondary:active, {
  background: #d9d9d9;
  color: #292034;
}

.theme-button--secondary[disabled] {
  color: #656f7f;
  background-color: #bdc7cf;
}

.theme-button--secondary.theme-button--icon:before,
.theme-button--secondary.theme-button--icon-after:after {
  background-color: #292034 !important;
}

.theme-button--icon {
  gap: 12px;
}

.theme-button--icon:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: #fff;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.theme-button--icon__lock:before {
  width: 12px;
  height: 12px;
  -webkit-mask-image: url(lock.svg);
  mask-image: url(lock.svg);
}

.theme-button--icon__play:before {
  -webkit-mask-image: url(play.svg);
  mask-image: url(play.svg);
}

.theme-button--icon__play-toggle:before {
  -webkit-mask-image: url(play.svg);
  mask-image: url(play.svg);
}

.theme-button--icon__play-toggle[data-playing="true"]:before {
  -webkit-mask-image: url(pause.svg);
  mask-image: url(pause.svg);
}

.theme-button--icon-after {
  gap: 12px;
}

.theme-button--icon-after::after {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: #fff;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.theme-button--icon-after__arrow-right::after  {
  -webkit-mask: url(arrow-right.svg) no-repeat center;
  mask: url(arrow-right.svg) no-repeat center;
}
