/** Shopify CDN: Minification failed

Line 411:44 The "-" operator only works if there is whitespace on both sides

**/
/* TABLE OF CONTENTS

1. GLOBAL SETTINGS
  1.1 COLOR SETTINGS
    1.1.1 COLOR GROUPS
    1.1.2 STATES
    1.1.3 IMAGES / ASPECT RATIO
  1.2 FONT AND TEXT SETTINGS
    1.2.1 FONT FAMILY MARKUP
    1.2.2 TEXT SETTINGS
    1.2.3 RTE SETTINGS
  1.3 COMPONENTS
   1.3.1 LOADERS
   1.3.2 PSWP FIX
   1.3.3 NO SCRIPT RULES
   1.3.4 ELEMENT POSITIONING AND VISIBILITY
   1.3.5 DROPDOWN
   1.3.6 REVOLUTION SELECTBOX
   1.3.7 LABELS
   1.3.8 BUTTONS
   1.3.9 TOOLTIP
   1.3.10 PRICE & INPUTS
   1.3.11 SWIPER INIT CLASS
  1.4 SPACINGS
  1.5 ACCESSIBILITY
*/

/*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/



.Button.Button--full{
  width: 100%;
}

iframe{
  z-index: 25 !important;
}
address{
  font-style: normal;
}

[aria-hidden="true"]:not(.oke-w-main *),
.pm__booking-step[aria-hidden="true"],
.Button[aria-hidden="true"],
[aria-hidden="true"] {
  display: none;
}

#shopify-pc__prefs__header-close svg{
  display: block;

}


[aria-hidden="false"] {
  display: block;
}

.account-popup[aria-hidden="false"] {
  display: flex;
}

.secondary-text {
  color: var(--secondary_text);
}

.grey-secondary-text {
  color: var(--secondary_grey);
}
.grey-primary-text {
  color: var(--primary_grey);
}

/* GLOBAL */
[data-action]>* {
  pointer-events: none;
}

[data-action] [data-tooltip] {
  pointer-events: auto;
}

.sectionMax_width {
  max-width: var(--section_max_width);
  margin: auto;
}

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

html {
  box-sizing: border-box;
  height: 100%;
}

svg {
  pointer-events: none;
  align-items: center;
}


body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0;
  scroll-behavior: smooth;
  line-height: 1.3;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--type_paragraf_weight);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

.standardSection {
  padding: 64px 16px;
}

/* NEEDED FOR FIRST RENDER */
.search[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in;
}

#quickSearch {
  display: none;
}

.swiperButton[disabled] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* NEEDED FOR FIRST RENDER END */

/*
======= 1.1 COLOR SETTINGS START ========
*/


/* 1.1.2 STATES */

.AlertError {
  color: var(--alert_error);
}

.AlertError svg path {
  fill: var(--alert_error);
}

.AlertSuccess {
  color: var(--alert_success);
}

.AlertSuccess svg path {
  fill: var(--alert_success);
}

/* Item Loader */
.itemLoader {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.itemLoader svg {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  width: 20px;
  height: 20px;
}

.itemLoader svg path {
  stroke: var(--primary_text);
  fill: transparent !important;
}

.itemLoader.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  cursor: wait;
}

/* 1.1.3 IMAGES / ASPECT RATIO */

.image__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
}


@supports not (aspect-ratio: auto) {
  .AspectRatio--withFallback {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }


  .AspectRatio--withFallback>img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .AspectRatio--withFallback::before {
    content: '';
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }



  .AspectRatio--withFallback>img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .VideoRatio--withFallback {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }


  .VideoRatio--withFallback::before {
    content: '';
    display: block;
    padding-bottom: calc(100% / (var(--video-ratio-mobile)));
  }
}

/*VIDEO CONTROLS*/

.section-video__controls {
  z-index: 10;
  position: absolute;
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem;
}

.section-video__controls button {
  padding: 0.25rem 0.5rem;
  background-color: var(--background_color);
  border-radius: 0.125rem;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.section-video__state {
  display: flex;
  flex-direction: column;
}

.section-video__controls--default {
  top: calc((var(--header-height-fixed) * var(--header-is-transparent, 0)));
  right: 0;
}

.section-video__controls svg path {
  stroke: var(--primary_text);
}

.section-video__icon-txt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  ;
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    width 0.25s ease,
    max-width 0.25s ease,
    margin 0.25s ease;
  transform-origin: center;
  vertical-align: middle;
  color: var(--primary_text);
}

.section-video__icon-txt svg {
  width: 1rem;
  height: 1rem;
}

.section-video__sound {
  display: flex;
  flex-direction: column;
}

.section-video__state,
.section-video__sound {

  pointer-events: auto;
}

.section-video__sound[aria-label="unmuted"] .section-video__sound-on,
.section-video__sound[aria-label="muted"] .section-video__sound-mute,
.section-video__state[aria-label="playing"] .section-video__state-play,
.section-video__state[aria-label="paused"] .section-video__state-pause {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  width: auto;
  max-width: 100%;
  /* enough to hold label */
}

.section-video__sound[aria-label="muted"] .section-video__sound-on,
.section-video__sound[aria-label="unmuted"] .section-video__sound-mute,
.section-video__state[aria-label="paused"] .section-video__state-play,
.section-video__state[aria-label="playing"] .section-video__state-pause {
  opacity: 0;
  transform: scale(0.95);
  width: 0;
  max-width: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  transition-delay: 0s;
}

.section-video__controls--top-left,
.section-video__controls--top-right,
.section-video__controls--top-center {
  top: 0;
}

.section-video__controls--bottom-left,
.section-video__controls--top-left {
  left: 0;
}

.section-video__controls--bottom-right,
.section-video__controls--top-right {
  right: 0;
}

.section-video__controls--bottom-center,
.section-video__controls--top-center {
  left: 50%;
  transform: translateX(-50%);
}

.section-video__controls--bottom-right,
.section-video__controls--bottom-left,
.section-video__controls--bottom-center {
  bottom: 0;
}

.vjs-big-play-button {
  display: none !important;
}

/* CUSTOM VIDEO CONTROLS END */
.VideoRatio {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  aspect-ratio: var(--video-ratio-mobile);
}

.VideoRatio--Full {
  height: calc(var(--viewport-height-fixed) -(var(--header-height-fixed, 0px)) - var(--announcement-height-fixed))
}

.VideoRatio--Full video-component,
.VideoRatio--Full .video-js,
.VideoRatio--Full .videoWrapper,
.VideoRatio--Full .videoHolder {
  height: 100%;
  padding-top: unset !important;
}

.image__container--fullscreen {
  height: calc(var(--viewport-height-fixed) - (var(--header-height-fixed, 0px)) - var(--announcement-height-fixed));
}

.image-fit img{
  object-fit: cover;
}

.image__container.image__container--fullscreen .image__element {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

/* .image__container.AspectRatio {
        aspect-ratio: var(--ar-m);
      }

      @media screen and (min-width: 1025px) { 
              .image__container.AspectRatio {
        aspect-ratio: var(--ar-d);
      }
      }*/

.image__placeholder svg {
  background-color: rgb(from var(--secondary_accent) r g b / 15%);
}

.image__placeholder svg path {
  fill: var(--primary_text);
}

.AspectRatio {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: var(--aspect-ratio);
}

.AspectRatio img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  height: fit-content;
}

.AspectRatio--portrait>img,
.AspectRatio--square>img {
  object-fit: cover !important;
  object-position: center;
  -o-object-fit: cover !important;
  -o-object-position: center;
}

.AspectRatio img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.Image--contrast::after {
  content: '';
  display: block;
  top: 0;
  left: 0;
  background: radial-gradient(118.8% 118.8% at 50% 50%, rgba(0, 0, 0, 0.32) 0%, rgba(196, 196, 196, 0) 100%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}

.Image--FadeIn {
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 300ms 100ms, -webkit-filter 300ms 100ms;
}

.Image--ScaleIn {
  animation: ScaleOut 0.8s ease forwards;
  -webkit-animation: ScaleOut 0.8s ease forwards;
}


@keyframes ScaleIn {
  from {
    transform: scale(96%);
    opacity: 0;
  }

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

@keyframes ScaleOut {
  from {
    transform: scale(104%);
    opacity: 0;
  }

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

.ImageSize--Small {
  height: 375px;
}

.ImageSize--Default {
  height: 500px;
}

.ImageSize--Large {
  height: 790px;
}

.PlaceholderBackground {
  width: 100%;
  height: 100%;
  background: white;
}

.PlaceholderProductCard {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
}

.placeholder-svg {
  width: 100%;
  height: 100%;
}

.PlaceholderImage {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.placeholderSvg {
  background: var(--primary_text);
  fill: var(--background_color);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

.animatedContent {
  opacity: 0;
}

.ImageHolder_Image,
.ImageHolder--Wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}



/*
======= 1.2 FONT AND TEXT SETTINGS START ========
*/

/* 1.2.1 FONT FAMILY MARKUP */

* {
  line-height: 130%;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
  font-size: 0.875rem;
  letter-spacing: 0rem;
}

b,
strong {
  font-weight: bold !important;
}

.rte p,
.rte >*,
.metafield-rich_text_field >*{
  min-height: .75rem;
}

.rte h1,
.rte.u-h1 h1,
.rte.u-h1 h2,
.rte.u-h1 h3,
.rte.u-h1 h4,
.rte.u-h1 h5,
.rte.u-h1 h6,
.u-h1,
.u-h1 p,

.rte.u-h1 strong,
.rte.u-h1 em,
.rte.u-h1 time,
.rte.u-h1 a {
  font-size: 2.625rem;
  font-family: var(--type_heading_font);
  font-weight: var(--weight_heading_font);
  line-height: 3.5rem;
  letter-spacing: 0;
}

.rte h2,
.rte.u-h2 h1,
.rte.u-h2 h2,
.rte.u-h2 h3,
.rte.u-h2 h4,
.rte.u-h2 h5,
.rte.u-h2 h6,
.u-h2,

.rte.u-h2>p,
.rte.u-h2 strong,
.rte.u-h2 em,
.rte.u-h2 time,
.rte.u-h2 a {
  font-size: 2rem;
  font-family: var(--type_heading_font);
  font-weight: var(--weight_heading_font);
  line-height: 2.75rem;
  letter-spacing: 0rem;
}
.rte h3,
.rte.u-h3 h1,
.rte.u-h3 h2,
.rte.u-h3 h3,
.rte.u-h3 h4,
.rte.u-h3 h5,
.rte.u-h3 h6,
.u-h3,
.rte.u-h3 p,
.rte.u-h3 strong,
.rte.u-h3 em,
.rte.u-h3 time,
.rte.u-h3 a {
  font-size: 1.5rem;
  font-family: var(--type_heading_font);
  font-weight: var(--weight_heading_font);
  line-height: 2rem;
  /* 116.667% */
  letter-spacing: 0rem;
}

.rte h4,
.rte.u-h4 h1,
.rte.u-h4 h2,
.rte.u-h4 h3,
.rte.u-h4 h4,
.rte.u-h4 h5,
.rte.u-h4 h6,
.u-h4,
.u-h4 p,
.rte.u-h4 strong,
.rte.u-h4 em,
.rte.u-h4 time,
.rte.u-h4 a,
.gift-card__booking .u-h4 span {
  font-size: 1.125rem;
  font-family: var(--type_heading_font);
  font-weight: var(--weight_heading_font);
  line-height: 1.5rem;
  /* 125% */
  letter-spacing: 0rem;
}
.shopify-pc__prefs__dialog header h2,
.shopify-pc__prefs__intro-main h3,
#shopify-pc__prefs__essential label{
    font-size: 1.125rem!important;
  font-family: var(--type_heading_font)!important;
  font-weight: var(--weight_heading_font)!important;
  line-height: 1.5rem!important;
  /* 125% */
  letter-spacing: 0rem;
}

.rte.u-p1 p,
.u-p1,
.rte.u-p1 strong,
.rte.u-p1 em,
.rte.u-p1 a,
.rte.u-p1 span {
  font-size: 1.5rem;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
  line-height: 2rem;
  /* 116.667% */
  letter-spacing: 0rem;
}

.rte.u-p2 p,
.u-p2,
.u-p2 p,
.rte.u-p2 strong,
.rte.u-p2 em,
.rte.u-p2 time,
input.input-placeholder,
.rte.u-p2 a,
.u-p2 a {
  font-size: 1rem;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
  line-height: 1.375rem;
  /* 128.571% */
  letter-spacing: 0rem;
}

.shopify-pc__prefs__option p,
.shopify-pc__prefs__intro-main p{
   font-size: 1rem!important;
  font-family: var(--type_primary_paragraph_font)!important;
  font-weight: var(--weight_paragraph_font)!important;
  line-height: 1.375rem!important;
  /* 128.571% */
  letter-spacing: 0rem!important;
}

.rte.u-p3 p,
.u-p3,
.accountDesktopTabLink.u-p3,
.rte.u-p3 em,
.u-p3,
.rte.u-p3 strong,
.u-p3 a,
a.u-p3 {
  font-size: 0.875rem;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
  line-height: 1.25rem;
  /* 133.333% */
  letter-spacing: 0rem;
}

.rte.u-p4 p,
.u-p4 a,
.u-p4,
.u-p4 p,
.u-p4 span,
.rte.u-p4 strong,
.rte.u-p4 em,
.rte.u-p4 time,
.rte.u-p4 a {
  font-size: 0.75rem;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
  line-height: 0.875rem;
  /* 140% */
  line-height: 1.125rem;
  letter-spacing: 0rem;
}

.pm__about-text.rte.u-p3 h2,
.u-s1,
.rte.u-s1 p,
.rte.u-s1 strong,
.rte.u-s1 em,
.rte.u-s1 time,
.rte.u-s1 a {
  font-size: 1.5rem;
  font-family: var(--type_secondary_paragraph_font);
  font-weight: var(--weight_secondary_font);
  line-height: 1.95rem;
  letter-spacing: 0rem;
}

.u-s2,
.rte.u-s2 p,
.u-s2 p,
.rte.u-s2 strong,
.rte.u-s2 em,
.rte.u-s2 time,
.rte.u-s2 a {
  font-size: 1rem;
  font-family: var(--type_secondary_paragraph_font);
  font-weight: var(--weight_secondary_font);
  line-height: 1.375rem;
  letter-spacing: 0rem;
}


.u-s3,
.rte.u-s3 p,
.u-s3 p,
.megaMenuLinks .u-s3,
.rte.u-s3 strong,
.rte.u-s3 em,
.rte.u-s3 time,
.rte.u-s3 a {
  font-size: 0.875rem;
  font-family: var(--type_secondary_paragraph_font);
  font-weight: var(--weight_secondary_font);
  line-height: 1.25rem;
  /* 133.333% */
  letter-spacing: 0rem;
}

.u-s4,
.u-s4 span,
.u-s4 a,
.rte.u-s4 p,
.rte.u-s4 strong,
.rte.u-s4 em,
.rte.u-s4 time,
.rte.u-s4 a {
  font-size: 0.75rem;
  font-family: var(--type_secondary_paragraph_font);
  font-weight: var(--weight_secondary_font);
  line-height: 1.125rem;
  /* 140% */
  letter-spacing: 0rem;
}


.u-pb1,
.rte.u-pb1 {
  font-size: 0.75rem;
  font-family: var(--type_button_font);
  font-weight: var(--weight_button_font);
  line-height: 1.125rem;
  /* 128.571% */
  letter-spacing: 0rem;
}
#shopify-pc__prefs__header-accept,
#shopify-pc__prefs__header-decline,
#shopify-pc__prefs__header-save{
   font-size: 0.75rem!important;
  font-family: var(--type_button_font)!important;
  font-weight: var(--weight_button_font)!important;
  line-height: 1.125rem!important;
  /* 128.571% */
  letter-spacing: 0rem!important;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.u-pb2,
.rte.u-pb1 {
  font-size: 0.75rem;
  font-family: var(--type_button_font);
  font-weight: var(--weight_button_font);
  line-height: 1.125rem;
  /* 133.333% */
  letter-spacing: 0rem;
}

/* TEXT SETTINGS */

.textLeft {
  text-align: left;
  justify-content: flex-start;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
  justify-content: flex-end;
}

.textCapitalize {
  text-transform: capitalize;
}

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="phone"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
  font-size: 1rem;
  /* Browsers that don't understand the following max() will use this */
  font-size: max(1rem, 16px);
  /* Lucky for us, Safari iOS understands max() */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}


input[type=number] {
  -moz-appearance: textfield;
}

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

li {
  list-style-type: none;
}



a {
  text-decoration: none;
}

.lh-m {
  line-height: 1.5;
}

button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  display: block;
  cursor: pointer;
}

path {
  align-self: center;
}

dl {
  display: flex;
}

/* 1.2.3 RTE SETTINGS */
.rte li {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
  margin-inline-start: 0.5rem;
  margin-inline-end: 0.5rem;
}

.rte img {
  max-width: 100%;
}

.rte blockquote {
  border-left: 10px solid var(--secondary_text);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

.rte ul li {
  list-style-type: disc;
}

.rte ol li {
  list-style-type: number;
}

.rte ul,
.rte ol {
  margin-block-start: 2rem;
  margin-block-end: 2rem;
  margin-inline-start: 2rem;
  margin-inline-end: 2rem;
}

p {
  word-break: break-word;
}

.rte a {
  text-decoration: underline;
  color: var(--primary_text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
li,
ul,
dd,
dt,
dl {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}



b,
strong {
  font-weight: bold;
}

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

.pagination-controls .Button {
  color: var(--secondary_text);
  cursor: pointer;
  padding: 0 .25rem;
}

.pagination-controls .Button[data-current="true"] {
  background-color: var(--background_color_2);
  color: var(--primary_text);
}

.pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--primary_grey);
  font-weight: 500;
  font-size: 0.875rem;
}

.pagination-controls svg {
  width: 1rem;
  height: 1rem;
}

.pagination-controls button {
  display: flex;
}

.pagination-controls button[aria-disabled="true"] svg path {
  fill: var(--secondary_text);
}

.pagination-controls button svg path {
  color: var(--primary_text);
}


/*
======= FONT AND TEXT SETTINGS END ========
*/

/*
======= 1.3 COMPONENTS START ========
*/

/* 1.3.1 LOADERS */
.pageOverlay,
.localizationOverlay,
.overlay-search-mob {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: background 0.15s ease-in-out, backdrop-filter 0.15s ease-in-out, opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}

.localizationOverlay,
.overlay-search-mob{
  z-index: 31;
  height: var(--viewport-height);
}

.exchangeOverlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 26;
  opacity: 0;
  visibility: hidden;
  transition: background 0.15s ease-in-out, backdrop-filter 0.15s ease-in-out, opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}

.sectionOverlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background: black;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  display: none;
}

.sectionOverlay.is-visible,
.localizationOverlay.is-visible,
.pageOverlay.is-visible,
.exchangeOverlay.is-visible,
.overlay-search-mob.is-visible {
  opacity: 1;
  background: rgba(19, 22, 25, 0.3);
  backdrop-filter: blur(10px);
  visibility: visible;
}

.pageLoader {
  height: 4px;
  background-color: var(--loader_color);
  width: 0%;
  position: fixed;
  top: 0px;
  display: block;
  z-index: 10;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.spinningLoader {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  opacity: 0;
  display: none;
  left: 0;
  top: 0;
  pointer-events: none;
}

.spinningLoader.is-visible {
  opacity: 1;
  display: flex;
}

.spinningLoader svg {
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  width: 20px;
  height: 20px;
}

.spinningLoader svg path {
  stroke: var(--loader_color);
  fill: transparent !important;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.js .pageTransition {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background: var(--pageTransitionColor);
  opacity: 1;
  visibility: visible;
  pointer-events: none;

}


/* 1.3.2 PSWP FIX */

/* Test if photoswipe works correctly without this styles START */
/* Bugs it causes: */
/* Breaks on photoswipe exit -> scrolls to top of the page */
/* Breaks overlay on photoswipe */

/* IOS 15 fix for pswp
html.pswp-open-in-ios,
html.pswp-open-in-ios body {
  height: var(--window-inner-height);
  overflow: hidden;
  box-sizing: border-box;
}

/* Hide page content via CSS when PhotoSwipe opens
.pswp-open-in-ios body>* {
  display: none;
}

.pswp-open-in-ios body .pswp.pswp--open {
  display: block;
} */
/* Test if photoswipe works correctly without this styles END */


/* 1.3.3 NO SCRIPT RULES */
.js .no-js,
.no-js .noJSHide {
  display: none !important;
}

.no-js .noJSshow {
  opacity: 1 !important;
}

.no-js .swiper-slide {
  width: 20%;
}

.no-js .ProductSliderCell {
  width: 100%;
}

.no-js .cardWrapper {
  width: 100%;
}

.no-js .swiper-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.animationsDisabled .animatedContent,
.no-js .animatedContent,
.no-js .animatedContent {
  opacity: 1;
}

.no-js .AspectRatio>img {
  display: none !important;
}

.AspectRatio>img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* 1.3.4 ELEMENT POSITIONING AND VISIBILITY */
@media screen and (max-width: 1024px) {
.cart-page__hide-on-the-mob{
  display: none !important;
}
}
@media screen and (max-width: 767px) {
  .not_mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .not_pocket {
    display: none !important;
  }


}

@media (min-width: 1025px) and (max-width: 1440px) {
  .not_laptop {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .not_desktop {
    display: none !important;
  }
}

.flex-vertical {
  display: flex;
  flex-direction: column;
}

.flex-fill {
  flex: 1 0 0;
}

.header-mobile-btns-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.FlexReverted {
  flex-direction: row-reverse;
}


.self-align {
  align-items: center;
  display: flex;
  word-break: break-word;
  justify-content: center;
}


.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;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

/* 1.3.5 DROPDOWN */

.Dropdown {
  width: 100%;
}

.Dropdown--Content[aria-hidden="false"] {
  height: auto;
  display: block;
  visibility: visible;
  transition: height 0.3s ease-in-out;
}

.Dropdown--Icon {
  cursor: pointer;
}

.Dropdown--Content {
  display: block;
  height: 0;
  visibility: hidden;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.Dropdown--Button {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 16px 0px;
  cursor: pointer;
  align-items: center;
}

.Dropdown--Button[aria-expanded="false"] svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in;
}

.Dropdown--Button[aria-expanded="true"] svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in;
}

.Dropdown--Plus {
  position: relative;
  width: .75rem;
  height: .75rem;
}

.Dropdown--Plus::before,
.Dropdown--Plus::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-color: var(--primary_text);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.Dropdown--Plus::before {
  width: .75rem;
  height: 1px;
  opacity: 1;
}

.Dropdown--Plus::after {
  width: 1px;
  height: .75rem;
}

.show-more-filters[aria-expanded="true"] .Dropdown--Plus::before,
.show-more-filters[aria-expanded="true"] .Dropdown--Plus::after,
.Dropdown--Button[aria-expanded="true"] .Dropdown--Plus::before,
.Dropdown--Button[aria-expanded="true"] .Dropdown--Plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: var(--primary_text);
}

.show-more-filters[aria-expanded="true"] .Dropdown--Plus::before,
.Dropdown--Button[aria-expanded="true"] .Dropdown--Plus::before {
  opacity: 0;
}

/* 1.3.6 REVOLUTION SELECTBOX */

.RevolutionSelectbox:not(.dropdownSelector) {
     display: flex;
    border: 1px solid var(--secondary_grey);
    border-radius: .25rem;
    padding-inline: 1rem;
    padding-block: .75rem;
    position: relative;
}

.RevolutionSelectbox.address-selectbox {
  border: unset;
}

.RevolutionSelectbox.address-selectbox.is-invalid {
  border: 1px solid red;
}

.selectbox-lbl{
   position: absolute;
    top: -8px;
    left: 15px;
    padding: 0 .12rem;
    background-color: var(--background_color);
    color: var(--primary_text);
    z-index: 1;
}

.RevolutionSelectbox--Button svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.RevolutionSelectbox--Button svg path {
  stroke: var(--primary_text);
}

.RevolutionSelectbox--Item {
  padding: 8px 0px 8px 0px;
  color: var(--primary_text);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
}

.PopoverContent .RevolutionSelectbox--Item {
  padding: 16px;
}

.RevolutionSelectbox--Item[selected="selected"] {
  background-color: var(--primary_accent);
  color: var(--secondary_text);
  width: 100%;
  cursor: default;
  text-align: left;
  justify-content: flex-start;
}

.RevolutionSelectbox--Item:not([selected="selected"]):hover {
  background-color: var(--secondary_accent);
  color: var(--primary_text);
  transition: 0.3s ease-in-out;

}

.RevolutionSelectbox--Button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

}

.RevolutionSelectbox--Button[aria-expanded="true"] {
  z-index: 3;
  position: relative;
}

.RevolutionSelectbox--Button[aria-expanded="true"] svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in;
}

.RevolutionSelectbox--Button[aria-expanded="false"] svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in;
}

.rs-country__selectbox .RevolutionSelectbox--Content,
.rs-language__selectbox .RevolutionSelectbox--Content {
  max-height: 180px;
  overflow: auto;
  position: absolute;
  left: 0px;
  z-index: 2;
  top: 32px;
  text-transform: capitalize;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  width: max-content;
  max-width: 200px;
}

localization-modal .RevolutionSelectbox--Item{
  padding: 0.5rem 1rem;
  width: 100%;
  display: flex;
  justify-content: start;
}

localization-modal .RevolutionSelectbox--Item:not([selected="selected"]):hover{
  background-color: var(--background_color_2);
}

/* Selected + focus states specifically inside localization modal */
localization-modal .RevolutionSelectbox--Item[selected="selected"] {
  background-color: var(--primary_text);
  color: var(--secondary_text);
}

.PopoverContent .RevolutionSelectbox--InnerContent {
  overflow: auto;
  height: calc(100% - 18px);
}

.PopoverContent .RevolutionSelectbox--Item {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid var(--primary_grey);
}

/* Unified RevolutionSelectbox animation states */

/*
  Unified animation states for RevolutionSelectbox dropdown content.
  Strategy:
  - JS toggles .rs-open for visible state (opacity 1) and removes it to fade out.
  - Height is animated from 0 -> scrollHeight for open, and reverse for close.
  - .rs-animating is applied only during a transition to ensure overflow:hidden.
  - Pointer events are disabled while closed (no .rs-open) to avoid focus issues.
*/
.RevolutionSelectbox--Content {
  opacity: 0;
  pointer-events: none;
}

.RevolutionSelectbox--Content.rs-open {
  opacity: 1;
  pointer-events: auto;
}

.RevolutionSelectbox--Content.rs-animating {
  overflow: hidden !important;
  will-change: height, opacity;
  transition: height 300ms ease, opacity 260ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .RevolutionSelectbox--Content.rs-animating {
    transition: none !important;
  }
}


.RevolutionSelectbox--animation[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.RevolutionSelectbox--animation[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.RevolutionSelectbox--Content.PopoverContent {
  transition: transform 0.3s ease-in-out;
  transform: translateY(100%);
}

.RevolutionSelectbox--Content.PopoverContent[aria-hidden="false"] {
  transform: translateY(0%);

}


/* 1.3.7 LABELS */

.pc__label--on-sale {
  color: var(--label_onSale_text);
  background-color: var(--label_onSale_Bg);
}

.pc__label--sold-out {
  color: var(--label_soldOut_text);
  background-color: var(--label_soldOut_Bg);
}

.pc__label--custom {
  color: var(--label_custom_text);
  background-color: var(--label_custom_Bg);
}

.Svg--sale {
  margin-right: 8px;
}

/* 1.3.8 BUTTONS */
.linked-element {
  display: block;
}

.underline {
  position: relative;
}

.underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: currentColor;
  transform: scale(1, 1);
  transform-origin: left center;
  transition: transform .2s ease-in-out;
}

.Button:has(.itemLoader.is-visible) {
  cursor: wait;
}

.Button.disable-button {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.Button {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}

.Button[disabled] {
  pointer-events: none;
}

.Button .ButtonText svg {
  width: 1rem;
  height: 1rem;
  padding: 0;
}

.Button--Tertiary {
  position: relative;
  border: none;
  box-sizing: border-box;
  padding: 0;
  justify-content: center;
  align-items: center;
  width: fit-content;
  display: flex;
  transition: all 0.2s ease-in-out;
  background-color: unset;

  border-color: unset;
}

.ButtonText {
  transition: all 0.2s ease-in-out;
}

.Button--Tertiary .ButtonText {
  color: var(--primary_text);
}

.Button--Tertiary span {
  position: relative;
  transition: all 0.2s ease-in-out;
}


.Button--Tertiary .ButtonTextContainer {
  overflow: visible;
  width: fit-content;
}

.Button--Tertiary svg path {
  fill: var(--primary_text);
}


.Button--Tertiary span::after {
  content: "";
  background: currentColor;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;

}

.Button--Tertiary:hover[disabled] .ButtonText,
.Button--Tertiary[disabled] .ButtonText {
  color: transparent;
}

.Button--Tertiary:hover span::after,
.Button--Tertiary:active span::after {
  background: currentColor;
}

.ButtonTextContainer {
  display: flex;
  height: fit-content;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.Button--Tertiary .ButtonTextContainer {
  overflow: visible;
  width: fit-content;

}

.Button .itemLoader svg path {
  fill: transparent;
}

.Button--PrimaryOnLight,
.Button--PrimaryOnDark,
.Button--Secondary {
  position: relative;
  border: 1px solid;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0;
  padding: 0.688rem 1.5rem;
  border-radius: 4px;
}


.Button--PrimaryOnLight {
  background-color: var(--btn_primary_on_light_bg);
  color: var(--btn_primary_on_light_txt);
  border-color: var(--btn_primary_on_light_border);
}

.Button--PrimaryOnLight .itemLoader svg path {
  stroke: var(--btn_primary_on_light_txt);
}

.Button--PrimaryOnLight .ButtonText {
  color: var(--btn_primary_on_light_txt);
}

.Button--PrimaryOnLight svg path {
  fill: var(--btn_primary_on_light_txt);
}

.Button--PrimaryOnDark {
  background-color: var(--btn_primary_on_dark_bg);
  border-color: var(--btn_primary_on_dark_border);
  color: var(--btn_primary_on_dark_txt);
}

.Button--PrimaryOnDark .itemLoader svg path {
  stroke: var(--btn_primary_on_dark_txt);
}

.Button--PrimaryOnDark .ButtonText {
  color: var(--btn_primary_on_dark_txt);
}

.Button--PrimaryOnDark svg path {
  fill: var(--btn_primary_on_dark_txt);
}

.Button--Secondary {
  background-color: transparent;
  color: var(--primary_text);
  border-color: var(--primary_grey);
}

.Button--Secondary .itemLoader svg path {
  stroke: var(--primary_text);
}

.Button--SecondaryOnLight .itemLoader svg path {
  stroke: var(--primary_text);
}

.Button--Secondary svg path {
  stroke: var(--primary_text);
}

.Button--Secondary .ButtonText {
  color: var(--primary_text);
}

.Button--PrimaryOnLight:active {
  background-color: var(--btn_primary_on_light_bg_hover);
  border-color: var(--btn_primary_on_light_border_hover);
}

.Button--PrimaryOnLight:active .ButtonText {
  color: var(--btn_primary_on_light_txt_hover);
}

.Button--PrimaryOnLight:active svg path {
  fill: var(--btn_primary_on_light_txt_hover);
}

.Button--PrimaryOnDark:active {
  background-color: var(--btn_primary_on_dark_bg_hover);
  border-color: var(--btn_primary_on_dark_border_hover);
}

.Button--PrimaryOnDark:active .ButtonText {
  color: var(--btn_primary_on_dark_txt_hover);
}

.Button--PrimaryOnDark:active svg path {
  fill: var(--btn_primary_on_dark_txt_hover);
}

.Button--Secondary:active {
  background-color: transparent;
  border-color: var(--primary_text);
}


.Button--PrimaryOnLight:hover[disabled],
.Button--PrimaryOnLight[disabled] {
  background-color: var(--secondary_grey);
  border-color: var(--secondary_grey);
}

.Button--PrimaryOnLight[disabled] .ButtonText {
  color: var(--primary_grey);
}

.Button--PrimaryOnDark[disabled] {
  background: var(--background_color);
  border-color: var(--background_color);
}

.Button--PrimaryOnDark:hover[disabled] .ButtonText path,
.Button--PrimaryOnDark[disabled] .ButtonText path,
.Button--PrimaryOnDark:hover[disabled] .ButtonText,
.Button--PrimaryOnDark[disabled] .ButtonText {
  color: var(--secondary_grey);
  fill: var(--secondary_grey);
}

.metafield-rich_text_field h1,
.metafield-rich_text_field h2,
.metafield-rich_text_field h3,
.metafield-rich_text_field h4,
.metafield-rich_text_field h5,
.metafield-rich_text_field h6 {
  margin-bottom: .75rem;
}


.Button--Secondary:hover[disabled] .ButtonText path,
.Button--Secondary:hover[disabled] .ButtonText,
.Button--Secondary[disabled] .ButtonText path,
.Button--Secondary[disabled] .ButtonText {
  color: var(--secondary_grey);
  fill: var(--secondary_grey);
}

.Button--Secondary:hover[disabled],
.Button--Secondary[disabled] {
  background: var(--background_color);
  border-color: var(--secondary_grey);
}


/* 1.3.9 TOOLTIP */
.info-tooltip {
  position: relative;
  cursor: help;
  display: inline-flex;
}

[data-tooltip]:before {
  position: absolute;
  content: attr(data-tooltip);
  bottom: calc(100% + 6px);
  left: 50%;
  padding: .5rem;
  background-color: var(--primary_text);
  color: var(--background_color);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility .2s ease-in-out, opacity .2s ease-in-out;
  z-index: 999;
  border-radius: 0.5rem;
  transform: translate(-50%);
  font-size: 14px;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
}

.account-voucher__content-header [data-tooltip]:before {
  width: 300px;
}


[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover:before {
  opacity: 1;
  visibility: visible;
}

.info-tooltip svg {
  width: 1rem;
  height: 1rem;
}

.info-tooltip svg path {
  stroke: var(--primary_text);
}

/* 1.3.10 PRICE AND INPUTS  */

.price__regular {
  display: flex;
  align-items: center;
}

.price__has-unit {
  display: block;
}

.atcPrice {
  margin-left: 8px;
}

/*INPUTS */

.field-wrapper {
  width: 100%;
}

.field {
  border: 1px solid var(--secondary_grey);
  border-radius: 0.25rem;
  position: relative;
  display: flex;
  align-items: center;
  height: fit-content;
}

.field:not(.textarea) input {
  height: 2.5rem;
  padding: 0 1rem;
  /* margin-bottom: 1rem; DO NOT OVERRIDE GLOBAL STYLES FOR SECTION STYLES */
}

.field:last-of-type {
  margin-bottom: 0;
}

.field.textarea {
  padding: 1rem;
}

.field .input-placeholder::placeholder,
.auth-textarea::placeholder {
  color: var(--primary_grey);
}

.pm__message-form h5,
.pm__message-form .pm__message-text {
  width: 100%;
}

.field .input-placeholder {
  display: flex;
  padding: 0;
  width: 100%;
  resize: none;
  background-color: transparent;
}

.field-label {
  position: absolute;
  top: -10px;
  left: 15px;
  padding: 0 0.12rem;
  background-color: var(--background_color);
  color: var(--primary_text);
  z-index: 2;
}

.input-placeholder {
  border: none;
}

textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill {
  background-color: var(--background_color) !important;
  color: var(--primary_text) !important;
  box-shadow: 0 0 0 30px var(--background_color) inset !important;
  /* Ensures the background color fully covers */
  -webkit-text-fill-color: var(--primary_text) !important;
  /* Ensures the text color is correct */
  transition-delay: 36000s;
}

/*Focus state*/
.field:has(.input-placeholder:focus) {
  border-color: var(--primary_text);
  /* black border */
}

.field .input-placeholder:focus {
  color: var(--primary_text);
  outline: none;
}

/*Error state*/
.field--error.variant-dropdown__select,
.field--error.field {
  border-color: var(--alert_error) !important;
}

.RevolutionSelectbox--Title{
  color: var(--primary_grey);
}

.RevolutionSelectbox:has(.RevolutionSelectbox--Item[selected]) .RevolutionSelectbox--Title {
  color: var(--primary_text);
}

.field--error .field-label {
  color: var(--alert_error);
  /* red text */
}


.input-validation {
  position: absolute;
  bottom: -13px;
  line-height: 90%;
  background-color: var(--background_color);
  z-index: 5;
  left: 0;
  width: 100%;
  text-align: left;
}

#register-email + .input-validation {
  bottom: -1rem;
}
.field--error .input-validation {
  color: var(--alert_error);
}

.field__error {
  color: var(--alert_error);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* 1.3.11 SWIPER INIT CLASS */

/* Horizontal fade for swiper-init */
swiper-init.content-fade::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/* Fade on both sides */
swiper-init.content-fade.fade-both-horizontal::before {
  background: linear-gradient(to right,
      var(--background_color) 0%,
      transparent 10%,
      transparent 90%,
      var(--background_color) 100%);
}

/* Only left */
swiper-init.content-fade.fade-left::before {
  background: linear-gradient(to right, var(--background_color) 0%, transparent 10%);
}

/* Only right */
swiper-init.content-fade.fade-right::before {
  background: linear-gradient(to right, transparent 90%, var(--background_color) 100%);
}

/* 1.3.12 DRAWERS */

.Drawer--wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  transition: all 0.35s ease-in-out;
  z-index: 21;
  visibility: hidden;
}

.Drawer--wrapper[aria-expanded="true"] {
  visibility: visible;
  transition: all 0.35s ease-in-out;
}

.Drawer--Left[aria-expanded="false"] {
  transform: translateX(-100%);
  left: 0;

}

.Drawer--Right[aria-expanded="false"] {
  right: 0;
  transform: translateX(100%);
}

.Drawer--Left[aria-expanded="true"] {
  transform: translateX(0%);
  left: 0;
  background: var(--background_color);
}

.Drawer--Right[aria-expanded="true"] {
  right: 0;
  transform: translateX(0%);
}

.Drawer--Close {
  padding: 11px;
  right: -16px;
  position: absolute;
}

.Drawer--Close svg {
  pointer-events: none;
}

/* Favorites */
.toggle-favorites[state="not-active"] .Svg--heart-line {
  display: block;
}

.toggle-favorites {
  display: flex;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--background_color_2);
  border-radius: 5.3px;
  justify-content: center;
  flex-shrink: 0;
}

.toggle-favorites .Svg--heart-line path {
  stroke: var(--primary_text);
}

.toggle-favorites .Svg--heart-solid path {
  fill: var(--primary_text);
}

.toggle-favorites[state="active"] .Svg--heart-line {
  display: none;
}

.toggle-favorites svg {
  height: 0.813rem;
  width: 0.813rem;
}

.toggle-favorites[state="not-active"] .Svg--heart-solid {
  display: none;
}


/*
======= COMPONENTS END ========
*/
/*
======= 1.4 SPACINGS START ========
*/

.mx-xxs {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-xs {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-sl {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mt-sxl {
  margin-top: 1.5rem;
}

.mb-sxl {
  margin-bottom: 1.5rem;
}

.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-sxl {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-sxxl {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-mxxl {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-xxl {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-3xl {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-4xl {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mt-xxs {
  margin-top: 0px;
}

.mr-xxs {
  margin-right: 0px;
}

.mb-xxs {
  margin-bottom: 0px;
}

.ml-xxs {
  margin-left: 0px;
}

.mt-xs {
  margin-top: 0.125rem;
}

.mr-xs {
  margin-right: 0.125rem;
}

.mb-xs {
  margin-bottom: 0.125rem;
}

.ml-xs {
  margin-left: 0.125rem;
}

.mt-s {
  margin-top: 0.25rem;
}

.mr-s {
  margin-right: 0.25rem;
}

.mb-s {
  margin-bottom: 0.25rem;
}

.ml-s {
  margin-left: 0.25rem;
}

.mt-m {
  margin-top: 0.5rem;
}

.mr-m {
  margin-right: 0.5rem;
}

.mb-m {
  margin-bottom: 0.5rem;
}

.ml-m {
  margin-left: 0.5rem;
}

.mt-sl {
  margin-top: 0.75rem;
}

.mr-sl {
  margin-right: 0.75rem;
}

.mb-sl {
  margin-bottom: 0.75rem;
}

.ml-sl {
  margin-left: 0.75rem;
}


.mt-l {
  margin-top: 1rem;
}

.mr-l {
  margin-right: 1rem;
}

.mb-l {
  margin-bottom: 1rem;
}

.ml-l {
  margin-left: 1rem;
}

.mt-sxl {
  margin-top: 1.5rem;
}

.mr-sxl {
  margin-right: 1.5rem;
}

.mb-sxl {
  margin-bottom: 1.5rem;
}

.ml-sxl {
  margin-left: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mr-xl {
  margin-right: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.ml-xl {
  margin-left: 2rem;
}

.mt-sxxl {
  margin-top: 2.5rem;
}

.mr-sxxl {
  margin-right: 2.5rem;
}

.mb-sxxl {
  margin-bottom: 2.5rem;
}

.ml-sxxl {
  margin-left: 2.5rem;
}

.mt-mxxl {
  margin-top: 3rem;
}

.mr-mxxl {
  margin-right: 3rem;
}

.mb-mxxl {
  margin-bottom: 3rem;
}

.ml-mxxl {
  margin-left: 3rem;
}


.mt-xxl {
  margin-top: 4rem;
}

.mr-xxl {
  margin-right: 4rem;
}

.mb-xxl {
  margin-bottom: 4rem;
}

.ml-xxl {
  margin-left: 4rem;
}

.mt-3xl {
  margin-top: 5rem;
}

.mr-3xl {
  margin-right: 5rem;
}

.mb-3xl {
  margin-bottom: 5rem;
}

.ml-3xl {
  margin-left: 5rem;
}

.mt-4xl {
  margin-top: 6rem;
}

.mr-4xl {
  margin-right: 6rem;
}

.mb-4xl {
  margin-bottom: 6rem;
}

.ml-4xl {
  margin-left: 6rem;
}

.mx-xxs {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-xs {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}


.mx-sl {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mt-sxl {
  margin-top: 1.5rem;
}

.mb-sxl {
  margin-bottom: 1.5rem;
}

.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-sxl {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-sxxl {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-mxxl {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-xxl {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-3xl {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-4xl {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mb-null {
  margin-bottom: 0;
}

.pt-xxs {
  padding-top: 0px;
}

.pr-xxs {
  padding-right: 0px;
}

.pb-xxs {
  padding-bottom: 0px;
}

.pl-xxs {
  padding-left: 0px;
}

.pt-xs {
  padding-top: 0.125rem;
}

.pr-xs {
  padding-right: 0.125rem;
}

.pb-xs {
  padding-bottom: 0.125rem;
}

.pl-xs {
  padding-left: 0.125rem;
}

.pt-s {
  padding-top: 0.25rem;
}

.pr-s {
  padding-right: 0.25rem;
}

.pb-s {
  padding-bottom: 0.25rem;
}

.pl-s {
  padding-left: 0.25rem;
}

.pt-m {
  padding-top: 0.5rem;
}

.pr-m {
  padding-right: 0.5rem;
}

.pb-m {
  padding-bottom: 0.5rem;
}

.pl-m {
  padding-left: 0.5rem;
}

.pt-sm {
  padding-top: 0.75rem;
}

.pr-sm {
  padding-right: 0.75rem;
}

.pb-sm {
  padding-bottom: 0.75rem;
}

.pl-sm {
  padding-left: 0.75rem;
}


.pt-l {
  padding-top: 1rem;
}

.pr-l {
  padding-right: 1rem;
}

.pb-l {
  padding-bottom: 1rem;
}

.pl-l {
  padding-left: 1rem;
}

.pt-sxl {
  padding-top: 1.5rem;
}

.pr-sxl {
  padding-right: 1.5rem;
}

.pb-sxl {
  padding-bottom: 1.5rem;
}

.pl-sxl {
  padding-left: 1.5rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pr-xl {
  padding-right: 2rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.pl-xl {
  padding-left: 2rem;
}

.pt-sxxl {
  padding-top: 2.5rem;
}

.pr-sxxl {
  padding-right: 2.5rem;
}

.pb-sxxl {
  padding-bottom: 2.5rem;
}

.pl-sxxl {
  padding-left: 2.5rem;
}

.pt-mxxl {
  padding-top: 3rem;
}

.pr-mxxl {
  padding-right: 3rem;
}

.pb-mxxl {
  padding-bottom: 3rem;
}

.pl-mxxl {
  padding-left: 3rem;
}


.pt-xxl {
  padding-top: 4rem;
}

.pr-xxl {
  padding-right: 4rem;
}

.pb-xxl {
  padding-bottom: 4rem;
}

.pl-xxl {
  padding-left: 4rem;
}

.pt-3xl {
  padding-top: 5rem;
}

.pr-3xl {
  padding-right: 5rem;
}

.pb-3xl {
  padding-bottom: 5rem;
}

.pl-3xl {
  padding-left: 5rem;
}

.pt-4xl {
  padding-top: 6rem;
}

.pr-4xl {
  padding-right: 6rem;
}

.pb-4xl {
  padding-bottom: 6rem;
}

.pl-4xl {
  padding-left: 6rem;
}

/*
======= SPACINGS END ========
*/

/* 
======= 1.5 ACCESSIBILITY ========
*/
.scrollLock {
  touch-action: none;
  overflow: hidden;
}

:focus {
  outline-color: var(--loader_color);
  outline-offset: 1px;
  outline-width: 1px;

}

input:focus+label {
  outline: 1px solid var(--loader_color);
}

body:not(.user-is-tabbing) :focus {
  outline: none;
}

.skipToContent {
  padding: 12px;
  margin: 0 auto;
  transform: translate(10%, -100%);
  position: absolute;
  transition: transform 0.3s ease;
  background: white;
  z-index: 99;

}

.skipToContent:focus {
  transform: translate(10%, 0%);
}

.hot-spot-mini,
.hot-spot {
  position: relative;
}

.hot-spot-mini::after,
.hot-spot::after {
  content: '';
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hot-spot-mini::after {
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
}

/*
======= ACCESSIBILITY END  ========
*/

/*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

.shopify-section-section-announcement_bar {
  z-index: 22;
}

.announcementBar,
.usps-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 16px;
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  overflow: hidden;
}

.announcementBar--AnimWrapper {
  display: flex;
  width: 100%;
  height: fit-content;
}

.announcementBar--DuplicateWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.announcementBar--Block {
  display: flex;
  align-self: center;
}

.announcementBar--BlockItem {
  display: flex;
  align-items: center;
}

.announcementBar--BlockIcon {
  display: flex;
  align-self: center;
  max-width: 24px;
  min-width: 18px;

}

.announcementBar--BlockIcon img {
  object-fit: contain;
  width: 100%;
  height: 16px;
}

.announcementBar--Border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.component-countDown {
  min-width: 55px;
  position: relative;
  display: inline-flex;
  justify-content: center;
}

/*
=====================================
        ANNOUNCEMENT BAR END
=====================================
*/

/*
=====================================
          3. HEADER
=====================================
*/

.escalation-support[aria-expanded="false"] {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.header-link-item {
  cursor: pointer;
}

.Header--Bg,
#header:hover {
  background-color: var(--background_color);
  color: var(--primary_text);
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid var(--tertiary_grey);
}

.header-logo-wrapper {
  width: fit-content;
  ;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
}

.header-logo-wrapper.not_mobile {
  flex: 1;
  justify-content: start;
}

.header {
  width: 100%;
  padding: 0.719rem 1rem;
  align-items: center;
  z-index: 5;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}



.header--Wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header-link-list {
  display: flex;
  list-style-type: none;
  align-items: center;
  gap: 1.5rem;
}

.header-hamburger-btn,
.header-search-btn,
.header-acc-btn,
.header-cart-btn,
.market-btn__desktop,
.fav-icon__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-hamburger-btn::after,
.header-search-btn::after,
.header-acc-btn::after,
.header-cart-btn::after,
.market-btn__desktop::after,
.fav-icon__wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
}

.header-hamburger-icon{
  display: flex;
}

header-links__wrapper {
  align-items: center;
  display: flex;
  justify-content: right;
  height: inherit;
  cursor: pointer;
}

header-links__wrapper svg {
  width: 20px;
  height: 20px;
}

header-links__wrapper a {
  display: flex;
}

.header--LogoWrapper img {
  object-fit: contain;
}

.header--LogoWrapper a {
  display: flex;
}


.header-main-links {
  color: var(--primary_text);
}

.hoverLinks {
  position: relative;
  width: fit-content;
}



.header-link-desk[aria-expanded="true"] a,
.header-link-desk:hover a {
  color: var(--tertiary_grey)
}


.CartCount {
  margin-left: 4px;
}

/*
=====================================
          HEADER END
=====================================
*/


@media screen and (min-width: 768px) {
  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/


  .flex {
    display: flex;
    align-items: center;
  }

  /*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar,
  .usps-bar {
    padding: 8px 16px;
  }

  /*
=====================================
        ANNOUNCEMENT BAR END
=====================================
*/

}



.Button.Button--half{
  flex:1;
}

.header__bottom-bar[aria-hidden="true"] {
  display: flex !important;
}

@media screen and (min-width: 1025px) {
 .header__bottom-bar[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.header__bottom-bar[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.Button.Button--half{
  min-width: 318px;
  flex:unset;
}

  .market-btn__desktop{
    display: flex;
  }
.header--Links .Svg--language{
  width: 20px;
}  .field:not(.textarea) input {
    height: 2.625rem;
  }



  /*VIDEO CONTROLS DESK*/

  .section-video__controls {
    padding: 3rem;
  }

  .section-video__controls-desk {
    padding: 3rem;
  }

  .section-video__controls-desk--default {
    top: 0;
    right: 0;
  }

  .section-video__controls-desk--bottom-left,
  .section-video__controls-desk--top-left {
    left: 0;
  }

  .section-video__controls-desk--bottom-right,
  .section-video__controls-desk--top-right {
    right: 0;
  }

  .section-video__controls-desk--bottom-center,
  .section-video__controls-desk--top-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-video__controls-desk--top-right,
  .section-video__controls-desk--top-left,
  .section-video__controls-desk--top-center {
    top: 0;
  }

  .section-video__controls-desk--bottom-right,
  .section-video__controls-desk--bottom-left,
  .section-video__controls-desk--bottom-center {
    bottom: 0;
  }

  /*VIDEO CONTROLS DESK END*/

  /* fonts desktop */
  .rte h1,
  .rte.u-h1 h1,
.rte.u-h1 h2,
.rte.u-h1 h3,
.rte.u-h1 h4,
.rte.u-h1 h5,
.rte.u-h1 h6,
  .u-h1,
  .u-h1 p,
  .rte.u-h1 strong,
  .rte.u-h1 em,
  .rte.u-h1 time,
  .rte.u-h1 a {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  .rte h2,
  .rte.u-h2 h1,
  .rte.u-h2 h2,
  .rte.u-h2 h3,
  .rte.u-h2 h4,
  .rte.u-h2 h5,
  .rte.u-h2 h6,
  .u-h2,
  .rte.u-h2>p,
  .rte.u-h2 strong,
  .rte.u-h2 em,
  .rte.u-h2 time,
  .rte.u-h2 a {
    font-size: 2.375rem;
    line-height: 3.25rem;
    /* 126.316% */

  }




  /* fonts desktop end */
  /*  BUTTONS DESKTOP*/
  .Button--PrimaryOnLight:has(.itemLoader.is-visible),
  .Button--PrimaryOnLight:hover {
    background-color: var(--btn_primary_on_light_bg_hover);
    border-color: var(--btn_primary_on_light_border_hover);
  }

  .Button--PrimaryOnLight:has(.itemLoader.is-visible) .ButtonText,
  .Button--PrimaryOnLight:hover .ButtonText {
    color: var(--btn_primary_on_light_txt_hover);
  }

  .Button--PrimaryOnLight:has(.itemLoader.is-visible) .ButtonText svg path,
  .Button--PrimaryOnLight:hover .ButtonText svg path {
    fill: var(--btn_primary_on_light_txt_hover);
  }

  .Button--PrimaryOnDark:has(.itemLoader.is-visible),
  .Button--PrimaryOnDark:hover {
    background-color: var(--btn_primary_on_dark_bg_hover);
    border-color: var(--btn_primary_on_dark_border_hover);
  }

  .Button--PrimaryOnDark:has(.itemLoader.is-visible) .ButtonText,
  .Button--PrimaryOnDark:hover .ButtonText {
    color: var(--btn_primary_on_dark_txt_hover);
  }

  .Button--PrimaryOnDark:has(.itemLoader.is-visible) .ButtonText svg path,
  .Button--PrimaryOnDark:hover .ButtonText svg path {
    fill: var(--btn_primary_on_dark_txt_hover);
  }

  .Button--Secondary:has(.itemLoader.is-visible),
  .Button--Secondary:hover {
    border-color: var(--primary_text);
  }

  .Button--Tertiary:hover span::after {
    background: var(--primary_grey);
  }

  .Button--Tertiary:hover .ButtonText {
    color: var(--primary_grey);
  }

  body {
    font-size: 1rem;
  }

  .standardSection {
    padding: 128px 64px;
  }



  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  /* 1.1.3 IMAGES / ASPECT RATIO */

  .zoomImg {
    overflow: hidden;
  }

  .zoomImg img {
    transition: transform 0.8s ease-in-out;
  }

  .zoomImg:hover img {
    transform: scale(1.15);
    transition: transform 0.8s ease-in-out;
  }

  .ImageSize--Small {
    max-height: 300px;
  }

  .ImageSize--Default {
    max-height: 400px;
  }

  .ImageSize--Large {
    height: 500px;
  }



  /*
======= 1.3 COMPONENTS START ========
*/

  /* 1.3.7 BUTTONS */


  /* 1.3.12 DRAWERS */


  .Drawer--wrapper {
    width: 30%;
  }



  /*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar,
  .usps-bar {
    padding: 8px 32px;
  }

  .announcementBar--BlockIcon img {
    height: 20px;
  }

  /*
=====================================
    ANNOUNCEMENT BAR END
=====================================
*/
  /*
=====================================
        3. HEADER
=====================================
*/

  .header {
    padding: 0.375rem 1.5rem;
  }

  .header-links__wrapper {
    flex: 1;
  }

  .header-link-list.set-right {
    justify-content: end;
  }




  @keyframes opacityIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes opacityOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }


  .CartCount {
    margin-left: 0px;
  }

  /*
=====================================
        HEADER END
=====================================
*/

}

@media screen and (min-width: 1440px) {

  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  /* 1.1.3 IMAGES / ASPECT RATIO */

  .ImageSize--Small {
    max-height: 450px;
  }

  .ImageSize--Default {
    max-height: 600px;
  }

  .ImageSize--Large {
    height: 750px;
  }


  /*
=====================================
  2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar,
  .usps-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 32px;
  }




}

@media screen and (min-width: 1920px) {

  .standardSection {
    padding: 128px;
  }

  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  /* 1.1.3 IMAGES / ASPECT RATIO */

  .ImageSize--Small {
    max-height: 600px;
  }

  .ImageSize--Default {
    max-height: 800px;
  }

  .ImageSize--Large {
    height: 1000px;
  }

  /*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar--BlockIcon img {
    height: 24px;
  }

  .announcementBar,
  .usps-bar {
    padding: 8px 64px;
  }

  /*
=====================================
      ANNOUNCEMENT BAR END
=====================================
*/

}

/*
=====================================
        COOKIE POPUP 
=====================================
*/


#shopify-pc__banner__dialog {
  padding: 1rem;
}

#shopify-pc__banner__body-title {
  font-family: var(--type_heading_font);
  font-size: 1.125rem;
  font-weight: var(--weight_heading_font);
  line-height: 1.5rem;
  margin: 0 0 0.75rem 0;
}

#shopify-pc__banner .shopify-pc__banner__body {
  margin: 0;
}

#shopify-pc__banner .shopify-pc__banner__body>p {
  font-family: var(--type_primary_paragraph_font);
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--weight_paragraph_font);
  line-height: 1.375rem;
}


.shopify-pc__banner__btns {
  font-family: var(--type_primary_paragraph_font);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: var(--weight_paragraph_font);
  line-height: 18px;
  color: var(--text_primary);
}

.shopify-pc__banner__btns.shopify-pc__banner__btns-granular {
  gap: 0.5rem;
}

.shopify-pc__banner__btns.shopify-pc__banner__btns-granular .shopify-pc__banner__dialog button {
  margin: 0;

}

#shopify-pc__banner__btn-accept {
  width: 100%;
  background: var(--secondary_accent);
  border-radius: 0.25rem;
  border: 1px solid var(--primary_grey);
  margin: 1rem 0 0 0;
  font-family: var(--type_button_font);
  font-weight: 500;
  line-height: 1.125rem;
}

#shopify-pc__prefs__header-accept{
  background: var(--secondary_accent);
   border-radius: 0.25rem;
  border: 1px solid var(--primary_grey);
}
#shopify-pc__prefs__header-save{
   background: var(--primary_text);
   border-radius: 0.25rem;
    border: 1px solid var(--primary_grey);
    color: var(--secondary_text);
}

#shopify-pc__prefs__header-decline{
   border-radius: 0.25rem;
}
.shopify-pc__banner__btns .shopify-pc__banner__btn-decline {
  width: 100%;
  margin-top: 0;
  border-radius: 4px;
  border: 1px solid var(--primary_grey);
  font-family: var(--type_button_font);
  font-weight: 500;
  line-height: 1.125rem;
}

#shopify-pc__banner__btn-manage-prefs {
  margin: 0.5rem 0 0 0;
  order: 3;
}

.shopify-pc__banner__dialog button.shopify-pc__banner__btn-manage-prefs span {
  font-family: var(--type_primary_paragraph_font);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: var(--weight_paragraph_font);
  line-height: 1.125rem;
}


@media only screen and (min-width: 1025px) {
  #shopify-pc__prefs__header-accept,
#shopify-pc__prefs__header-decline,
#shopify-pc__prefs__header-save{
  margin-right: 0.5rem;
}
  #shopify-pc__banner {
    padding: 1rem 2rem;
  }

  #shopify-pc__banner .shopify-pc__banner__wrapper {
    flex-direction: row;
  }

  #shopify-pc__banner__body-title {
    margin: 0 0 1rem 0;
  }

  #shopify-pc__banner__btn-decline {
    margin: 0;
  }

  #shopify-pc__banner__btn-accept,
  #shopify-pc__banner__btn-decline {
    height: 3rem;
    padding: 0 1.5rem;
    flex: 1 0 0;
  }


  #shopify-pc__banner__btn-accept {
    margin-top: 0;
  }

  #shopify-pc__banner__btn-manage-prefs {
    margin: 0;
    padding-left: 0.5rem;
  }

  .shopify-pc__banner__wrapper .shopify-pc__banner__btns {
    justify-content: flex-end;
    max-width: 406px;
    min-width: unset !important;
    width: 100%;
  }

  .shopify-pc__banner__btn-manage-prefs span {
    white-space: nowrap;
  }

  .shopify-pc__banner__dialog button {
    flex-basis: 0 !important;
  }

  .shopify-pc__banner__body {
    max-width: 600px;
  }

}


@media only screen and (min-width:481px) and (max-width:1024px) {
  #shopify-pc__banner__btn-decline {
    width: 100%;
    border-radius: .25rem;
    border: 1px solid var(--primary_grey);
    margin: 1rem 0 0;
    font-family: var(--type_button_font);
    font-weight: 500;
    line-height: 1.125rem;
  }
}


/*
=====================================
        COOKIE POPUP END
=====================================
*/

/* SHOPIFY OVERRIDES */

.shopify-challenge__container .shopify-challenge__button {
  width: 60%;
  border: none !important;
  border: 1px solid var(--button_primary_border);
  box-sizing: border-box;
  background-color: var(--button_primary_bg);
  color: var(--button_primary_text);
  cursor: pointer;
  padding: 10px 40px;
  font-size: 1.125rem;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
}

.shopify-challenge__container {
  padding: 64px 0px;
  font-size: 1.125rem;
  font-family: var(--type_primary_paragraph_font);
  font-weight: var(--weight_paragraph_font);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shopify-challenge__message {
  margin-bottom: 16px;
}

.shopify-payment-button__button {
  font-size: 1rem;
}

.shopify-payment-button__button--unbranded {
  background-color: var(--loader_color) !important;
  color: var(--primary_text);
}

/* SHOPIFY OVERRIDES END */

/* Toast Notifications CSS */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  pointer-events: none;
  max-width: 400px;
  width: 100%;
}

.toast {
  background: var(--background_color);
  border: 1px solid var(--border_color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
  position: relative;
  max-width: 100%;
  word-wrap: break-word;
}

.toast--show {
  opacity: 1;
  transform: translateX(0);
}

.toast--hide {
  opacity: 0;
  transform: translateX(100%);
}

/* Toast Content */
.toast__content {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: var(--primary_text);
}

/* Close Button */
.toast__close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--primary_text);
  opacity: 0.6;
  transition: opacity 0.2s ease;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast__close:hover {
  opacity: 1;
}

/* Toast Types */
.toast--success {
  border-left: 4px solid #10b981;
  background: var(--background_color);
}

.toast--success .toast__close,
.toast--success .toast__content {
  color: #10b981;
}

.toast--error {
  border-left: 4px solid #ef4444;
  background: var(--background_color);
}

.toast--error .toast__close,
.toast--error .toast__content {
  color: #ef4444;
}

.toast--warning {
  border-left: 4px solid #f59e0b;
  background: var(--background_color);
}

.toast--warning .toast__close,
.toast--warning .toast__content {
  color: #f59e0b;
}

.toast--info {
  border-left: 4px solid #3b82f6;
  background: var(--background_color);
}

.toast--info .toast__close,
.toast--info .toast__content {
  color: #3b82f6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .toast {
    margin-bottom: 8px;
    padding: 12px;
  }

  .toast__content {
    font-size: 13px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .toast--success {
    border-left: 4px solid #10b981;
    background: var(--background_color);
  }

  .toast--success .toast__close,
  .toast--success .toast__content {
    color: #10b981;
  }

  .toast--error {
    border-left: 4px solid #ef4444;
    background: var(--background_color);
  }

  .toast--error .toast__close,
  .toast--error .toast__content {
    color: #ef4444;
  }

  .toast--warning {
    border-left: 4px solid #f59e0b;
    background: var(--background_color);
  }

  .toast--warning .toast__close,
  .toast--warning .toast__content {
    color: #f59e0b;
  }

  .toast--info {
    border-left: 4px solid #3b82f6;
    background: var(--background_color);
  }

  .toast--info .toast__close,
  .toast--info .toast__content {
    color: #3b82f6;
  }
}
