/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.flex {
  display: flex;
}
.flex.f-inline {
  display: inline-flex;
}
@media (min-width: 961px) {
  .flex.f-inline--desktop {
    display: inline-flex;
  }
}
@media (max-width: 960px) {
  .flex.f-inline--tablet {
    display: inline-flex;
  }
}
.flex.f-d-column {
  flex-direction: column;
}
@media (min-width: 961px) {
  .flex.f-d-column--desktop {
    flex-direction: column;
  }
}
@media (max-width: 960px) {
  .flex.f-d-column--tablet {
    flex-direction: column;
  }
}
.flex.f-wrap {
  flex-wrap: wrap;
}
@media (min-width: 961px) {
  .flex.f-wrap--desktop {
    flex-wrap: wrap;
  }
}
@media (max-width: 960px) {
  .flex.f-wrap--tablet {
    flex-wrap: wrap;
  }
}
.flex.f-j-start {
  justify-content: flex-start;
}
@media (min-width: 961px) {
  .flex.f-j-start--desktop {
    justify-content: flex-start;
  }
}
@media (max-width: 960px) {
  .flex.f-j-start--tablet {
    justify-content: flex-start;
  }
}
.flex.f-j-center {
  justify-content: center;
}
@media (min-width: 961px) {
  .flex.f-j-center--desktop {
    justify-content: center;
  }
}
@media (max-width: 960px) {
  .flex.f-j-center--tablet {
    justify-content: center;
  }
}
.flex.f-j-end {
  justify-content: flex-end;
}
@media (min-width: 961px) {
  .flex.f-j-end--desktop {
    justify-content: flex-end;
  }
}
@media (max-width: 960px) {
  .flex.f-j-end--tablet {
    justify-content: flex-end;
  }
}
.flex.f-j-between {
  justify-content: space-between;
}
@media (min-width: 961px) {
  .flex.f-j-between--desktop {
    justify-content: space-between;
  }
}
@media (max-width: 960px) {
  .flex.f-j-between--tablet {
    justify-content: space-between;
  }
}
.flex.f-j-around {
  justify-content: space-around;
}
@media (min-width: 961px) {
  .flex.f-j-around--desktop {
    justify-content: space-around;
  }
}
@media (max-width: 960px) {
  .flex.f-j-around--tablet {
    justify-content: space-around;
  }
}
.flex.f-a-start {
  align-items: flex-start;
}
@media (min-width: 961px) {
  .flex.f-a-start--desktop {
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .flex.f-a-start--tablet {
    align-items: flex-start;
  }
}
.flex.f-a-center {
  align-items: center;
}
@media (min-width: 961px) {
  .flex.f-a-center--desktop {
    align-items: center;
  }
}
@media (max-width: 960px) {
  .flex.f-a-center--tablet {
    align-items: center;
  }
}
.flex.f-a-end {
  align-items: flex-end;
}
@media (min-width: 961px) {
  .flex.f-a-end--desktop {
    align-items: flex-end;
  }
}
@media (max-width: 960px) {
  .flex.f-a-end--tablet {
    align-items: flex-end;
  }
}
.flex.f-grow {
  flex-grow: 1;
}
@media (min-width: 961px) {
  .flex.f-grow--desktop {
    flex-grow: 1;
  }
}
@media (max-width: 960px) {
  .flex.f-grow--tablet {
    flex-grow: 1;
  }
}
.flex[class*=f-grid--] {
  flex-wrap: wrap;
}
.flex.f-grid {
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}
.flex.f-grid > * {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 961px) {
  .flex.f-grid--desktop {
    margin-left: -16px;
    margin-right: -16px;
  }
  .flex.f-grid--desktop > * {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--tablet {
    margin-left: -16px;
    margin-right: -16px;
  }
  .flex.f-grid--tablet > * {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.flex.f-grid--xxs {
  margin-left: -2px;
  margin-right: -2px;
}
.flex.f-grid--xxs > * {
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 961px) {
  .flex.f-grid--xxs--desktop {
    margin-left: -2px;
    margin-right: -2px;
  }
  .flex.f-grid--xxs--desktop > * {
    padding-left: 2px;
    padding-right: 2px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--xxs--tablet {
    margin-left: -2px;
    margin-right: -2px;
  }
  .flex.f-grid--xxs--tablet > * {
    padding-left: 2px;
    padding-right: 2px;
  }
}
.flex.f-grid--xs {
  margin-left: -4px;
  margin-right: -4px;
}
.flex.f-grid--xs > * {
  padding-left: 4px;
  padding-right: 4px;
}
@media (min-width: 961px) {
  .flex.f-grid--xs--desktop {
    margin-left: -4px;
    margin-right: -4px;
  }
  .flex.f-grid--xs--desktop > * {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--xs--tablet {
    margin-left: -4px;
    margin-right: -4px;
  }
  .flex.f-grid--xs--tablet > * {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.flex.f-grid--s {
  margin-left: -8px;
  margin-right: -8px;
}
.flex.f-grid--s > * {
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 961px) {
  .flex.f-grid--s--desktop {
    margin-left: -8px;
    margin-right: -8px;
  }
  .flex.f-grid--s--desktop > * {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--s--tablet {
    margin-left: -8px;
    margin-right: -8px;
  }
  .flex.f-grid--s--tablet > * {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.flex.f-grid--m {
  margin-left: -12px;
  margin-right: -12px;
}
.flex.f-grid--m > * {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 961px) {
  .flex.f-grid--m--desktop {
    margin-left: -12px;
    margin-right: -12px;
  }
  .flex.f-grid--m--desktop > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--m--tablet {
    margin-left: -12px;
    margin-right: -12px;
  }
  .flex.f-grid--m--tablet > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.flex.f-grid--l {
  margin-left: -24px;
  margin-right: -24px;
}
.flex.f-grid--l > * {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 961px) {
  .flex.f-grid--l--desktop {
    margin-left: -24px;
    margin-right: -24px;
  }
  .flex.f-grid--l--desktop > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--l--tablet {
    margin-left: -24px;
    margin-right: -24px;
  }
  .flex.f-grid--l--tablet > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.flex.f-grid--xl {
  margin-left: -40px;
  margin-right: -40px;
}
.flex.f-grid--xl > * {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 961px) {
  .flex.f-grid--xl--desktop {
    margin-left: -40px;
    margin-right: -40px;
  }
  .flex.f-grid--xl--desktop > * {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--xl--tablet {
    margin-left: -40px;
    margin-right: -40px;
  }
  .flex.f-grid--xl--tablet > * {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.flex.f-grid--xxl {
  margin-left: -54px;
  margin-right: -54px;
}
.flex.f-grid--xxl > * {
  padding-left: 54px;
  padding-right: 54px;
}
@media (min-width: 961px) {
  .flex.f-grid--xxl--desktop {
    margin-left: -54px;
    margin-right: -54px;
  }
  .flex.f-grid--xxl--desktop > * {
    padding-left: 54px;
    padding-right: 54px;
  }
}
@media (max-width: 960px) {
  .flex.f-grid--xxl--tablet {
    margin-left: -54px;
    margin-right: -54px;
  }
  .flex.f-grid--xxl--tablet > * {
    padding-left: 54px;
    padding-right: 54px;
  }
}

.custom-positioning {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}
.custom-positioning.position--top-left {
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 961px) {
  .custom-positioning.position--top-left--desktop {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--top-left--tablet {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.custom-positioning.position--top-middle {
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 961px) {
  .custom-positioning.position--top-middle--desktop {
    justify-content: center;
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--top-middle--tablet {
    justify-content: center;
    align-items: flex-start;
  }
}
.custom-positioning.position--top-right {
  justify-content: flex-end;
  align-items: flex-start;
}
@media (min-width: 961px) {
  .custom-positioning.position--top-right--desktop {
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--top-right--tablet {
    justify-content: flex-end;
    align-items: flex-start;
  }
}
.custom-positioning.position--middle-left {
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 961px) {
  .custom-positioning.position--middle-left--desktop {
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--middle-left--tablet {
    justify-content: flex-start;
    align-items: center;
  }
}
.custom-positioning.position--middle-middle {
  justify-content: center;
  align-items: center;
}
@media (min-width: 961px) {
  .custom-positioning.position--middle-middle--desktop {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--middle-middle--tablet {
    justify-content: center;
    align-items: center;
  }
}
.custom-positioning.position--middle-right {
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 961px) {
  .custom-positioning.position--middle-right--desktop {
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--middle-right--tablet {
    justify-content: flex-end;
    align-items: center;
  }
}
.custom-positioning.position--bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}
@media (min-width: 961px) {
  .custom-positioning.position--bottom-left--desktop {
    justify-content: flex-start;
    align-items: flex-end;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--bottom-left--tablet {
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.custom-positioning.position--bottom-middle {
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 961px) {
  .custom-positioning.position--bottom-middle--desktop {
    justify-content: center;
    align-items: flex-end;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--bottom-middle--tablet {
    justify-content: center;
    align-items: flex-end;
  }
}
.custom-positioning.position--bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 961px) {
  .custom-positioning.position--bottom-right--desktop {
    justify-content: flex-end;
    align-items: flex-end;
  }
}
@media (max-width: 960px) {
  .custom-positioning.position--bottom-right--tablet {
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.hide {
  display: none;
}

[class*=object-fit--] {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  display: block;
  line-height: 0;
}
[class*=object-fit--] > img, [class*=object-fit--] > video, [class*=object-fit--] picture img, [class*=object-fit--] > .video-container, [class*=object-fit--] > .video-container video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.object-fit--small {
  padding-bottom: 25%;
}
@media (min-width: 961px) {
  .object-fit--small--desktop {
    padding-bottom: 25%;
  }
}
@media (max-width: 960px) {
  .object-fit--small--tablet {
    padding-bottom: 25%;
  }
}
.object-fit--medium {
  padding-bottom: 50%;
}
@media (min-width: 961px) {
  .object-fit--medium--desktop {
    padding-bottom: 50%;
  }
}
@media (max-width: 960px) {
  .object-fit--medium--tablet {
    padding-bottom: 50%;
  }
}
.object-fit--large {
  padding-bottom: 75%;
}
@media (min-width: 961px) {
  .object-fit--large--desktop {
    padding-bottom: 75%;
  }
}
@media (max-width: 960px) {
  .object-fit--large--tablet {
    padding-bottom: 75%;
  }
}
.object-fit--square {
  padding-bottom: 100%;
}
@media (min-width: 961px) {
  .object-fit--square--desktop {
    padding-bottom: 100%;
  }
}
@media (max-width: 960px) {
  .object-fit--square--tablet {
    padding-bottom: 100%;
  }
}
.object-fit--cover > img, .object-fit--cover > video, .object-fit--cover picture img, .object-fit--cover > .video-container video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
@media (min-width: 961px) {
  .object-fit--cover--desktop > img, .object-fit--cover--desktop > video, .object-fit--cover--desktop picture img, .object-fit--cover--desktop > .video-container video {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover; object-position: center;";
  }
}
@media (max-width: 960px) {
  .object-fit--cover--tablet > img, .object-fit--cover--tablet > video, .object-fit--cover--tablet picture img, .object-fit--cover--tablet > .video-container video {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover; object-position: center;";
  }
}
.object-fit--contain > img, .object-fit--contain > video, .object-fit--contain picture img, .object-fit--contain > .video-container video {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: contain; object-position: center;";
}
@media (min-width: 961px) {
  .object-fit--contain--desktop > img, .object-fit--contain--desktop > video, .object-fit--contain--desktop picture img, .object-fit--contain--desktop > .video-container video {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: contain; object-position: center;";
  }
}
@media (max-width: 960px) {
  .object-fit--contain--tablet > img, .object-fit--contain--tablet > video, .object-fit--contain--tablet picture img, .object-fit--contain--tablet > .video-container video {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: contain; object-position: center;";
  }
}
.object-fit--contain.position--bottom > img, .object-fit--contain.position--bottom > video, .object-fit--contain.position--bottom picture img, .object-fit--contain.position--bottom > .video-container video {
  -o-object-position: bottom;
     object-position: bottom;
  font-family: "object-fit: contain; object-position: bottom;";
}
@media (min-width: 961px) {
  .object-fit--contain.position--bottom--desktop > img, .object-fit--contain.position--bottom--desktop > video, .object-fit--contain.position--bottom--desktop picture img, .object-fit--contain.position--bottom--desktop > .video-container video {
    -o-object-position: bottom;
       object-position: bottom;
    font-family: "object-fit: contain; object-position: bottom;";
  }
}
@media (max-width: 960px) {
  .object-fit--contain.position--bottom--tablet > img, .object-fit--contain.position--bottom--tablet > video, .object-fit--contain.position--bottom--tablet picture img, .object-fit--contain.position--bottom--tablet > .video-container video {
    -o-object-position: bottom;
       object-position: bottom;
    font-family: "object-fit: contain; object-position: bottom;";
  }
}

.fnt--primary {
  font-family: "OpenSauceSans", Arial, sans-serif;
}

.fnt--secondary {
  font-family: "OpenSauceSans Regular", Arial, sans-serif;
}

@media (max-width: 960px) {
  .desktop-only {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .big-desktop-only {
    display: none;
  }
}

@media (min-width: 1025px) {
  .small-desktop-only {
    display: none;
  }
}

@media (min-width: 961px) {
  .tablet-only {
    display: none !important;
  }
}

@media (min-width: 481px) {
  .mobile-only {
    display: none !important;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.keen-slider--wrapper {
  overflow: hidden;
}

.custom-slide-nav {
  position: relative;
  display: inline-flex;
}
.custom-slide-nav .slide-counts {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 40px;
  font-size: 12px;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 960px) {
  .custom-slide-nav .slide-counts {
    padding: 0 30px;
  }
}
.custom-slide-nav .keen-nav {
  display: flex;
}
.custom-slide-nav .keen-nav li {
  margin: 0;
  line-height: 0;
}
.custom-slide-nav .keen-nav li:last-child {
  margin-left: 50px;
}
@media (max-width: 960px) {
  .custom-slide-nav .keen-nav li:last-child {
    margin-left: 30px;
  }
}
.custom-slide-nav .keen-nav li .keen-arrow-prev {
  transform: rotate(180deg);
}
.custom-slide-nav .keen-nav li button[disabled] {
  display: none;
}
.custom-slide-nav .keen-nav svg {
  width: 33px;
  height: 33px;
}
@media (max-width: 960px) {
  .custom-slide-nav .keen-nav svg {
    width: 23px;
    height: 23px;
  }
}

.keen-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  flex-wrap: nowrap !important;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.keen-slider li:not(.flex) {
  display: block;
}
.keen-slider:not(.keen-slider--ready) {
  opacity: 0;
  visibility: hidden;
}
.keen-slider.keen--adaptive-height {
  align-items: flex-start;
  transition: height 0.15s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.keen-slider.keen--adaptive-height .keen-slider__slide {
  min-height: 0;
}
.keen-slider__slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}
.keen-slider[data-keen-slider-v] {
  flex-wrap: wrap;
}
.keen-slider[data-keen-slider-v] .keen-slider__slide {
  width: 100%;
}
.keen-slider[data-keen-slider-moves] * {
  pointer-events: none;
}
.keen-slider.fade-slider {
  transition: height 0.25s;
}
.keen-slider.fade-slider .fader-slide {
  transform: none !important;
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.keen-slider.fade-slider .fader-slide:not(.active) {
  pointer-events: none;
}

.keen-arrow {
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
  position: relative;
}
.keen-arrow[disabled] {
  opacity: 0;
  visibility: hidden;
}
.keen-arrow.keen-arrow-prev {
  transform: rotate(180deg);
}

.keen-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.keen-dots li {
  margin: 0 4px;
}
.keen-dots li button {
  display: block;
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 50%;
  padding: 0;
  transition: opacity 0.35s ease;
  border: 1px solid currentColor;
}
.keen-dots li button:not(.active) {
  background: transparent;
}

.keen-nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 960px) {
  .keen-nav-group {
    justify-content: space-between;
  }
}
.keen-nav-group .keen-dots {
  margin: 0 40px;
  display: inline-flex;
  width: auto;
  position: static;
}

.keen-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .keen-nav {
    padding: 0 25px;
  }
}
.keen-nav li {
  padding: 0;
  line-height: 0;
}

.keen-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.keen-nav li {
  z-index: 999;
}
.keen-nav li .keen-arrow {
  background-color: #fff;
  border-radius: 100%;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}
.keen-nav li .keen-arrow:disabled {
  opacity: 0.65;
}
.keen-nav li .keen-arrow:disabled svg {
  opacity: 0.32;
}
.keen-nav li .keen-arrow:hover {
  opacity: 0.8;
}

.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 12px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: initial;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #fff;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border-color: transparent;
  background: transparent;
  color: transparent;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid var(--color-border);
  background-color: #ffffff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #363636;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one] .choices__inner:after {
  content: "";
  height: 24px;
  width: 24px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  right: 0;
  transform: rotate(90deg);
  pointer-events: none;
  transition: transform 0.35s ease;
}
.choices[data-type*=select-one].is-open .choices__inner:after {
  transform: rotate(-90deg);
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #363636;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  width: 100%;
  background-color: #fff;
  padding: 16px 40px 16px 16px;
  border: 1px solid var(--color-border);
  border-radius: 0px;
  font-size: 12px;
  overflow: hidden;
  transition: border-color 0.35s ease;
  position: relative;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: var(--color-border);
}
.is-open .choices__inner {
  border-radius: 0px 0px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 0px 0px;
}

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

.choices__list--single {
  display: inline-block;
  padding: 0;
  width: 100%;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 0px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #363636;
  border: 1px solid #363636;
  color: #ffffff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #363636;
  border: 1px solid #363636;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #eaeaea;
  border: 1px solid #eaeaea;
}

.choices__list--dropdown {
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.choices__list--dropdown.is-active {
  visibility: visible;
  opacity: 1;
}
.is-open .choices__list--dropdown {
  border-color: var(--color-border);
}
.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
  position: relative;
  padding: 16px;
  font-size: 12px;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid var(--color-border);
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #fff;
  font-size: 12px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}

.choices__placeholder {
  color: #363636;
}
.choices__list--dropdown .choices__placeholder {
  display: none !important;
}

p,
a {
  font-size: 14px;
  letter-spacing: 0px;
}
@media (max-width: 425px) {
  p,
  a {
    font-size: 14px;
  }
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  color: var(--text-primary-color);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
}
body.fixed {
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
h1,
h2,
h3,
h4,
h5,
.heading-sm,
.heading-md,
.heading-lg {
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-heading), sans-serif;
  word-break: initial;
  margin: 0;
}

@media only screen and (max-width: 575.98px) {
  .heading-lg {
    font-size: var(--heading-lg-mobile);
  }
  .heading-lg em,
  .heading-lg strong,
  .heading-lg i,
  .heading-lg b {
    font-size: var(--heading-lg-mobile);
  }
}
@media only screen and (min-width: 576px) {
  .heading-lg {
    font-size: var(--heading-lg-tablet);
  }
  .heading-lg em,
  .heading-lg strong,
  .heading-lg i,
  .heading-lg b {
    font-size: var(--heading-lg-tablet);
  }
}
@media only screen and (min-width: 1200px) {
  .heading-lg {
    font-size: var(--heading-lg);
  }
  .heading-lg em,
  .heading-lg strong,
  .heading-lg i,
  .heading-lg b {
    font-size: var(--heading-lg);
  }
}
@media only screen and (min-width: 768px) {
  .heading-md {
    font-size: var(--heading-md-tablet);
  }
}
@media only screen and (max-width: 575.98px) {
  .heading-md {
    font-size: var(--heading-md-mobile);
  }
}
.heading-sm {
  font-size: var(--heading-sm);
}

strong {
  font-weight: bold;
}

.rich-text-container.heading-lg p,
.rich-text-container.heading-lg strong,
.rich-text-container.heading-lg em,
.rich-text-container.heading-lg a {
  font-size: var(--heading-lg);
}
.rich-text-container.heading-md p,
.rich-text-container.heading-md strong,
.rich-text-container.heading-md em,
.rich-text-container.heading-md a {
  font-size: var(--heading-md);
}
.rich-text-container.heading-sm p,
.rich-text-container.heading-sm strong,
.rich-text-container.heading-sm em,
.rich-text-container.heading-sm a {
  font-size: var(--heading-sm);
}

@media only screen and (max-width: 767.98px) {
  .rich-text-container.heading-lg p,
  .rich-text-container.heading-lg strong,
  .rich-text-container.heading-lg em,
  .rich-text-container.heading-lg a {
    font-size: var(--heading-md-tablet);
  }
  .rich-text-container.heading-md p,
  .rich-text-container.heading-md strong,
  .rich-text-container.heading-md em,
  .rich-text-container.heading-md a {
    font-size: var(--heading-md-tablet);
  }
}
@media only screen and (max-width: 575.98px) {
  .rich-text-container.heading-lg p,
  .rich-text-container.heading-lg strong,
  .rich-text-container.heading-lg em,
  .rich-text-container.heading-lg a {
    font-size: var(--heading-lg-mobile);
  }
  .rich-text-container.heading-md p,
  .rich-text-container.heading-md strong,
  .rich-text-container.heading-md em,
  .rich-text-container.heading-md a {
    font-size: var(--heading-md-mobile);
  }
}
.button {
  background: var(--primary-color);
  color: var(--button-1-text-color);
  border-radius: var(--button-1-radius);
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: none;
  line-height: 1.15;
}
.button, .button * {
  font-size: var(--button-font-size);
}
.button:hover {
  background-color: var(--button-1-hover-color);
  color: var(--button-1-hover-text-color);
  border-radius: var(--button-1-hover-radius);
}

button,
input:not(.custom-filter .filter-body input[type=checkbox]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.button-1 {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-1-color);
  color: var(--button-1-text-color);
  border-radius: var(--button-1-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: 500;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-1-border-color);
}
.button-1 i,
.button-1 svg,
.button-1 i svg,
.button-1 i svg path,
.button-1 svg path {
  fill: var(--button-1-text-color);
}
.button-1:hover {
  background-color: var(--button-1-hover-color);
  color: var(--button-1-hover-text-color);
  border-radius: var(--button-1-hover-radius);
  border: solid 2px var(--button-1-hover-border-color);
}
.button-1:hover i,
.button-1:hover svg,
.button-1:hover i svg,
.button-1:hover i svg path,
.button-1:hover svg path {
  fill: var(--button-1-hover-text-color);
}

.button-2 {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-2-color);
  color: var(--button-2-text-color);
  border-radius: var(--button-2-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: 500;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-2-border-color);
}
.button-2 i,
.button-2 svg,
.button-2 i svg,
.button-2 i svg path,
.button-2 svg path {
  fill: var(--button-2-text-color);
}
.button-2:hover {
  background-color: var(--button-2-hover-color);
  color: var(--button-2-hover-text-color);
  border-radius: var(--button-2-hover-radius);
  border: solid 2px var(--button-2-hover-border-color);
}
.button-2:hover i,
.button-2:hover svg,
.button-2:hover i svg,
.button-2:hover i svg path,
.button-2:hover svg path {
  fill: var(--button-2-hover-text-color);
}

.button-3 {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-3-color);
  color: var(--button-3-text-color);
  border-radius: var(--button-3-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: 500;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-3-border-color);
}
.button-3 i,
.button-3 svg,
.button-3 i svg,
.button-3 i svg path,
.button-3 svg path {
  fill: var(--button-3-text-color);
}
.button-3:hover {
  background-color: var(--button-3-hover-color);
  color: var(--button-3-hover-text-color);
  border-radius: var(--button-3-hover-radius);
  border: solid 2px var(--button-3-hover-border-color);
}
.button-3:hover i,
.button-3:hover svg,
.button-3:hover i svg,
.button-3:hover i svg path,
.button-3:hover svg path {
  fill: var(--button-3-hover-text-color);
}

.button-4 {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-4-color);
  color: var(--button-4-text-color);
  border-radius: var(--button-4-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: 500;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-4-border-color);
}
.button-4 i,
.button-4 svg,
.button-4 i svg,
.button-4 i svg path,
.button-4 svg path {
  fill: var(--button-4-text-color);
}
.button-4:hover {
  background-color: var(--button-4-hover-color);
  color: var(--button-4-hover-text-color);
  border-radius: var(--button-4-hover-radius);
  border: solid 2px var(--button-4-hover-border-color);
}
.button-4:hover i,
.button-4:hover svg,
.button-4:hover i svg,
.button-4:hover i svg path,
.button-4:hover svg path {
  fill: var(--button-4-hover-text-color);
}

.button-5 {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-5-color);
  color: var(--button-5-text-color);
  border-radius: var(--button-5-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: 500;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-5-border-color);
}
.button-5 i,
.button-5 svg,
.button-5 i svg,
.button-5 i svg path,
.button-5 svg path {
  fill: var(--button-5-text-color);
}
.button-5:hover {
  background-color: var(--button-5-hover-color);
  color: var(--button-5-hover-text-color);
  border-radius: var(--button-5-hover-radius);
  border: solid 2px var(--button-5-hover-border-color);
}
.button-5:hover i,
.button-5:hover svg,
.button-5:hover i svg,
.button-5:hover i svg path,
.button-5:hover svg path {
  fill: var(--button-5-hover-text-color);
}

.button-6 {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-6-color);
  color: var(--button-6-text-color);
  border-radius: var(--button-6-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: 500;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-6-border-color);
}
.button-6 i,
.button-6 svg,
.button-6 i svg,
.button-6 i svg path,
.button-6 svg path {
  fill: var(--button-6-text-color);
}
.button-6:hover {
  background-color: var(--button-6-hover-color);
  color: var(--button-6-hover-text-color);
  border-radius: var(--button-6-hover-radius);
  border: solid 2px var(--button-6-hover-border-color);
}
.button-6:hover i,
.button-6:hover svg,
.button-6:hover i svg,
.button-6:hover i svg path,
.button-6:hover svg path {
  fill: var(--button-6-hover-text-color);
}

[class^=button-].disabled,
[class^=button-].disabled:hover {
  background: #393939;
  border-color: #393939;
  opacity: 0.7;
}

@media only screen and (min-width: 610px) {
  .page-width,
  .collection__products,
  .section {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 40px;
  }
  .page-width.full-width,
  .collection__products.full-width,
  .section.full-width {
    padding: 0;
  }
  .page-width.full-width-right,
  .collection__products.full-width-right,
  .section.full-width-right {
    padding-right: 0;
  }
  .page-width.full-width-left,
  .collection__products.full-width-left,
  .section.full-width-left {
    padding-left: 0;
  }
  .kuSearchResultsPageContainer [data-container-role=main] .kuContainer .kuResultsListing .kuResultContent .kuResultWrap,
  div.klevu-recs {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 40px !important;
  }
}
@media only screen and (max-width: 610px) {
  .page-width,
  .collection__products,
  .section {
    padding: 0 20px;
  }
  .page-width.full-width,
  .collection__products.full-width,
  .section.full-width {
    padding: 0;
  }
  .page-width.full-width-right,
  .collection__products.full-width-right,
  .section.full-width-right {
    padding-right: 0;
  }
  .page-width.full-width-left,
  .collection__products.full-width-left,
  .section.full-width-left {
    padding-left: 0;
  }
  .kuSearchResultsPageContainer [data-container-role=main] .kuContainer .kuResultsListing .kuResultContent .kuResultWrap,
  div.klevu-recs {
    padding: 0 20px !important;
  }
}
.page-width-left {
  margin: 0 auto;
  width: 100%;
  padding-left: calc((100vw - var(--page-width)) / 2 + 5.5rem);
}

@media only screen and (max-width: 767.98px) {
  .page-width-left {
    padding-left: calc((100vw - var(--page-width)) / 2 + 8.3rem);
  }
}
.page-width-right {
  margin: 0 auto;
  width: 100%;
  padding-right: calc((100vw - var(--page-width)) / 2 + 5.5rem);
}

@media only screen and (max-width: 767.98px) {
  .page-width-right {
    padding-right: calc((100vw - var(--page-width)) / 2 + 8.3rem);
  }
}
.select {
  width: 100%;
  position: relative;
}

.form-errors {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  grid-column: 1/-1;
  left: 0;
  padding: 5px 10px;
  margin: 10px auto;
  color: white;
  background: #cb3840;
  border: solid 2px #b3333a;
  border-radius: 5px;
}
@media only screen and (max-width: 575.98px) {
  .form-errors {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.form-errors .icon-error {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  color: #b3333a;
}
.form-errors .form__message {
  color: white;
}
.form-errors .form__message strong {
  font-weight: 700;
}
.form-errors ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.form-errors ul li {
  color: white;
}
.form-errors ul li a {
  color: inherit;
  text-decoration: underline;
}

.form__message {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b3333a;
}
.form__message svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
}
.form__message .icon-error {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  color: #b3333a;
}
.form__message strong {
  font-weight: 700;
}

.form-success {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  grid-column: 1/-1;
  left: 0;
  padding: 5px 10px;
  margin: 10px auto;
  color: white;
  background: #428445;
  border: solid 2px #346937;
  border-radius: 5px;
}
@media only screen and (max-width: 575.98px) {
  .form-success {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.form-success .success-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
}

.is-hidden {
  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;
}

.icon {
  width: 32px;
  height: 32px;
}

#cookieNotice {
  position: fixed;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  z-index: 999997;
  background-color: #ffffff;
}
#cookieNotice * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
#cookieNotice.display-right {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 35vw;
}
#cookieNotice .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  font-size: 20px;
}
#cookieNotice p,
#cookieNotice a,
#cookieNotice ul {
  font-size: 12px;
  margin-bottom: 10px;
  text-align: center;
}
#cookieNotice .btn-wrap {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  justify-content: center;
  margin: 0 -5px 0 -5px;
  flex-wrap: wrap;
}
#cookieNotice .btn-wrap button {
  flex-grow: 1;
  padding: 0 7px;
  margin: 0 5px 5px 5px;
  border-radius: 20px;
  line-height: 30px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 80px;
  border: none;
  font-size: 14px;
  transition: box-shadow 0.3s;
  outline: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

@media only screen and (max-width: 767.98px) {
  #cookieNotice.display-right {
    width: 85vw;
  }
}
.openSideCart {
  cursor: pointer;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: var(--text-primary-color);
}

.customer {
  display: flex;
}

.swiper-scrollbar .swiper-scrollbar-drag,
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.margin-s {
  margin-top: var(--section-margin-s);
  margin-bottom: var(--section-margin-s);
}

.margin-m {
  margin-top: var(--section-margin-m);
  margin-bottom: var(--section-margin-m);
}

.margin-l {
  margin-top: var(--section-margin-l);
  margin-bottom: var(--section-margin-l);
}

.margin-bottom-l {
  margin-bottom: var(--section-margin-l);
}

.padding-s {
  padding-top: var(--section-padding-s);
  padding-bottom: var(--section-padding-s);
}

.padding-m {
  padding-top: var(--section-padding-m);
  padding-bottom: var(--section-padding-m);
}

.padding-l {
  padding-top: var(--section-padding-l);
  padding-bottom: var(--section-padding-l);
}

.padding-top-s {
  padding-top: var(--section-padding-s);
}

.padding-top-m {
  padding-top: var(--section-padding-m);
}

.padding-top-l {
  padding-top: var(--section-padding-l);
}

.padding-bottom-s {
  padding-bottom: var(--section-padding-s);
}

.padding-bottom-m {
  padding-bottom: var(--section-padding-m);
}

.padding-bottom-l {
  padding-bottom: var(--section-padding-l);
}

.vertical-padding {
  padding-top: var(--spacing-sections-desktop);
  padding-bottom: var(--spacing-sections-desktop);
}
@media only screen and (max-width: 767.98px) {
  .vertical-padding {
    padding-top: calc(var(--spacing-sections-desktop) * 0.6);
    padding-bottom: calc(var(--spacing-sections-desktop) * 0.6);
  }
}

.vertical-margin {
  margin-top: var(--spacing-sections-desktop);
  margin-bottom: var(--spacing-sections-desktop);
}
@media only screen and (max-width: 767.98px) {
  .vertical-margin {
    margin-top: var(--spacing-sections-desktop);
    margin-bottom: var(--spacing-sections-desktop);
  }
}

td {
  padding: 25px;
  border: solid 2px #d5d6d7;
  vertical-align: top;
}

thead tr td {
  font-weight: bold;
  padding: 10px 25px;
}

body.locked {
  overflow: hidden !important;
}

[data-hover=anim-grow] {
  scale: 100%;
  transition: scale 0.1s ease-in-out;
}
[data-hover=anim-grow]:hover {
  scale: 110%;
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--primary-color)) !important;
  border-top-color: transparent !important;
}
.swiper-lazy-preloader + img {
  opacity: 0;
}

.check-circle-outer,
.spinner-circle-outer {
  --check-color: var(--accent-2-color);
  --circle-size: 50px;
  --check-width: calc(var(--circle-size) / 20);
  width: var(--circle-size);
  height: var(--circle-size);
  position: relative;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}
.check-circle-outer .check-line-short,
.spinner-circle-outer .check-line-short {
  position: absolute;
  width: var(--check-width);
  height: 30%;
  background-color: var(--check-color);
  border-radius: 100px;
  rotate: -45deg;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  animation: enter 400ms ease 450ms forwards;
}
.check-circle-outer .check-line-long,
.spinner-circle-outer .check-line-long {
  --height: 60%;
  position: absolute;
  width: var(--check-width);
  height: 0;
  background-color: var(--check-color);
  border-radius: 100px;
  rotate: 45deg;
  top: 71%;
  left: 39%;
  transform: translate(-50%, -50%);
  animation: grow-line 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 650ms forwards;
}
.check-circle-outer .check-circle,
.check-circle-outer .spinner-circle,
.spinner-circle-outer .check-circle,
.spinner-circle-outer .spinner-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: var(--check-width) solid;
  border-color: var(--check-color);
  opacity: 0.2;
}
.check-circle-outer .check-circle-mask,
.check-circle-outer .spinner-circle-mask,
.spinner-circle-outer .check-circle-mask,
.spinner-circle-outer .spinner-circle-mask {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: var(--check-width) transparent solid;
  border-left-color: var(--check-color);
  opacity: 0;
}
.check-circle-outer .check-circle,
.spinner-circle-outer .check-circle {
  animation: show 300ms ease 950ms forwards;
}
.check-circle-outer .check-circle-mask,
.spinner-circle-outer .check-circle-mask {
  --spin-end: 70deg;
  animation: spin-circle 300ms ease 350ms forwards;
}
.check-circle-outer .spinner-circle-mask,
.spinner-circle-outer .spinner-circle-mask {
  --spin-end: 0deg;
  animation: spin-circle 1000ms ease forwards infinite;
}

.cross-circle-outer {
  --cross-color: #d8056b;
  --cross-size: 50px;
  --cross-width: calc(var(--cross-size) / 20);
  width: var(--cross-size);
  height: var(--cross-size);
  position: relative;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  animation: shake 350ms ease-in-out 900ms;
}

.cross-line-left,
.cross-line-right {
  position: absolute;
  width: var(--cross-width);
  height: 0%;
  background-color: var(--cross-color);
  border-radius: 100px;
  top: 48%;
  left: 48%;
  animation: cross-grow 600ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 250ms forwards;
}

.cross-line-right {
  rotate: 45deg;
}

.cross-line-left {
  rotate: -45deg;
}

.cross-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: var(--cross-width) solid;
  border-color: var(--cross-color);
  opacity: 0.2;
  animation: show 300ms ease 600ms forwards;
}

.cross-circle-mask {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: var(--cross-width) transparent solid;
  border-left-color: var(--cross-color);
  animation: spin-circle 300ms ease forwards;
}

@keyframes spin-circle {
  0% {
    rotate: 320deg;
    opacity: 1;
  }
  99% {
    rotate: var(--spin-end);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes enter {
  0% {
    left: 0%;
    top: 0%;
  }
  100% {
    left: 42%;
    top: 57%;
  }
}
@keyframes grow-line {
  0% {
    height: 0;
    top: 72%;
    left: 40%;
  }
  100% {
    height: var(--height);
    top: 44%;
    left: 40%;
  }
}
@keyframes show {
  to {
    opacity: 1;
  }
}
@keyframes show-message {
  from {
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes cross-grow {
  0% {
    top: 48%;
    left: 48%;
    height: 0;
  }
  100% {
    top: 21%;
    left: 49%;
    height: 60%;
  }
}
@keyframes shake {
  0% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  10% {
    transform: translate(-2px, -3px) rotate(-2deg);
  }
  20% {
    transform: translate(-5px, 0px) rotate(2deg);
  }
  30% {
    transform: translate(5px, 3px) rotate(0deg);
  }
  40% {
    transform: translate(2px, -2px) rotate(2deg);
  }
  50% {
    transform: translate(-2px, 3px) rotate(-2deg);
  }
  60% {
    transform: translate(-5px, 2px) rotate(0deg);
  }
  70% {
    transform: translate(5px, 2px) rotate(-2deg);
  }
  80% {
    transform: translate(-2px, -2px) rotate(2deg);
  }
  90% {
    transform: translate(2px, 3px) rotate(0deg);
  }
  100% {
    transform: translate(2px, -3px) rotate(-2deg);
  }
}
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid var(--accent-1-color); /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.customer.reset-password {
  flex-direction: column;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}
.customer.reset-password h1,
.customer.reset-password p {
  text-align: center;
}
.customer.reset-password h1 {
  font-size: 24px;
  margin-top: 60px;
}
.customer.reset-password button {
  padding: 0;
}

.visually-hidden {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/*
|--------------------------------------------------------------------------
| Utils
|--------------------------------------------------------------------------
| @namespace: util-
|
*/
.util-ScreenReaderOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Faux link
|--------------------------------------------------------------------------
|
*/
.util-FauxLink {
  position: relative;
}

.util-FauxLink_Link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/*
|--------------------------------------------------------------------------
| Site overflowed
|--------------------------------------------------------------------------
|
*/
.util-SiteOverflowed,
.util-SiteOverflowed body {
  overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Limit Label
|--------------------------------------------------------------------------
|
*/
.util-CartLimit {
  display: block;
  width: 100%;
  padding: 20px 20px 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 126%;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid;
}

.util-CartLimit-light {
  color: #fff;
}

/*
|--------------------------------------------------------------------------
| Device
|--------------------------------------------------------------------------
|
*/
@media only screen and (min-width: 1024px) {
  .util-MobileOnly {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .util-DesktopOnly {
    display: none !important;
  }
}
/*
|--------------------------------------------------------------------------
| Patterned Background
|--------------------------------------------------------------------------
|
*/
.util-PatternedBackground {
  position: relative;
}

.util-PatternedBackground::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.9));
  opacity: 1;
}

.util-PatternedBackground > * {
  z-index: 1;
}

.btn-Button_Text {
  background-color: #fff;
  padding: 16px 24px;
}

/*
|--------------------------------------------------------------------------
| Site
|--------------------------------------------------------------------------
| @namespace: lyt-
|
*/
.lyt-Container {
  inline-size: 100%;
  margin-inline: auto;
  padding-inline: var(--Site_Margin);
}

/*
|--------------------------------------------------------------------------
| Theme
|--------------------------------------------------------------------------
|
*/
.lyt-Theme-headerTransparent {
  margin-block-start: var(--Header_TopBar);
}

.sec-Section_Inner {
  display: block;
  margin-block: var(--Section_Margin);
}

.sec-Section_Header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 30px;
  justify-content: space-between;
  margin-block-end: 20px;
}
@media only screen and (min-width: 992px) {
  .sec-Section_Header {
    flex-direction: row;
    margin-block-end: 30px;
    align-items: flex-end;
  }
}

/*
|--------------------------------------------------------------------------
| Overlay
|--------------------------------------------------------------------------
| @namespace: prd-
|
*/
.prd-Overlay {
  --Column_Width: 53px;
  display: inline-block;
  max-inline-size: 100%;
  padding: 5px;
  background-color: rgb(255, 255, 255);
}
@media only screen and (min-width: 992px) {
  .prd-Overlay {
    --Column_Width: 67px;
  }
}

.prd-Overlay_Inner {
  display: flex;
  inline-size: 100%;
  gap: 7px;
  overflow: auto;
}
.prd-Overlay_Inner::-webkit-scrollbar {
  display: none;
}

.prd-Overlay_Products {
  display: flex;
  gap: 5px;
}

.prd-Overlay_Product {
  display: block;
  transition: transform 0.3s ease;
}
.prd-Overlay_Product[data-has-pre-order-conflict=true] {
  display: none;
}

.prd-Overlay_ImageContainer {
  display: block;
  inline-size: var(--Column_Width);
  background-color: var(--Color_GreyLighter);
  border-radius: 2px;
  overflow: hidden;
  height: 79px;
}
.prd-Overlay_ImageContainer::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: 100%;
}
@media only screen and (min-width: 992px) {
  .prd-Overlay_ImageContainer {
    height: 100px;
  }
}

.prd-Overlay_Image {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
  transform-origin: bottom center;
  transition: transform 0.3s ease, opacity 0.4s ease;
}
@media (hover: hover) {
  .prd-Overlay_Products:hover .prd-Overlay_Product:hover .prd-Overlay_Image {
    transform: scale(1.066);
  }
  .prd-Overlay_Products:hover .prd-Overlay_Product:not(:hover) .prd-Overlay_Image {
    opacity: 0.4;
  }
}

.prd-Overlay_Icon {
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
  inline-size: var(--Column_Width);
}
.prd-Overlay_Icon svg, .prd-Overlay_Icon .icon {
  fill: var(--Color_Black);
  inline-size: 24px;
  block-size: 24px;
}
.prd-Overlay_Icon::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: 100%;
}

.prd-Overlay_Link {
  outline-offset: -2px;
}

:root {
  /*
  |--------------------------------------------------------------------------
  | Colours
  |--------------------------------------------------------------------------
  |
  */
  --Color_White: #ffffff;
  --text-primary-color: #363636;
  --Color_Black: #000000;
  /*
  |--------------------------------------------------------------------------
  | Families
  |--------------------------------------------------------------------------
  |
  */
  /*
  |--------------------------------------------------------------------------
  | Grid
  |--------------------------------------------------------------------------
  |
  */
  --Grid_Gutter: 5px;
  /*
  |--------------------------------------------------------------------------
  | Site
  |--------------------------------------------------------------------------
  |
  */
  --Site_Margin: 15px;
  --Header_Banner: 73px;
  --Product_FixedBar: 80px;
  --Header_TopBar: 37px;
  --Header_Height: calc(var(--Header_TopBar) + var(--Header_Banner));
  --DrawerHeader_Height: 60px;
  /*
  |--------------------------------------------------------------------------
  | Styles
  |--------------------------------------------------------------------------
  |
  */
  font: 16px/1.5 var(--Font_Family-body);
  cursor: auto;
  --Title_Font: "The Seasons", sans-serif;
  --Title_Font_Size: 1.5em;
}
@media only screen and (min-width: 768px) {
  :root {
    --Grid_Gutter: 10px;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --Site_Margin: 40px;
    --Header_Banner: 91px;
    --DrawerHeader_Height: 85px;
  }
}

/*@import 'global/typography';
 @import 'global/wrapper'; */
[data-preload] {
  transition: all 0.25s ease;
}
[data-preload]:not([data-preload=loaded]) {
  opacity: 0;
  visibility: hidden;
}

picture {
  position: relative;
}
picture .placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

img[data-lazy][data-srcset]:not([srcset]) {
  visibility: hidden;
}

img[data-lazy]:not(.picture-element-image) {
  transition: opacity 0.25s ease;
  opacity: 0;
}
img[data-lazy]:not(.picture-element-image):not([src]) {
  visibility: hidden;
}
img[data-lazy]:not(.picture-element-image).loaded {
  opacity: 1;
}

video[data-lazy] {
  transition: opacity 0.25s ease;
}
video[data-lazy]:not(.loaded) {
  opacity: 0;
}

img[data-lazy-manual] {
  transition: opacity 0.25s ease, visibility 0.25s ease;
  opacity: 0;
}
img[data-lazy-manual]:not([srcset]) {
  visibility: hidden;
}
img[data-lazy-manual].loaded {
  opacity: 1;
  visibility: visible;
}

.picture-element-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--aspect-desktop);
}
@media (max-width: 960px) {
  .picture-element-wrapper {
    padding-bottom: var(--aspect-tablet);
  }
}
.picture-element-wrapper picture, .picture-element-wrapper .placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.picture-element-wrapper picture {
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.picture-element-wrapper picture:not(.loaded) {
  opacity: 0;
}
.picture-element-wrapper picture img {
  width: 100%;
  -o-object-position: var(--focal-desktop, center);
     object-position: var(--focal-desktop, center);
}
@media (max-width: 960px) {
  .picture-element-wrapper picture img {
    -o-object-position: var(--focal-tablet, center);
       object-position: var(--focal-tablet, center);
  }
}
.picture-element-wrapper .placeholder {
  z-index: 1;
  transition: opacity 0.5s ease, filter 0.5s ease;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture-element-wrapper picture.loaded + .placeholder, .picture-element-wrapper picture.error + .placeholder {
  opacity: 0;
}

/* @import 'components/buttons';
@import 'components/section-header';
@import 'components/social-icons';
@import 'components/newsletter-form';
@import 'components/search-dropdown';
@import 'components/product-grid-item';
@import 'components/quantity-selector';
@import 'components/article-grid-item';  */
.collection__clusters {
  width: 100%;
  overflow-x: auto;
  height: 100%;
  padding-bottom: 15px;
  margin: 50px auto 55px;
  gap: 20px;
}
.collection__clusters::-webkit-scrollbar {
  display: none;
}
@media (max-width: 960px) {
  .collection__clusters {
    gap: 9px;
  }
}
.collection__clusters:not(.collection__clusters--text-only) li {
  width: 140px;
}
.collection__clusters--text-only {
  gap: 5px;
  margin: 20px auto 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .collection__clusters--text-only {
    margin: 30px auto 25px;
  }
}
.collection__clusters--text-only li {
  border: 1px solid var(--color-navigation-border);
}
.collection__clusters--text-only li a {
  padding-block: 8px;
  padding-inline: 15px;
  display: block;
  white-space: nowrap;
}
.collection__clusters--text-only li a:hover {
  background-color: #000;
  color: #fff;
}
.collection__clusters--text-only li .image {
  width: 100%;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.collection__clusters--text-only li .image:hover {
  transform: scale(1.05);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  box-shadow: 0px 18px 18px -18px rgba(0, 0, 0, 0.06);
  z-index: 10;
  overflow: hidden;
}
.mega-menu:not(.open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mega-menu:not(.open) img:not(.placeholder):not(.loaded) {
  display: none;
}
.mega-menu .mega-menu-inner {
  background: #fff;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 961px) {
  .mega-menu .mega-menu-inner > .header__content {
    padding-right: 0;
    align-items: stretch;
  }
}
.mega-menu .mega-menu-inner > .header__content > .menu-area {
  display: flex;
  padding-top: 24px;
  padding-bottom: 40px;
  margin: -20px -50px -12px -50px;
}
@media (max-width: 1199px) {
  .mega-menu .mega-menu-inner > .header__content > .menu-area {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.mega-menu .mega-menu-inner > .header__content > .menu-area > * {
  padding: 20px 50px 12px 50px;
}
@media (max-width: 1199px) {
  .mega-menu .mega-menu-inner > .header__content > .menu-area > * {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.mega-menu .mega-menu-inner > .header__content > .menu-area .link-menu > h6 {
  text-transform: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.57;
  font-weight: bold;
}
.mega-menu .mega-menu-inner > .header__content > .menu-area .link-menu > h6 a {
  font-size: inherit;
}
.mega-menu .mega-menu-inner > .header__content > .menu-area .link-menu.has-sub-links > h6 {
  margin-bottom: 16px;
}
.mega-menu .mega-menu-inner > .header__content > .menu-area .link-menu ul {
  display: grid;
  grid-template-rows: repeat(8, auto);
  grid-auto-flow: column;
  grid-column-gap: 44px;
  grid-row-gap: 8px;
}
@media (max-width: 1299px) {
  .mega-menu .mega-menu-inner > .header__content > .menu-area .link-menu ul {
    grid-column-gap: 16px;
  }
}
.mega-menu .mega-menu-inner > .header__content > .menu-area .link-menu ul li a {
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.35s ease;
  font-size: 13px;
  line-height: 1.38;
  position: relative;
  color: #5f5f5f;
}
.mega-menu .mega-menu-inner > .header__content > .image-area {
  flex-grow: 1;
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .mega-menu .mega-menu-inner > .header__content > .image-area {
    padding-left: 40px;
  }
}
.mega-menu .mega-menu-inner > .header__content > .image-area > .flex {
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul > li .image-item {
  position: relative;
  height: 100%;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul > li .image-item .image-area {
  height: 100%;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul > li .image-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul > li .content-area {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 15%;
  text-transform: uppercase;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul > li .content-area h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.mega-menu .mega-menu-inner > .header__content > .image-area ul > li .content-area .cta {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  text-decoration: underline;
}

.mobile-nav-ffc {
  position: fixed;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .mobile-nav-ffc {
    opacity: 0;
    visibility: hidden;
  }
}
.mobile-nav-ffc:not(.open) {
  opacity: 0;
  visibility: hidden;
}
.mobile-nav-ffc:not(.open) .mobile-nav-inner {
  transform: translateX(-100%);
}
.mobile-nav-ffc:not(.open) img:not(.placeholder):not(.loaded) {
  display: none;
}
.mobile-nav-ffc .mobile-nav-inner {
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
  height: 100%;
}
.mobile-nav-ffc .mobile-nav-inner .close-area {
  padding: 16px 25px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-ffc .mobile-nav-inner .close-area button {
  padding: 16px;
  margin: -16px;
}
.mobile-nav-ffc .mobile-nav-inner .close-area button img {
  width: 14px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu {
  height: 100%;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header {
  display: flex;
  gap: 18px;
  padding-inline: 20px;
  padding-block: 20px 13px;
  justify-content: space-between;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__back-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__back-link svg {
  width: 6px;
  height: 11px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__title {
  font-family: var(--font-heading), sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__search {
  flex-grow: 1;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__search-trigger {
  align-items: center;
  background-color: #F3F3F3;
  display: flex;
  width: 100%;
  height: 44px;
  padding-inline-end: 40px;
  padding-inline-start: 13px;
  position: relative;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__search-trigger .animated-search-text {
  background-color: #F3F3F3;
  color: #666666;
  font-size: 14px;
  left: 16px;
  position: absolute;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__search-trigger .animated-search-text__typewriter {
  color: #666666;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-45%);
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__search-close svg {
  height: 18px;
  width: 18px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .mobile-nav-ffc-header__close {
  height: 44px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header {
  display: grid;
  align-items: flex-end;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header__image {
  grid-column: 1;
  grid-row: 1;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header__image img {
  max-height: 350px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header__button {
  padding: 15px;
  margin-inline: 20px;
  margin-block-end: 20px;
  font-size: 14px;
  background: #ffffff;
  text-align: center;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header__button svg {
  margin-right: 3px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header.menu-header--no-image .menu-header__button {
  border: 1px solid #333;
  margin-block-end: 0;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .menu-header .h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  z-index: 1;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel {
  margin-top: 30px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel {
  display: flex;
  gap: 6px;
  overflow: auto;
  width: 100%;
  height: 101%;
  padding-block-end: 22px;
  padding-inline: 20px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel::-webkit-scrollbar {
  height: 1px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel::-webkit-scrollbar-button {
  display: none;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel::-webkit-scrollbar-track {
  background-color: #fff;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel::-webkit-scrollbar-thumb {
  background-color: #333;
  box-shadow: inset 20px 0 0 #fff, inset -20px 0 0 #fff;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel__item {
  flex: 1 0 60%;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .level-2-nav__carousel .level-2-nav-carousel__title {
  margin-top: 10px;
  font-family: "The Seasons";
  font-size: 16px;
  font-weight: 700;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu ul li {
  list-style-type: none;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  width: 100%;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move.level-1-nav .nav-level > nav {
  padding-block-start: 17px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-move-inner {
  min-height: 100%;
  transition: all 0.35s ease;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100dvh;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level > nav {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level > nav > ul:not(.mobile-nav-ffc_TertiaryMenu) {
  display: flex;
  flex-direction: column;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-1-nav__nav {
  overflow-y: auto;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-1-nav .link-menu {
  margin-block-end: 30px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-1-nav .link-menu__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-inline: 20px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-1-nav .link-menu__link {
  font-size: 14px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-1-nav .link-menu__thumbnail {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  overflow: hidden;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-1-nav .link-menu__title {
  flex-grow: 1;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-2-nav .level-2-nav__main {
  overflow-y: auto;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-2-nav .level-2-nav__main .level-2-nav__link-list {
  margin-block-start: 10px;
  padding-inline: 20px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-2-nav .level-2-nav__main .level-2-nav__link-list .level-2-nav__link-list-item {
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-2-nav .level-2-nav__main .level-2-nav__link-list .level-2-nav__link-list-item .level-2-nav__link {
  font-size: 14px;
  font-weight: 400;
  padding: 20px 0;
  display: flex;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-3-nav .menu-header {
  margin-bottom: 14px;
}
.mobile-nav-ffc .mobile-nav-inner .top-menu .nav-move .nav-level.level-3-nav li a {
  font-size: 18px;
  line-height: 1.22;
  padding: 10px 0;
  display: flex;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_Account {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  padding-block: 16px;
  padding-inline: 20px;
  justify-content: flex-start;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountAvatar {
  align-items: center;
  background-color: #FEF8EE;
  border-radius: 50%;
  color: #000000;
  display: flex;
  font-family: "The Seasons";
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  margin-inline-end: 14px;
  width: 52px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountIcon {
  margin-inline-end: 14px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountIcon svg {
  height: 32px;
  width: 32px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountName,
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountEmail,
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountLogOut,
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountLogIn {
  font-size: 14px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_AccountLogOut {
  margin-inline-start: auto;
  text-decoration: underline;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_TertiaryMenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;
  margin-block: 30px;
  padding-inline: 20px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_TertiaryLink {
  font-size: 12px;
  font-weight: 400;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_Footer {
  margin-top: auto;
  transform: translateY(40px);
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_FooterSocials {
  padding-inline: 20px;
  margin-block-end: 30px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_SocialsList {
  display: flex;
  gap: 5px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_SocialItem {
  background-color: #000000;
  border-radius: 50%;
  height: 34px;
  width: 34px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_SocialLink {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_SocialLink svg {
  filter: invert(100%);
  height: 13px;
}
.mobile-nav-ffc .mobile-nav-inner .mobile-nav-ffc_FooterLogo {
  padding-inline: 20px;
  margin-block-end: 10px;
}

.accordion {
  margin-top: 16px;
}
.accordion .accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion .accordion-item:first-child {
  border-top: 1px solid var(--color-border);
}
.accordion .accordion-item .accordion-header {
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
}
.accordion .accordion-item .accordion-header svg {
  width: 12px;
  height: 12px;
  transition: all 0.35s ease;
  margin-right: 8px;
  opacity: 0.4;
}
.accordion .accordion-item .accordion-header svg .horizontal-line {
  transition: all 0.35s ease;
}
.accordion .accordion-item .accordion-header .accordion--icon-title > img {
  margin-right: 8px;
}
.accordion .accordion-item .accordion-header .accordion--icon-title h3 {
  text-transform: uppercase;
}
.accordion .accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}
.accordion .accordion-item.open .accordion-header svg .horizontal-line {
  opacity: 0;
}
.accordion .accordion-item .accordion-content {
  transition: max-height 0.25s;
  overflow: hidden;
}
.accordion .accordion-item .accordion-content:not(.open) {
  max-height: 0px;
}
.accordion .accordion-item .accordion-content .rte {
  margin-bottom: 20px;
}
.accordion .accordion-item .accordion-content ul {
  list-style: disc;
}

.quick-buy-popup {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-buy-popup.shown {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.quick-buy-popup.shown:after {
  content: "";
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.quick-buy-popup__inner {
  z-index: 101;
  height: 90%;
  width: 75%;
  overflow: hidden;
  background: #fff;
  padding: 16px;
  position: relative;
}
.quick-buy-popup__inner:before, .quick-buy-popup__inner:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.quick-buy-popup__inner:before {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 11;
  left: 0;
  top: 0;
}
.quick-buy-popup__inner:after {
  width: 20px;
  height: 20px;
  top: 100px;
  left: calc(50% - 10px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMCAyMCc+PHBhdGggZD0nTTIwIDEwYzAgNS41MjMtNC40NzcgMTAtMTAgMTBTMCAxNS41MjMgMCAxMCA0LjQ3NyAwIDEwIDB2MmMtNC40MTggMC04IDMuNTgyLTggOHMzLjU4MiA4IDggOCA4LTMuNTgyIDgtOGgyeicgZmlsbD0nIzAwMCc+PC9wYXRoPjwvc3ZnPg==");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation: rotate 0.5s linear infinite;
  z-index: 12;
  pointer-events: none;
}
.quick-buy-popup__inner.loading:before, .quick-buy-popup__inner.loading:after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 960px) {
  .quick-buy-popup__close {
    margin-bottom: 16px;
  }
  .quick-buy-popup__close svg {
    width: 16px;
  }
}
@media (min-width: 961px) {
  .quick-buy-popup__close {
    position: absolute;
    top: 32px;
    right: 32px;
  }
}
.quick-buy-popup__scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100%;
}
.quick-buy-popup__view {
  margin-top: 16px;
}
.quick-buy-popup .product__heading {
  margin-bottom: 16px;
}
.quick-buy-popup .size-selector {
  margin-top: 8px;
}
@media (min-width: 38em) and (max-width: 1024px) {
  .quick-buy-popup .product {
    padding: 0;
  }
  .quick-buy-popup .product__image-container, .quick-buy-popup .product__details-container {
    width: 50%;
  }
}

.product-tile .product-title {
  font-size: 16px;
  font-family: var(--font-heading), sans-serif;
  line-height: 1.2;
  text-transform: capitalize;
}
.product-tile .product-price {
  color: inherit;
}

/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
| @namespace: prd
|
*/
.prd-Card {
  flex-direction: column;
  display: flex;
  block-size: 100%;
}

.prd-Card_Body {
  flex: 1;
  flex-direction: column;
  display: flex;
  padding: 17px 15px 0 0;
  gap: 15px;
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.prd-Card_Row-priceReviews {
  display: flex;
  justify-content: space-between;
}

.prd-Card_Title {
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  text-transform: capitalize;
  white-space: normal;
}

.prd-Card_Price {
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}
.prd-Card_Price .prd-Price {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}
.prd-Card_Price .prd-Price_RegularPrice {
  color: #dc323b;
}

.prd-Card_Colours {
  margin-block-start: 10px;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
*/
.prd-Card_MediaContainer {
  position: relative;
  display: flex;
  overflow: hidden;
}
.prd-Card_MediaContainer:hover {
  z-index: 1;
}
@media (max-width: 767px) {
  .prd-Card_MediaContainer {
    flex-direction: column;
  }
}

.prd-Card_Images {
  display: grid;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .prd-Card_Images {
    display: flex;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    will-change: scroll-position;
    scrollbar-width: none;
  }
}

.prd-Card_Image {
  display: flex;
  list-style: none;
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
}

@media screen and (min-width: 768px) {
  .prd-Card_Image {
    grid-row: 1;
    grid-column: 1;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 2;
    display: flex;
    inline-size: 100%;
    block-size: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  }
}
@media screen and (min-width: 768px) {
  .prd-Card-hasHover:hover .prd-Card_Image:not(.prd-Card_Image-hover) {
    opacity: 0;
    visibility: hidden;
  }
  .prd-Card_Image-hover {
    z-index: 1;
  }
}
/*
|--------------------------------------------------------------------------
| Tags
|--------------------------------------------------------------------------
|
*/
.prd-Card_Tags {
  position: absolute;
  inset-block-start: 12px;
  inset-inline: 15px;
  z-index: 2;
  display: flex;
  gap: 5px;
  pointer-events: none;
}

.prd-Card_Tag {
  display: block;
  padding: 2px 5px;
}

/*
|--------------------------------------------------------------------------
| Features
|--------------------------------------------------------------------------
|
*/
.prd-Card_Features {
  margin-block-end: 12px;
  line-height: 0;
}
.prd-Card_Features .product-badge-icon {
  display: none;
}

.prd-Card_Feature {
  display: inline;
  margin-inline-end: 5px;
}
.prd-Card_Feature:last-child {
  margin-inline-end: 0;
}
.prd-Card_Feature:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 1px;
  max-height: 13px;
  border-left: 1px solid #000;
}

/*
|--------------------------------------------------------------------------
| Quick add
|--------------------------------------------------------------------------
|
*/
.prd-Card_QuickAdd {
  background-color: #FDF8EF;
  inset-block-end: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  transition: background-color 0.3s ease;
  z-index: 2;
}
[data-has-pre-order-conflict=true] .prd-Card_QuickAdd {
  display: none;
}
.prd-Card_QuickAdd:hover {
  background-color: #000;
  color: #fff;
}
@media (min-width: 768px) {
  .prd-Card_QuickAdd {
    position: absolute;
    display: block;
    inset-block-end: 15px;
    inset-inline-end: 15px;
    inset-inline-start: 15px;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .prd-Card:hover .prd-Card_QuickAdd {
    transform: none;
  }
}

.prd-Card_QuickAddButton {
  inline-size: 100%;
  padding: 14px;
  pointer-events: auto;
  display: flex;
  justify-content: center;
}

.prd-Card_QuickAddButton:disabled,
.prd-Card_QuickAddButton:disabled:hover {
  color: #000000;
  background-color: #F3F3F3;
  pointer-events: none;
}

.prd-Card_QuickAddButtonText {
  font-size: 14px;
  font-weight: 500;
}

/*
|--------------------------------------------------------------------------
| Wishlist
|--------------------------------------------------------------------------
|
*/
.prd-Card_WishlistButton {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-end: 5px;
  z-index: 3;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
  inline-size: 32px;
  block-size: 32px;
  margin-inline-start: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 768px) {
  .prd-Card_WishlistButton {
    inset-block-start: 12px;
    inset-inline-end: 12px;
  }
}
.prd-Card_WishlistButton[data-swym-loaded=true] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.prd-Card_WishlistButton[data-in-wishlist=true] svg {
  fill: #000;
}

.prd-Card_WishlistButton svg {
  inline-size: 17px;
  block-size: 17px;
  fill: transparent;
  transition: fill 0.3s ease;
}
.prd-Card_WishlistButton:hover .prd-Card_WishlistButton svg {
  fill: currentColor;
}
[data-wishlist-added] .prd-Card_WishlistButton svg, .prd-Card_WishlistButton-remove .prd-Card_WishlistButton svg {
  fill: currentColor;
}

/*
|--------------------------------------------------------------------------
| Badges
|--------------------------------------------------------------------------
|
*/
.prd-Card_TopBage {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  background-color: #fff;
  border-radius: 100px;
  padding-block: 5px;
  padding-inline: 10px;
  display: flex;
  align-items: center;
  z-index: 3;
}
@media (min-width: 768px) {
  .prd-Card_TopBage {
    inset-block-start: 15px;
    inset-inline-start: 15px;
  }
}

.prd-Card_TopBageText {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  letter-spacing: 0px;
}

.prd-Card_Features .product-badges {
  display: flex;
  gap: 13px;
}

.prd-Card_Features .product-badge {
  position: relative;
}

.prd-Card_Features .product-badge:not(:first-child):before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  height: 12px;
  border-left: 1px solid #000;
}

.prd-Card_Features .product-badge-text {
  line-height: 140%;
  font-size: 12px;
}

.radiant-filter-bar {
  background: #fff;
  z-index: 10;
  margin-top: var(--header-top-bar-height);
  padding-top: 10px;
  padding-bottom: 10px;
}
.radiant-filter-bar.sticky {
  width: 100vw !important;
  max-width: 100vw !important;
}
@media (max-width: 960px) {
  .radiant-filter-bar .filter-trigger-buttons > li {
    display: none;
  }
  .radiant-filter-bar .filter-trigger-buttons > li:nth-child(1), .radiant-filter-bar .filter-trigger-buttons > li:nth-child(2), .radiant-filter-bar .filter-trigger-buttons > li:nth-child(3), .radiant-filter-bar .filter-trigger-buttons > li:nth-child(4), .radiant-filter-bar .filter-trigger-buttons > li:last-child {
    display: block;
  }
}
@media (max-width: 480px) {
  .radiant-filter-bar .filter-trigger-buttons > li {
    display: none !important;
  }
  .radiant-filter-bar .filter-trigger-buttons > li:nth-child(1), .radiant-filter-bar .filter-trigger-buttons > li:nth-child(2), .radiant-filter-bar .filter-trigger-buttons > li:last-child {
    display: block !important;
  }
}
.radiant-filter-bar .filter-trigger-buttons .filter-trigger-button {
  font-size: 14px;
  font-family: "OpenSauceSans", Arial, sans-serif !important;
  font-weight: bolder !important;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 15px;
}
@media (max-width: 960px) {
  .radiant-filter-bar .filter-trigger-buttons .filter-trigger-button {
    font-size: 10px;
    padding-right: 5px;
  }
}
.radiant-filter-bar .filter-trigger-buttons .filter-trigger-button.active svg {
  transform: rotate(-90deg);
}
.radiant-filter-bar .filter-trigger-buttons .filter-trigger-button svg {
  width: 24px;
  transition: all 0.35s ease;
  transform: rotate(90deg);
}
@media (max-width: 960px) {
  .radiant-filter-bar .filter-trigger-buttons .filter-trigger-button svg {
    width: 18px;
  }
}
.radiant-filter-bar .selected-filters li {
  padding: 10px 10px 0 0;
}
.radiant-filter-bar .selected-filters li a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bolder;
  border: 1px solid black;
  border-radius: 4px;
  padding: 5px;
}
@media (max-width: 960px) {
  .radiant-filter-bar .selected-filters li a {
    font-size: 10px;
    padding: 1px 4px;
  }
}
.radiant-filter-bar .selected-filters li a svg {
  width: 14px;
  height: 14px;
  margin: 0 0 1px 4px;
}
.radiant-filter-bar .sort-by-container .choices {
  white-space: nowrap;
}
.radiant-filter-bar .sort-by-container .choices.is-open .choices__list.choices__list--single:before {
  transform: rotate(-90deg);
}
.radiant-filter-bar .sort-by-container .choices .choices__list.choices__list--single {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__list.choices__list--single {
    font-size: 10px;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__list.choices__list--single:before {
  content: "";
  height: 20px;
  width: 24px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  right: 0;
  transform: rotate(90deg);
  pointer-events: none;
  transition: transform 0.35s ease;
}
.radiant-filter-bar .sort-by-container .choices .choices__list.choices__list--single .choices__item--selectable {
  font-size: 14px;
  font-family: "OpenSauceSans", Arial, sans-serif !important;
  font-weight: bolder !important;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__list.choices__list--single .choices__item--selectable {
    display: none;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__inner {
  display: flex;
  border: 0 none;
  padding: 0 0 0 15px;
}
.radiant-filter-bar .sort-by-container .choices .choices__inner:before {
  content: "Sort by";
  display: block;
  text-align: right;
  font-size: 14px;
  font-family: "OpenSauceSans", Arial, sans-serif !important;
  font-weight: bolder !important;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__inner:before {
    font-size: 10px;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__inner:after {
  content: none;
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown {
  width: auto;
  right: 0;
  top: calc(100% + 16px);
  border-color: #363636;
  padding: 15px 0;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__list--dropdown {
    right: 0;
    padding: 10px 0;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__list {
  max-height: 400px;
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__list::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
  background-color: rgba(222, 222, 222, 0.5);
  border-radius: 0;
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
  margin: 0;
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item {
  padding: 9px 24px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-family: "OpenSauceSans", Arial, sans-serif !important;
  font-weight: bolder !important;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item {
    font-size: 12px;
    padding: 9px 10px;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item:before {
  content: "";
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  margin-right: 16px;
  display: block;
  border: 1px solid currentColor;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item:before {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 10px;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item:after {
  content: url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnICB2aWV3Qm94PScwIDAgMjQgMTgnPjxwYXRoIGZpbGw9JyNGRkYnIGQ9J20wIDguNDQgMS43NjItMS43NiA2LjkgNi44NzRMMjIuMjEzIDAgMjQgMS43ODYgOC42NjEgMTcuMTI2IDAgOC40NFonIC8+PC9zdmc+);
  position: absolute;
  top: 10px;
  left: 25px;
  width: 28px;
  height: 28px;
  color: inherit;
  background: currentColor;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 6px 4px 0;
}
@media (max-width: 960px) {
  .radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item:after {
    width: 22px;
    height: 22px;
    left: 11px;
  }
}
.radiant-filter-bar .sort-by-container .choices .choices__list--dropdown .choices__item.is-selected:after {
  visibility: visible;
  opacity: 1;
}

.collection-filters-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: calc(var(--vh) * 100);
  padding-left: 50px;
  z-index: 100;
  background: rgba(54, 54, 54, 0.5);
  display: flex;
  padding-right: 0;
  transition: all 0.35s ease;
}
.collection-filters-drawer:not(.open) {
  opacity: 0;
  visibility: hidden;
}
.collection-filters-drawer:not(.open) > .inner {
  transform: translateX(100%);
}
.collection-filters-drawer.loading .inner:before, .collection-filters-drawer.loading .inner:after {
  opacity: 1;
  visibility: visible;
}
.collection-filters-drawer > .inner {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.35s ease;
  position: relative;
}
.collection-filters-drawer > .inner:before, .collection-filters-drawer > .inner:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.collection-filters-drawer > .inner:before {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 11;
  left: 0;
  top: 0;
}
.collection-filters-drawer > .inner:after {
  width: 20px;
  height: 20px;
  top: 100px;
  left: calc(50% - 10px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMCAyMCc+PHBhdGggZD0nTTIwIDEwYzAgNS41MjMtNC40NzcgMTAtMTAgMTBTMCAxNS41MjMgMCAxMCA0LjQ3NyAwIDEwIDB2MmMtNC40MTggMC04IDMuNTgyLTggOHMzLjU4MiA4IDggOCA4LTMuNTgyIDgtOGgyeicgZmlsbD0nIzAwMCc+PC9wYXRoPjwvc3ZnPg==");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation: rotate 0.5s linear infinite;
  z-index: 12;
  pointer-events: none;
}
.collection-filters-drawer > .inner:after {
  top: 50%;
  left: 50%;
}
.collection-filters-drawer > .inner > header {
  margin-top: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #363636;
}
@media (max-width: 960px) {
  .collection-filters-drawer > .inner > header {
    padding-bottom: 15px;
  }
}
.collection-filters-drawer > .inner > header h3 {
  margin: 0;
  font-size: 22px;
}
@media (max-width: 960px) {
  .collection-filters-drawer > .inner > header h3 {
    font-size: 18px;
  }
}
.collection-filters-drawer > .inner > header button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: -4px;
}
.collection-filters-drawer > .inner > header button svg {
  width: 14px;
  height: 14px;
}
.collection-filters-drawer > .inner .collection-filter-container {
  padding: 0;
  flex-grow: 1;
  overflow: hidden;
  display: flex;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters::-webkit-scrollbar {
  display: none;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li {
  border-bottom: 1px solid #363636;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-trigger {
  font-size: var(--font-size-body-base);
  line-height: 1.5em;
  font-family: var(--font-body), georgia;
  padding: 16px 0;
  white-space: nowrap;
  font-weight: bolder;
  text-transform: uppercase;
  width: 100%;
  color: inherit;
}
@media (max-width: 960px) {
  .collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-trigger {
    padding: 10px 0;
    font-weight: 400;
    font-size: 16px;
  }
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-trigger.open svg {
  transform: rotate(-90deg);
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-trigger svg {
  width: 24px;
  height: auto;
  margin-left: 8px;
  transition: all 0.35s ease;
  transform: rotate(90deg);
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-trigger svg path {
  transition: all 0.35s ease;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values {
  width: 100%;
  background: #fff;
  height: 0;
  transition: all 0.2s ease;
  overflow: hidden;
  overflow-y: auto;
}
@media (max-width: 960px) {
  .collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values {
    padding-left: 25px;
  }
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values:not(.open) {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values.open {
  height: calc(var(--height, auto) + 1px);
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul {
  padding-bottom: 16px;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul li + li {
  margin-top: 16px;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul li .filter-value {
  font-size: 14px;
  transition: all 0.35s ease;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul li .filter-value .checkbox {
  width: 30px;
  height: 30px;
  border: 1px solid #363636;
  display: block;
  margin-right: 16px;
  display: flex;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul li .filter-value .checkbox:before {
  content: url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnICB2aWV3Qm94PScwIDAgMjQgMTgnPjxwYXRoIGZpbGw9JyNGRkYnIGQ9J20wIDguNDQgMS43NjItMS43NiA2LjkgNi44NzRMMjIuMjEzIDAgMjQgMS43ODYgOC42NjEgMTcuMTI2IDAgOC40NFonIC8+PC9zdmc+);
  display: block;
  background: currentColor;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 6px 4px 0;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul li .filter-value .swatch-color {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  margin-right: 8px;
}
.collection-filters-drawer > .inner .collection-filter-container .collection-filters > li .filter-values ul li .filter-value.active span:before {
  opacity: 1;
  visibility: visible;
}
.collection-filters-drawer > .inner > footer {
  margin-top: auto;
  padding-top: 15px;
}
.collection-filters-drawer > .inner > footer li:last-child {
  margin-top: 10px;
}

.shop-the-look-section .section-header {
  padding: 10px 40px;
}
.shop-the-look-section .section-header .type-heading-1 {
  text-transform: unset;
}
.shop-the-look-section .shop-the-look-main > .keen-slider .keen-nav {
  padding: 0 40px;
}
.shop-the-look-section .shop-the-look-main > .keen-slider .keen-nav .keen-arrow {
  background: transparent;
}
.shop-the-look-section .shop-the-look-main .shop-the-look-card {
  cursor: pointer;
}
.shop-the-look-section .shop-the-look-main .shop-the-look-card .picture-element-wrapper {
  padding-bottom: 200%;
}
.shop-the-look-section .shop-the-look-main .shop-the-look-card .picture-element-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-the-look-section .shop-the-look-popup {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-the-look-section .shop-the-look-popup.shown {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.shop-the-look-section .shop-the-look-popup.shown:after {
  content: "";
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.shop-the-look-section .shop-the-look-popup__scroll {
  overflow-y: auto;
  height: 100%;
  max-height: 100%;
}
.shop-the-look-section .shop-the-look-popup__inner {
  z-index: 101;
  min-height: 200px;
  max-height: 90%;
  background: #fff;
  height: 100%;
  position: relative;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup__inner {
    padding: 20px 10px 20px 20px;
  }
}
.shop-the-look-section .shop-the-look-popup__inner:before, .shop-the-look-section .shop-the-look-popup__inner:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.shop-the-look-section .shop-the-look-popup__inner:before {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 11;
  left: 0;
  top: 0;
}
.shop-the-look-section .shop-the-look-popup__inner:after {
  width: 20px;
  height: 20px;
  top: 100px;
  left: calc(50% - 10px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMCAyMCc+PHBhdGggZD0nTTIwIDEwYzAgNS41MjMtNC40NzcgMTAtMTAgMTBTMCAxNS41MjMgMCAxMCA0LjQ3NyAwIDEwIDB2MmMtNC40MTggMC04IDMuNTgyLTggOHMzLjU4MiA4IDggOCA4LTMuNTgyIDgtOGgyeicgZmlsbD0nIzAwMCc+PC9wYXRoPjwvc3ZnPg==");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation: rotate 0.5s linear infinite;
  z-index: 12;
  pointer-events: none;
}
.shop-the-look-section .shop-the-look-popup__inner.preloading * {
  opacity: 0;
}
.shop-the-look-section .shop-the-look-popup__inner.loading:before, .shop-the-look-section .shop-the-look-popup__inner.loading:after {
  opacity: 1;
  visibility: visible;
}
.shop-the-look-section .shop-the-look-popup__inner.loading:after {
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}
.shop-the-look-section .shop-the-look-popup__wrap {
  height: 100%;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup__wrap {
    flex-wrap: wrap;
  }
}
.shop-the-look-section .shop-the-look-popup__close {
  position: absolute;
  top: 6px;
  right: 8px;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup__close {
    top: 1px;
    right: 3px;
  }
}
.shop-the-look-section .shop-the-look-popup__close svg {
  width: 16px;
  height: 16px;
}
.shop-the-look-section .shop-the-look-popup .image-area {
  width: 35%;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup .image-area {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.shop-the-look-section .shop-the-look-popup .image-area img {
  width: 100%;
}
.shop-the-look-section .shop-the-look-popup .content-area {
  width: 65%;
  padding: 0 10px 0 50px;
}
.shop-the-look-section .shop-the-look-popup .content-area::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}
.shop-the-look-section .shop-the-look-popup .content-area::-webkit-scrollbar-thumb {
  background-color: rgba(222, 222, 222, 0.5);
}
@media (max-width: 1000px) {
  .shop-the-look-section .shop-the-look-popup .content-area {
    width: 100%;
    padding: 0 10px;
  }
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page {
  margin: 0 0 10px;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup .content-area .product-page {
    margin: 0 0 20px;
  }
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page:last-child {
  margin: 0;
}
@media (max-width: 1024px) {
  .shop-the-look-section .shop-the-look-popup .content-area .product-page .product-image-slider {
    min-height: unset;
  }
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product {
  padding: 0;
  margin: 0;
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__image-container {
  width: 180px;
  padding: 0 15px 0 0;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__image-container {
    width: 100px;
  }
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__image-container .keen-nav {
  padding: 0 10px;
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__image-container .keen-nav li .keen-arrow {
  width: 14px;
  height: 14px;
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__image-container .keen-nav li .keen-arrow svg {
  width: 10px;
  height: 10px;
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__details-container {
  width: calc(100% - 180px);
  max-width: 350px;
  padding: 0;
}
@media (max-width: 480px) {
  .shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__details-container {
    width: calc(100% - 100px);
  }
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__details-container .product__heading .meta {
  padding: 4px;
  font-size: 14px;
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__details-container .product__title {
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: none;
}
.shop-the-look-section .shop-the-look-popup .content-area .product-page .product .product__details-container .shopify-product-form .bttn:disabled {
  display: flex !important;
}

.search-overlay {
  --header-height: calc(var(--height-header) + var(--header-top-bar-height));
  --search-bar-height: 50px;
  display: none;
  border: none;
  position: fixed;
  top: calc(var(--search-bar-height) + 1px);
  width: 100vw;
  height: calc(100dvh - var(--search-bar-height));
  background: transparent;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  max-width: unset;
  max-height: unset;
  z-index: 100;
}
@media (min-width: 1300px) {
  .search-overlay {
    top: calc(-2px + var(--header-height));
    height: calc(100dvh - var(--header-height));
  }
}
.search-overlay__backdrop {
  background-color: transparent;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.search-overlay[aria-hidden=false] {
  display: block;
}
.search-overlay[aria-hidden=false] .search-overlay__backdrop {
  display: block;
}

.search-overlay__inner {
  background-color: #fff;
}

.search-overlay__view {
  display: none;
}
.search-overlay__view[aria-hidden=false] {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  z-index: 1;
}
@media (max-width: 1024px) {
  .search-overlay__view[aria-hidden=false] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-block-start: 20px;
  }
}

.search-overlay__view--results {
  padding: 30px 40px;
}
@media (max-width: 1024px) {
  .search-overlay__view--results {
    padding: 30px 0;
  }
}

.search-overlay__no-results {
  display: none;
}
.search-overlay__no-results[aria-hidden=false] {
  display: block;
  padding: 20px;
  grid-column: 1/span 12;
  text-align: center;
}
@media (max-width: 1024px) {
  .search-overlay__no-results[aria-hidden=false] {
    padding-inline: 0 40px;
  }
}

.search-overlay__no-results-text {
  font-weight: 600;
}

.search-overlay__aside {
  grid-column: 1/span 4;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-overlay__aside--default {
  padding: 30px 40px;
}
@media (max-width: 1024px) {
  .search-overlay__aside--default {
    padding: 0;
    padding-block-end: 20px;
    order: 1;
  }
}

.search-overlay__aside-section[aria-hidden=true] {
  display: none;
}

.search-overlay__aside-heading {
  font-family: "OpenSauceSans Regular", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .search-overlay__aside-heading {
    padding-block-end: 20px;
    padding-inline-start: 20px;
    margin: 0;
  }
}
.search-overlay__aside-list {
  display: grid;
  gap: 10px;
}
@media (max-width: 1024px) {
  .search-overlay__aside-list {
    display: flex;
    overflow: auto;
    padding: 0 20px;
    scrollbar-width: none;
  }
  .search-overlay__aside-list::-webkit-scrollbar {
    width: 0px; /* remove scrollbar space */
    height: 0;
    padding: 0;
    display: none;
    margin: 0;
    border: none;
    background: transparent; /* optional: just make scrollbar invisible */
  }
}

.search-overlay__aside-list-item {
  font-family: "OpenSauceSans Regular", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.search-overlay__aside-link {
  color: #636363;
  white-space: nowrap;
}

.search-overlay__aside-link span {
  color: #000;
}

.search-overlay__main {
  grid-column: 5/span 8;
  display: grid;
}

.search-overlay__main--default {
  display: flex;
  gap: 5px;
  grid-template-columns: repeat(2, 1fr);
  overflow: auto;
  padding-inline-end: 40px;
}
@media (max-width: 1024px) {
  .search-overlay__main--default {
    flex-direction: column;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .search-overlay__main--default {
    padding-block: 30px 50px;
  }
}

.search-overlay__main--results {
  gap: 20px;
}

.search-overlay__promo {
  position: relative;
  text-align: center;
}

@media (min-width: 1024px) {
  .search-overlay__promo-image {
    height: 100%;
  }
  .search-overlay__promo-image .rsp-Image {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .search-overlay__aside-list {
    min-width: unset;
  }
}
.search-overlay__promo-title {
  position: absolute;
  font-size: 24px;
  bottom: 20px;
  color: #fff;
  left: 20px;
}
@media (max-width: 1024px) {
  .search-overlay__promo-title {
    font-size: 18px;
  }
}

.search-overlay__promo-link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.search-overlay__main-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
@media (max-width: 1024px) {
  .search-overlay__main-list {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 20px;
    gap: 20px 5px;
  }
}

.search-overlay__main_header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .search-overlay__main_header {
    padding-inline: 20px;
  }
}

.search-overlay__main-header-total-results {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  height: -moz-fit-content;
  height: fit-content;
}

.search-overlay__main-header-see-all {
  font-weight: 600;
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: underline;
}

.search-overlay-product-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search-overlay-product-card:hover .search-overlay-product-card__image--hover {
  opacity: 1;
}

.search-overlay-product-card__image-wrapper {
  display: grid;
  position: relative;
  overflow: hidden;
}

.search-overlay-product-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/3;
  grid-column: 1;
  grid-row: 1;
}
.search-overlay-product-card__image--hover {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
}

.search-overlay-product-card__details {
  margin-top: 10px;
  display: grid;
  grid-template-areas: "title title" "price quick-add";
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  flex-grow: 1;
  align-items: flex-end;
}

.search-overlay-product-card__title {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  grid-area: title;
  align-self: flex-start;
  text-transform: capitalize;
}

.search-overlay-product-card__price-wrapper {
  grid-area: price;
  display: flex;
  gap: 5px;
}
.search-overlay-product-card__price-wrapper .sale-price {
  color: #dc323b;
  text-decoration: line-through;
}

.search-overlay-product-card__quick-add-trigger {
  position: relative;
  grid-area: quick-add;
  text-align: right;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: end;
}
.search-overlay-product-card__quick-add-trigger svg {
  width: 15px;
  height: 15px;
}

.search-overlay-product-card__link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
}

.search-overlay-product-card__quick-add-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.search-overlay-product-card__quick-add-wrapper[aria-hidden=false] {
  transform: translateY(0);
}

.search-overlay-product-card__quick-add .product-card-form {
  z-index: 20;
  inset: auto 0 0 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
  overflow: hidden auto;
  width: 100%;
  max-height: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #f7f6f0;
}
.search-overlay-product-card__quick-add .product-card-form::-webkit-scrollbar {
  width: 6px;
}
.search-overlay-product-card__quick-add .product-card-form::-webkit-scrollbar-track {
  background: transparent;
}
.search-overlay-product-card__quick-add .product-card-form::-webkit-scrollbar-thumb {
  background: #000;
}
.search-overlay-product-card__quick-add .product-card-form::-webkit-scrollbar-thumb:hover {
  background: #2c2c2c;
}
.search-overlay-product-card__quick-add .product-card-form .close-quick-add[data-close-quick-add] {
  width: 15px;
  height: 15px;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .close-quick-add[data-close-quick-add] {
    width: 12px;
    height: 12px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .close-quick-add[data-close-quick-add] svg {
  pointer-events: none;
  color: #000;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.search-overlay-product-card__quick-add .product-card-form .form-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 15px;
  padding: 15px;
}
@media only screen and (max-width: 767.98px) {
  .search-overlay-product-card__quick-add .product-card-form .form-content {
    padding: 12px;
  }
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .form-content {
    gap: 11px;
    padding: 10px 10px 13px 10px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .product-title {
  padding: 0;
  font-size: 16px;
}
.search-overlay-product-card__quick-add .product-card-form .product-link {
  flex: 100%;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
  text-align: left;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .product-link {
    font-size: 12px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .product-option-wrapper {
  width: 100%;
}
.search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container {
  position: relative;
  width: 100%;
  border: solid 1px #000000;
  font-size: 14px;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container {
    font-size: 12px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container select {
  width: 100%;
  padding: 9px 25px 9px 50px;
  padding-left: var(--option-name-offset);
  border: none;
  outline: none;
  color: #000000;
  background: #f7f6f0;
  font-size: inherit;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container select {
    padding: 7px 18px 7px 38px;
    padding-left: calc(var(--option-name-offset) - 10px);
  }
}
.search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container select:focus, .search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container select:active {
  border: none;
  outline: none;
}
.search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container .option-name {
  pointer-events: none;
  position: absolute;
  inset: 50% auto auto 8px;
  translate: 0 -50%;
  font-size: inherit;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container .option-name {
    inset: 50% auto auto 7px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 50% 12px auto auto;
  translate: 0 calc(-50% - 2px);
  rotate: 45deg;
  width: 10px;
  height: 10px;
  border: solid 1px #000;
  border-width: 0 1px 1px 0;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .product-option-wrapper .selector-container::after {
    width: 8px;
    height: 8px;
    inset: 50% 7px auto auto;
  }
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper {
  width: 100%;
  background: #000;
  padding: 15px 20px;
}
@media only screen and (max-width: 767.98px) {
  .search-overlay-product-card__quick-add .product-card-form .swatch-wrapper {
    padding: 12px;
  }
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .swatch-wrapper {
    padding: 10px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .swatch-heading {
  width: 100%;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
  .search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .swatch-heading {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .swatch-heading {
    font-size: 12px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .swatch-heading a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches {
  width: 100%;
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches {
    gap: 8px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches .swatch {
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 1/1.6;
  background: white;
  border: solid 1px #000;
  outline: solid 2px transparent;
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches .swatch:hover, .search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches .swatch.selected {
  outline-color: #ffffff;
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches .swatch.selected {
  pointer-events: none;
}
.search-overlay-product-card__quick-add .product-card-form .swatch-wrapper .product-swatches .swatches .swatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-overlay-product-card__quick-add .product-card-form .stock-indicator {
  flex: 100%;
  width: 100%;
  color: #000;
  font-size: 14px;
  text-align: left;
}
.search-overlay-product-card__quick-add .product-card-form .stock-indicator:empty {
  display: none;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .stock-indicator {
    font-size: 12px;
  }
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector {
  display: none;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border: solid 1px #000;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-input {
  width: 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus svg,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus svg,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-input svg {
  pointer-events: none;
  color: #000;
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus {
  cursor: pointer;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus:hover, .search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus:active,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus:hover,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus:active {
  background: #000;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus:hover svg, .search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-plus:active svg,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus:hover svg,
.search-overlay-product-card__quick-add .product-card-form .quantity-selector .quantity-minus:active svg {
  color: #fff;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector input.quantity-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  flex: 1;
  width: 51px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector input.quantity-input::-webkit-outer-spin-button, .search-overlay-product-card__quick-add .product-card-form .quantity-selector input.quantity-input::-webkit-inner-spin-button {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.disabled {
  display: none;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.max-reached .quantity-plus {
  opacity: 0.3;
  cursor: not-allowed;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.max-reached .quantity-plus:hover {
  background: none;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.max-reached .quantity-plus:hover svg {
  color: #000;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.min-reached .quantity-minus {
  opacity: 0.3;
  cursor: not-allowed;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.min-reached .quantity-minus:hover {
  background: none;
}
.search-overlay-product-card__quick-add .product-card-form .quantity-selector.min-reached .quantity-minus:hover svg {
  color: #000;
}
.search-overlay-product-card__quick-add .product-card-form .button-container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 23px;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form .button-container {
    gap: 10px 20px;
  }
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 35px;
  padding: 5px 10px;
  flex: 1;
  width: 100%;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
  .search-overlay-product-card__quick-add .product-card-form button.add-to-cart {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form button.add-to-cart {
    gap: 6px;
    font-size: 12px;
  }
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart .text {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart .product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 7.5px;
  pointer-events: none;
  color: #fff;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 575.98px) {
  .search-overlay-product-card__quick-add .product-card-form button.add-to-cart .product-price {
    gap: 5px;
  }
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart .product-price .sale-price {
  display: none;
  /*
          display: inline-block;
          opacity: 0.5;
          color: #dc323b;
          text-decoration: line-through;
          */
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart .product-price .sale-price + .price {
  display: inline-block;
  color: #fff;
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart .product-price::before {
  content: " - ";
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart svg {
  pointer-events: none;
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
}
@media only screen and (max-width: 991.98px) {
  .search-overlay-product-card__quick-add .product-card-form button.add-to-cart svg {
    display: none;
  }
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.search-overlay-product-card__quick-add .product-card-form button.add-to-cart[disabled] svg {
  display: none;
}

.breadcrumbs {
  font-size: 14px;
}
@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 20px;
  }
}
.breadcrumbs .sep {
  margin: 0 4px;
}

.rsp-Image {
  position: relative;
  display: flex;
  inline-size: 100%;
}

.rsp-Image_Image {
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (--sm) {
  .prd-Media .rsp-Image_Image {
    inline-size: auto;
  }
}
.prd-Card .rsp-Image_Image, .pgn-LoadMore_Card .rsp-Image_Image {
  -o-object-position: bottom;
     object-position: bottom;
}

@supports (aspect-ratio: 16/9) {
  .rsp-Image_Image {
    aspect-ratio: var(--Aspect_Ratio);
    block-size: 100%;
  }
}
@supports not (aspect-ratio: 16/9) {
  .rsp-Image::after {
    content: "";
    display: block;
    inline-size: 0;
    padding-block-start: var(--Image_AspectRatio);
  }
  .rsp-Image_Image {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 1;
    block-size: 100%;
  }
}
.dm-side-cart.dm-side-cart--no-recs .dm-side-cart__aside,
.dm-side-cart.dm-side-cart--no-recs .dm-side-cart__recs {
  display: none;
}
.dm-side-cart .scroll-disable {
  overflow: hidden;
}
.dm-side-cart__overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  background: #363636;
  transition: opacity 0.2s, visibility 0.2s linear;
}
.dm-side-cart__overlay.is-active {
  visibility: visible !important;
  opacity: 0.5 !important;
}
.dm-side-cart__popup {
  background-color: #fff;
  display: none;
  flex-direction: column;
  height: 100dvh;
  max-height: 100vh;
  max-width: 100%;
  position: fixed;
  right: -500px;
  top: 0;
  transition: right 0.2s;
  width: 100%;
  z-index: 200;
}
.dm-side-cart__popup.is-active {
  display: flex;
  flex-direction: row;
  right: 0 !important;
}
.dm-side-cart__popup.dm-side-cart__popup--empty .dm-side-cart__line-items,
.dm-side-cart__popup.dm-side-cart__popup--empty .dm-side-cart__aside,
.dm-side-cart__popup.dm-side-cart__popup--empty .dm-side-cart__recs {
  display: none;
}
.dm-side-cart__popup.dm-side-cart__popup--empty .dm-side-cart__upsell {
  display: block;
}
.dm-side-cart__popup.dm-side-cart__popup--empty .dm-side-cart__checkout-cta {
  pointer-events: none;
  opacity: 0.2;
}
.dm-side-cart__aside {
  border-right: 1px solid #000000;
  display: none;
  flex-direction: column;
  padding: 20px 20px 0 20px;
  width: 150px;
}
.dm-side-cart__aside[aria-hidden=true] {
  display: none;
}
.dm-side-cart__recs--desktop {
  display: none;
  overflow-y: auto;
  scrollbar-width: none;
}
.dm-side-cart__recs--desktop::-webkit-scrollbar {
  display: none;
}
.dm-side-cart__recs--mobile {
  display: block;
  margin-block: 20px;
  padding-inline-start: 20px;
}
.dm-side-cart__recs--mobile .dm-side-cart__recs-title {
  padding-inline-end: 90px;
}
.dm-side-cart__recs--mobile .swiper {
  overflow: visible;
}
.dm-side-cart__recs--mobile .dm-side-cart__recs-item.swiper-slide {
  height: auto;
}
.dm-side-cart__recs--mobile .dm-drawer-product-card__info {
  margin-top: auto;
}
.dm-side-cart__recs-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  margin-block-end: 20px;
}
.dm-side-cart__upsell {
  display: none;
  margin-block: 20px;
  padding-inline-start: 20px;
}
.dm-side-cart__upsell .swiper {
  overflow: visible;
}
.dm-side-cart__upsell .swiper-slide {
  height: auto;
}
.dm-side-cart__upsell .dm-drawer-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dm-side-cart__upsell .dm-side-cart__upsell-item-info,
.dm-side-cart__upsell .dm-drawer-product-card__info {
  margin-top: auto;
}
.dm-side-cart__upsells-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  margin-block-end: 20px;
  padding-inline-end: 90px;
}
.dm-side-cart__upsell-nav-wrapper, .dm-side-cart__recs-nav-wrapper {
  position: absolute;
  display: flex;
  gap: 10px;
  top: -40px;
  right: 16px;
}
.dm-side-cart__upsell-nav, .dm-side-cart__recs-nav {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.dm-side-cart__upsell-nav.swiper-button-disabled, .dm-side-cart__recs-nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.dm-side-cart__upsell-item {
  display: flex;
  flex-direction: column;
}
.dm-side-cart__upsell-item[aria-hidden=true] {
  display: none;
}
.dm-side-cart__upsell-item .rsp-Image {
  margin-block-end: 10px;
}
.dm-side-cart__main {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.dm-side-cart__header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.dm-side-cart__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.dm-side-cart__count {
  padding: 0 2px;
}
.dm-side-cart__close svg {
  pointer-events: none;
}
.dm-side-cart__shipping {
  background-color: #FEF8EE;
  padding: 10px 24px;
}
.dm-side-cart__shipping-amount {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.dm-side-cart__shipping-indicator {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  height: 4px;
  margin-block-start: 10px;
  margin-block-end: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.dm-side-cart__shipping-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  border-radius: 8px;
  background: #000000;
  width: var(--freeShippingPercentage);
  transition: all ease 0.3s;
}
.dm-side-cart__pre-order-message {
  padding: 10px 24px;
  color: #AB0000;
  font-size: 12px;
  border-bottom: 1px solid #FFEDED;
}
.dm-side-cart__pre-order-message[aria-hidden=true] {
  display: none;
}
.dm-side-cart__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
.dm-side-cart__body::-webkit-scrollbar {
  display: none;
}
.dm-side-cart__line-items {
  padding: 20px;
}
.dm-side-cart__line-item {
  display: flex;
  gap: 10px;
}
.dm-side-cart__line-item.hidden {
  display: none;
}
.dm-side-cart__line-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.dm-side-cart__line-item-img {
  width: 80px;
}
.dm-side-cart__line-item-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 80px);
}
.dm-side-cart__line-item-title {
  font-family: var(--font-heading), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  margin-block-end: 10px;
}
.dm-side-cart__line-item-price {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  margin-block-end: 5px;
}
.dm-side-cart__line-item-price-compare {
  text-decoration: line-through;
  color: red;
  margin-inline-end: 4px;
}
.dm-side-cart__line-item-options {
  display: flex;
  flex-wrap: wrap;
}
.dm-side-cart__line-item-option {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.dm-side-cart__line-item-option:not(:last-of-type)::after {
  content: "|";
  display: inline;
  margin: 0 4px 0 4px;
}
.dm-side-cart__line-item-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-block-start: auto;
}
.dm-side-cart__line-item-quantity {
  align-items: center;
  display: flex;
}
.dm-side-cart__line-item-quantity button {
  align-items: center;
  background-color: #F3F3F3;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}
.dm-side-cart__line-item-quantity svg {
  pointer-events: none;
}
.dm-side-cart__line-item-quantity-amt {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  width: 30px;
}
.dm-side-cart__line-item-remove {
  color: #666666;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}
.dm-side-cart__footer {
  border-top: 1px solid #000000;
  padding: 15px 20px;
}
.dm-side-cart__subtotal {
  display: flex;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 1.4;
  margin-block-end: 15px;
}
.dm-side-cart__checkout-cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}
.dm-side-cart__payments {
  margin-block-start: 15px;
}
.dm-side-cart__payments-list {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.dm-side-cart__payments-item:not(:last-of-type) {
  margin-inline-end: 4px;
}
.dm-side-cart__payments-item svg {
  width: 27px;
}
.dm-side-cart__additional-checkout-buttons {
  margin-block-start: 15px;
  width: 100%;
}
.dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] {
  display: flex;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  gap: 0 8px;
}
.dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] > li {
  height: 54px !important;
  flex-basis: 0;
  flex-grow: 1;
}
.dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] > li:nth-child(1):nth-last-child(4), .dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] > li:nth-child(2):nth-last-child(3), .dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] > li:nth-child(3):nth-last-child(2), .dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] > li:nth-child(4):nth-last-child(1) {
  flex-basis: auto;
  flex-grow: 0;
  width: calc(50% - 4px);
}
.dm-side-cart__additional-checkout-buttons [data-shopify-buttoncontainer] > li > * {
  height: 54px !important;
}
@media (max-width: 767px) {
  .dm-side-cart__popup {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .dm-side-cart__popup {
    width: auto;
  }
  .dm-side-cart__popup.is-active {
    display: flex;
    flex-direction: row;
    right: 0 !important;
  }
  .dm-side-cart__popup.dm-side-cart__popup--empty {
    max-width: 400px;
  }
  .dm-side-cart__aside {
    display: flex;
  }
  .dm-side-cart__main {
    width: 400px;
  }
  .dm-side-cart__popup--empty .dm-side-cart__main {
    width: 100%;
  }
  .dm-side-cart__upsell--desktop {
    display: flex;
  }
  .dm-side-cart__upsell--mobile {
    display: none;
  }
  .dm-side-cart__upsell .pre-order-controller {
    display: none;
  }
  .dm-side-cart__recs--desktop {
    display: block;
  }
  .dm-side-cart__recs--mobile {
    display: none;
  }
}

.dm-drawer-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dm-drawer-product-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  margin-block: 10px;
}
.dm-drawer-product-card__price {
  font-family: var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  margin-block-end: 10px;
}
.dm-drawer-product-card__compare-price {
  color: red;
  font-family: var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: line-through;
  margin-inline-start: 12px;
}
.dm-drawer-product-card__info {
  margin-top: auto;
}
.dm-drawer-product-card__info[aria-hidden=true] {
  display: none;
}
.dm-drawer-product-card__footer {
  display: flex;
  flex-direction: column;
}
.dm-drawer-product-card__variant-wrapper {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
.dm-drawer-product-card__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L5%205L9%201%22%20stroke%3D%22%23202020%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E);
  background-position: right 10px center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 400;
  height: 40px;
  margin-block-end: 5px;
  padding-inline: 9px;
  width: 100%;
}
.dm-drawer-product-card__select option:disabled {
  color: #ccc;
}
.dm-drawer-product-card__atc {
  background-color: #F3F3F3;
  color: #000000;
  font-family: var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 500;
  height: 40px;
  line-height: 1.4;
  padding: 0 12px;
  text-transform: none;
  width: 100%;
}

.product-usps-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
.product-usps-wrapper .heading {
  width: 100%;
  max-width: 598.5px;
  margin: 0 auto;
  color: #030303;
  font-size: 22px;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-heading), sans-serif;
}
.product-usps-wrapper .product-usps {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.product-usps-wrapper .product-usps .product-usp {
  color: var(--text-color);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.product-usps-wrapper .product-usps .product-usp .icon {
  width: 42px;
  height: 42px;
  background: var(--bg-color);
  border-radius: 100%;
  padding: 10px;
}
.product-usps-wrapper .product-usps .product-usp .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-usps-popups {
  display: flex;
  justify-content: start;
  margin-top: 6px;
  gap: 12px;
  width: 100%;
}
.product-usps-popups .tooltip {
  display: none;
  position: absolute;
  left: 0px;
  border: 1px solid #ddd;
  padding: 15px;
  background-color: var(--bg-color);
  color: var(--text-color);
  z-index: 1;
  width: 100%;
}
.product-usps-popups .tooltip .tooltip-title {
  font-size: 20px;
}
.product-usps-popups .tooltip .tooltip-description {
  font-size: 14px;
  line-height: 1.4;
}
.product-usps-popups .icon {
  width: 22px;
  height: 22px;
}
.product-usps-popups .icon.show-tooltip {
  cursor: pointer;
}
.product-usps-popups .icon[data-tooltip]:hover + .tooltip {
  display: block;
}

.shop-the-look-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
@media only screen and (max-width: 991.98px) {
  .shop-the-look-wrapper {
    overflow: visible;
  }
}
.shop-the-look-wrapper .heading {
  width: 100%;
  margin: 0 auto;
  color: #030303;
  font-size: 22px;
  text-align: left;
  font-weight: 400;
  font-family: var(--font-heading), sans-serif;
}
.shop-the-look-wrapper .shop-the-look-products {
  width: 100%;
  gap: 20px 4px;
  overflow: auto;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.shop-the-look-wrapper .shop-the-look-products::-webkit-scrollbar {
  height: 1px;
}
.shop-the-look-wrapper .shop-the-look-products::-webkit-scrollbar-track {
  background: #e5e5e5;
}
.shop-the-look-wrapper .shop-the-look-products::-webkit-scrollbar-thumb {
  background: #000;
}
.shop-the-look-wrapper .shop-the-look-products .product-card {
  min-width: 150px;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .product-title,
.shop-the-look-wrapper .shop-the-look-products .product-card .product-footer,
.shop-the-look-wrapper .shop-the-look-products .product-card .product-price {
  font-size: 14px;
  padding-left: 0;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .more-colours {
  display: none;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form .close-quick-add[data-close-quick-add] {
  width: 15px;
  height: 15px;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form .form-content {
  padding: 12px;
  gap: 10px;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form .swatch-wrapper,
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form .product-link {
  display: none;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form button.add-to-cart {
  font-size: 14px;
}
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form button.add-to-cart .product-price,
.shop-the-look-wrapper .shop-the-look-products .product-card .product-card-form button.add-to-cart svg {
  display: none !important;
}

.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  font-size: 12px;
  overflow: hidden;
  position: relative;
}
.product-card .product-image {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .product-card .product-image {
    padding-bottom: 152.5157232704%;
    overflow: hidden;
  }
}
.product-card .product-image .product-badges {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  padding: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}
.product-card .product-image .product-badges .product-badge {
  font-size: 12px;
  color: white;
  padding: 5px 10px;
  white-space: nowrap;
  background: #313131;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
}
.product-card .product-image .product-badges .product-badge.new-arrival-badge {
  background-color: var(--color-new-arrival-badge);
  color: var(--color-new-arrival-badge-text);
}
.product-card .product-image .product-badges .product-badge.sale-badge {
  background-color: var(--color-sale-badge);
  color: var(--color-sale-badge-text);
}
.product-card .product-image .product-badges .product-badge.low-stock-badge {
  background-color: var(--color-low-stock-badge);
  color: var(--color-low-stock-badge-text);
}
.product-card .product-image .product-badges .product-badge img {
  position: relative;
}
.product-card .product-image .product-badges .product-badge::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0.3;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  animation: badge_shine 10s infinite 3s;
}
@keyframes badge_shine {
  0% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.product-card .product-image img,
.product-card .product-image svg {
  isolation: isolate;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #fff;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .product-card .product-image img,
  .product-card .product-image svg {
    position: absolute;
  }
}
.product-card .product-image img.primary-image,
.product-card .product-image svg.primary-image {
  z-index: 1;
}
.product-card .product-image img.image-hover,
.product-card .product-image svg.image-hover {
  opacity: 0;
  transition: 0.5s all;
  transform: scale(1);
}
.product-card .product-image svg {
  width: 100%;
  height: auto;
}
.product-card .product-image svg:hover {
  fill: unset;
}
.product-card .product-image:hover:has(.secondary-image) .primary-image {
  opacity: 0;
}
.product-card .product-image .sold-out-label,
.product-card .product-image .coming-soon-label {
  pointer-events: none;
  z-index: 10;
  position: absolute;
  inset: auto 0 12px 0;
  width: 100%;
  padding: 12px;
  color: #030303;
  background: rgba(255, 255, 255, 0.64);
  font-family: var(--font-heading), sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-image .sold-out-label,
  .product-card .product-image .coming-soon-label {
    padding: 8px;
    inset: auto 0 5px 0;
    font-size: 16px;
  }
}
.product-card .product-image .sold-out-label {
  color: rgba(3, 3, 3, 0.65);
}
.product-card .product-image .coming-soon-label {
  background: rgba(3, 3, 3, 0.65);
  color: #ffffff;
}
@media only screen and (max-width: 991.98px) {
  .product-card .product-imageDesktop {
    display: none;
  }
}
@media only screen and (max-width: 991.98px) {
  .product-card .product-imageMobile {
    display: block;
  }
}
.product-card .product-title,
.product-card .product-footer {
  padding: 0 10px;
}
.product-card .product-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-heading), sans-serif;
  line-height: 1.2;
  text-transform: capitalize;
}
.product-card .product-price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-price {
    font-size: 14px;
  }
}
.product-card .product-price .sale-price {
  display: inline-block;
  color: #dc323b;
  text-decoration: line-through;
}
.product-card .product-price .sale-price + .price {
  display: inline-block;
  color: #000;
}
.product-card .product-footer {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 15px;
  justify-content: space-between;
  margin-top: auto;
}
.product-card .product-footer .pre-order-controller {
  display: none;
}
.product-card .product-footer .more-colours {
  flex: 100%;
  width: 100%;
  font-size: 14px;
  text-align: left;
}
.product-card .product-footer [data-quick-add].product-quick-add {
  width: 20px;
  height: 20px;
  justify-self: flex-end;
}
.product-card .product-footer [data-quick-add].product-quick-add svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #000;
}
.product-card .product-footer [data-quick-add].product-quick-add[aria-hidden=true] {
  display: none;
}
.product-card .button-wishlist {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
}
.product-card .button-wishlist svg {
  cursor: pointer;
}

.product-card .product-card-form {
  z-index: 20;
  inset: auto 0 0 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
  overflow: hidden auto;
  width: 100%;
  max-height: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #f7f6f0;
  opacity: 0;
  translate: 0 100%;
  pointer-events: none;
  box-shadow: 0px -3px 15px rgba(0, 0, 0, 0);
  transition: translate 0.15s ease-in, opacity 0.1s ease-in 0.05s, box-shadow 0.1s ease-in 0.1s;
}
.product-card .product-card-form.modal-open {
  opacity: 1;
  translate: 0;
  pointer-events: all;
  box-shadow: 0px -3px 15px rgba(0, 0, 0, 0.2);
}
.product-card .product-card-form::-webkit-scrollbar {
  width: 6px;
}
.product-card .product-card-form::-webkit-scrollbar-track {
  background: transparent;
}
.product-card .product-card-form::-webkit-scrollbar-thumb {
  background: #000;
}
.product-card .product-card-form::-webkit-scrollbar-thumb:hover {
  background: #2c2c2c;
}
.product-card .product-card-form .close-quick-add[data-close-quick-add] {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .close-quick-add[data-close-quick-add] {
    width: 16px;
    height: 16px;
  }
}
.product-card .product-card-form .close-quick-add[data-close-quick-add] svg {
  pointer-events: none;
  color: #000;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .product-card-form .form-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 15px;
  padding: 20px;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-card-form .form-content {
    padding: 12px;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .form-content {
    gap: 11px;
    padding: 10px 10px 13px 10px;
  }
}
.product-card .product-card-form .product-title {
  padding: 0;
  font-size: 16px;
}
.product-card .product-card-form .product-link {
  flex: 100%;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
  text-align: left;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .product-link {
    font-size: 12px;
  }
}
.product-card .product-card-form .product-option-wrapper {
  width: 100%;
}
.product-card .product-card-form .product-option-wrapper .selector-container {
  position: relative;
  width: 100%;
  border: solid 1px #000000;
  font-size: 14px;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .product-option-wrapper .selector-container {
    font-size: 12px;
  }
}
.product-card .product-card-form .product-option-wrapper .selector-container select {
  width: 100%;
  padding: 9px 25px 9px 50px;
  padding-left: var(--option-name-offset);
  border: none;
  outline: none;
  color: #000000;
  background: #f7f6f0;
  font-size: inherit;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .product-option-wrapper .selector-container select {
    padding: 7px 18px 7px 38px;
    padding-left: calc(var(--option-name-offset) - 10px);
  }
}
.product-card .product-card-form .product-option-wrapper .selector-container select:focus, .product-card .product-card-form .product-option-wrapper .selector-container select:active {
  border: none;
  outline: none;
}
.product-card .product-card-form .product-option-wrapper .selector-container .option-name {
  pointer-events: none;
  position: absolute;
  inset: 50% auto auto 8px;
  translate: 0 -50%;
  font-size: inherit;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .product-option-wrapper .selector-container .option-name {
    inset: 50% auto auto 7px;
  }
}
.product-card .product-card-form .product-option-wrapper .selector-container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 50% 12px auto auto;
  translate: 0 calc(-50% - 2px);
  rotate: 45deg;
  width: 10px;
  height: 10px;
  border: solid 1px #000;
  border-width: 0 1px 1px 0;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .product-option-wrapper .selector-container::after {
    width: 8px;
    height: 8px;
    inset: 50% 7px auto auto;
  }
}
.product-card .product-card-form .swatch-wrapper {
  width: 100%;
  background: #000;
  padding: 15px 20px;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-card-form .swatch-wrapper {
    padding: 12px;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .swatch-wrapper {
    padding: 10px;
  }
}
.product-card .product-card-form .swatch-wrapper .swatch-heading {
  width: 100%;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-card-form .swatch-wrapper .swatch-heading {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .swatch-wrapper .swatch-heading {
    font-size: 12px;
  }
}
.product-card .product-card-form .swatch-wrapper .swatch-heading a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.product-card .product-card-form .swatch-wrapper .product-swatches {
  width: 100%;
}
.product-card .product-card-form .swatch-wrapper .product-swatches .swatches {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-card-form .swatch-wrapper .product-swatches .swatches {
    gap: 8px;
  }
}
.product-card .product-card-form .swatch-wrapper .product-swatches .swatches .swatch {
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 1/1.6;
  background: white;
  border: solid 1px #000;
  outline: solid 2px transparent;
}
.product-card .product-card-form .swatch-wrapper .product-swatches .swatches .swatch:hover, .product-card .product-card-form .swatch-wrapper .product-swatches .swatches .swatch.selected {
  outline-color: #ffffff;
}
.product-card .product-card-form .swatch-wrapper .product-swatches .swatches .swatch.selected {
  pointer-events: none;
}
.product-card .product-card-form .swatch-wrapper .product-swatches .swatches .swatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card .product-card-form .stock-indicator {
  flex: 100%;
  width: 100%;
  color: #000;
  font-size: 14px;
  text-align: left;
}
.product-card .product-card-form .stock-indicator:empty {
  display: none;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .stock-indicator {
    font-size: 12px;
  }
}
.product-card .product-card-form .quantity-selector {
  display: none;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border: solid 1px #000;
}
.product-card .product-card-form .quantity-selector .quantity-plus,
.product-card .product-card-form .quantity-selector .quantity-minus,
.product-card .product-card-form .quantity-selector .quantity-input {
  width: 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-card-form .quantity-selector .quantity-plus svg,
.product-card .product-card-form .quantity-selector .quantity-minus svg,
.product-card .product-card-form .quantity-selector .quantity-input svg {
  pointer-events: none;
  color: #000;
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .product-card-form .quantity-selector .quantity-plus,
.product-card .product-card-form .quantity-selector .quantity-minus {
  cursor: pointer;
}
.product-card .product-card-form .quantity-selector .quantity-plus:hover, .product-card .product-card-form .quantity-selector .quantity-plus:active,
.product-card .product-card-form .quantity-selector .quantity-minus:hover,
.product-card .product-card-form .quantity-selector .quantity-minus:active {
  background: #000;
}
.product-card .product-card-form .quantity-selector .quantity-plus:hover svg, .product-card .product-card-form .quantity-selector .quantity-plus:active svg,
.product-card .product-card-form .quantity-selector .quantity-minus:hover svg,
.product-card .product-card-form .quantity-selector .quantity-minus:active svg {
  color: #fff;
}
.product-card .product-card-form .quantity-selector input.quantity-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  flex: 1;
  width: 51px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.product-card .product-card-form .quantity-selector input.quantity-input::-webkit-outer-spin-button, .product-card .product-card-form .quantity-selector input.quantity-input::-webkit-inner-spin-button {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}
.product-card .product-card-form .quantity-selector.disabled {
  display: none;
}
.product-card .product-card-form .quantity-selector.max-reached .quantity-plus {
  opacity: 0.3;
  cursor: not-allowed;
}
.product-card .product-card-form .quantity-selector.max-reached .quantity-plus:hover {
  background: none;
}
.product-card .product-card-form .quantity-selector.max-reached .quantity-plus:hover svg {
  color: #000;
}
.product-card .product-card-form .quantity-selector.min-reached .quantity-minus {
  opacity: 0.3;
  cursor: not-allowed;
}
.product-card .product-card-form .quantity-selector.min-reached .quantity-minus:hover {
  background: none;
}
.product-card .product-card-form .quantity-selector.min-reached .quantity-minus:hover svg {
  color: #000;
}
.product-card .product-card-form .button-container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 23px;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form .button-container {
    gap: 10px 20px;
  }
}
.product-card .product-card-form .product-card-pre-order {
  display: none;
}
.product-card .product-card-form button.add-to-cart {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 35px;
  padding: 5px 10px;
  flex: 1;
  width: 100%;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-card-form button.add-to-cart {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form button.add-to-cart {
    gap: 6px;
    font-size: 12px;
  }
}
.product-card .product-card-form button.add-to-cart .text {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.product-card .product-card-form button.add-to-cart .product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 7.5px;
  pointer-events: none;
  color: #fff;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-card-form button.add-to-cart .product-price {
    gap: 5px;
  }
}
.product-card .product-card-form button.add-to-cart .product-price .sale-price {
  display: none;
  /*
          display: inline-block;
          opacity: 0.5;
          color: #dc323b;
          text-decoration: line-through;
          */
}
.product-card .product-card-form button.add-to-cart .product-price .sale-price + .price {
  display: inline-block;
  color: #fff;
}
.product-card .product-card-form button.add-to-cart .product-price::before {
  content: " - ";
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.product-card .product-card-form button.add-to-cart svg {
  pointer-events: none;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
}
@media only screen and (max-width: 991.98px) {
  .product-card .product-card-form button.add-to-cart svg {
    display: none;
  }
}
.product-card .product-card-form button.add-to-cart[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.product-card .product-card-form button.add-to-cart[disabled] svg {
  display: none;
}

.loading-spinner {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
  top: calc(50% - 9px);
  right: calc(50% - 9px);
  display: none;
}
.loading-spinner__icon {
  animation: rotator 1.4s linear infinite;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.loading-spinner .path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: #000;
  animation: dash 1.4s ease-in-out infinite;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

.klarna-messaging::part(osm-container) {
  background-color: transparent !important;
  border: 0 !important;
  max-width: 100% !important;
  min-height: auto !important;
  padding: 0 !important;
  text-align: left !important;
}

.klarna-messaging::part(osm-message),
.klarna-messaging::part(osm-cta),
.klarna-messaging::part(osm-legal) {
  font-family: var(--font-body) !important;
  font-style: var(--font-body-style) !important;
  line-height: 1 !important;
  font-size: 12px;
  font-weight: 500;
}

.klarna-messaging::part(osm-message) {
  font-weight: 600 !important;
}

/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
| @namespace: prd
|
*/
.prd-Card {
  flex-direction: column;
  display: flex;
  block-size: 100%;
}

.prd-Card_Body {
  flex: 1;
  flex-direction: column;
  display: flex;
  padding: 17px 15px 0 0;
  gap: 15px;
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.prd-Card_Row-priceReviews {
  display: flex;
  justify-content: space-between;
}

.prd-Card_Title {
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  text-transform: capitalize;
  white-space: normal;
}

.prd-Card_Price {
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}
.prd-Card_Price .prd-Price {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}
.prd-Card_Price .prd-Price_RegularPrice {
  color: #dc323b;
}

.prd-Card_Colours {
  margin-block-start: 10px;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
*/
.prd-Card_MediaContainer {
  position: relative;
  display: flex;
  overflow: hidden;
}
.prd-Card_MediaContainer:hover {
  z-index: 1;
}
@media (max-width: 767px) {
  .prd-Card_MediaContainer {
    flex-direction: column;
  }
}

.prd-Card_Images {
  display: grid;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .prd-Card_Images {
    display: flex;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    will-change: scroll-position;
    scrollbar-width: none;
  }
}

.prd-Card_Image {
  display: flex;
  list-style: none;
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
}

@media screen and (min-width: 768px) {
  .prd-Card_Image {
    grid-row: 1;
    grid-column: 1;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 2;
    display: flex;
    inline-size: 100%;
    block-size: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  }
}
@media screen and (min-width: 768px) {
  .prd-Card-hasHover:hover .prd-Card_Image:not(.prd-Card_Image-hover) {
    opacity: 0;
    visibility: hidden;
  }
  .prd-Card_Image-hover {
    z-index: 1;
  }
}
/*
|--------------------------------------------------------------------------
| Tags
|--------------------------------------------------------------------------
|
*/
.prd-Card_Tags {
  position: absolute;
  inset-block-start: 12px;
  inset-inline: 15px;
  z-index: 2;
  display: flex;
  gap: 5px;
  pointer-events: none;
}

.prd-Card_Tag {
  display: block;
  padding: 2px 5px;
}

/*
|--------------------------------------------------------------------------
| Features
|--------------------------------------------------------------------------
|
*/
.prd-Card_Features {
  margin-block-end: 12px;
  line-height: 0;
}
.prd-Card_Features .product-badge-icon {
  display: none;
}

.prd-Card_Feature {
  display: inline;
  margin-inline-end: 5px;
}
.prd-Card_Feature:last-child {
  margin-inline-end: 0;
}
.prd-Card_Feature:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 1px;
  max-height: 13px;
  border-left: 1px solid #000;
}

/*
|--------------------------------------------------------------------------
| Quick add
|--------------------------------------------------------------------------
|
*/
.prd-Card_QuickAdd {
  background-color: #FDF8EF;
  inset-block-end: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  transition: background-color 0.3s ease;
  z-index: 2;
}
[data-has-pre-order-conflict=true] .prd-Card_QuickAdd {
  display: none;
}
.prd-Card_QuickAdd:hover {
  background-color: #000;
  color: #fff;
}
@media (min-width: 768px) {
  .prd-Card_QuickAdd {
    position: absolute;
    display: block;
    inset-block-end: 15px;
    inset-inline-end: 15px;
    inset-inline-start: 15px;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .prd-Card:hover .prd-Card_QuickAdd {
    transform: none;
  }
}

.prd-Card_QuickAddButton {
  inline-size: 100%;
  padding: 14px;
  pointer-events: auto;
  display: flex;
  justify-content: center;
}

.prd-Card_QuickAddButton:disabled,
.prd-Card_QuickAddButton:disabled:hover {
  color: #000000;
  background-color: #F3F3F3;
  pointer-events: none;
}

.prd-Card_QuickAddButtonText {
  font-size: 14px;
  font-weight: 500;
}

/*
|--------------------------------------------------------------------------
| Wishlist
|--------------------------------------------------------------------------
|
*/
.prd-Card_WishlistButton {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-end: 5px;
  z-index: 3;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
  inline-size: 32px;
  block-size: 32px;
  margin-inline-start: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 768px) {
  .prd-Card_WishlistButton {
    inset-block-start: 12px;
    inset-inline-end: 12px;
  }
}
.prd-Card_WishlistButton[data-swym-loaded=true] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.prd-Card_WishlistButton[data-in-wishlist=true] svg {
  fill: #000;
}

.prd-Card_WishlistButton svg {
  inline-size: 17px;
  block-size: 17px;
  fill: transparent;
  transition: fill 0.3s ease;
}
.prd-Card_WishlistButton:hover .prd-Card_WishlistButton svg {
  fill: currentColor;
}
[data-wishlist-added] .prd-Card_WishlistButton svg, .prd-Card_WishlistButton-remove .prd-Card_WishlistButton svg {
  fill: currentColor;
}

/*
|--------------------------------------------------------------------------
| Badges
|--------------------------------------------------------------------------
|
*/
.prd-Card_TopBage {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  background-color: #fff;
  border-radius: 100px;
  padding-block: 5px;
  padding-inline: 10px;
  display: flex;
  align-items: center;
  z-index: 3;
}
@media (min-width: 768px) {
  .prd-Card_TopBage {
    inset-block-start: 15px;
    inset-inline-start: 15px;
  }
}

.prd-Card_TopBageText {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  letter-spacing: 0px;
}

.prd-Card_Features .product-badges {
  display: flex;
  gap: 13px;
}

.prd-Card_Features .product-badge {
  position: relative;
}

.prd-Card_Features .product-badge:not(:first-child):before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  height: 12px;
  border-left: 1px solid #000;
}

.prd-Card_Features .product-badge-text {
  line-height: 140%;
  font-size: 12px;
}

.prd-Tags_Tag {
  background-color: var(--Color_White);
  font-size: 0.5em;
  padding: 8px 15px;
  border-radius: 15px;
}

/*
|--------------------------------------------------------------------------
| Drawer
|--------------------------------------------------------------------------
| @namespace: drw-
|
*/
.drw-Drawer {
  position: fixed;
  inset-block: 0;
  padding: 0;
  z-index: 11;
  margin: 0;
  max-block-size: none;
  max-inline-size: none;
  inset-inline-start: unset;
  display: flex;
  right: 0;
  background-color: #fff;
  border: unset;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s ease 0.3s, opacity 0.3s ease, transform 0.3s ease;
}

.drw-Drawer-fromRight {
  inset-inline-end: 0;
  transform: translateX(100%);
}

.drw-Drawer-fromLeft {
  inset-inline-start: 0;
  transform: translateX(-100%);
}

.drw-Drawer-popup {
  --DrawerHeader_Height: 50px;
  inset-block-start: 0;
  inset-inline-start: 0;
  justify-content: center;
  inline-size: 100%;
  block-size: -moz-fit-content;
  block-size: fit-content;
  margin-block-start: auto;
  background-color: transparent;
}
@media (min-width: 768px) {
  .drw-Drawer-popup {
    --DrawerHeader_Height: 70px;
  }
}
.drw-Drawer-popup .drw-Drawer_Inner {
  inline-size: 100vw;
  background-color: #fff;
}
.drw-Drawer-popup .drw-Drawer_Header {
  padding-block: 15px 0;
}
@media (min-width: 768px) {
  .drw-Drawer-popup .drw-Drawer_Header {
    padding-block-start: 25px;
  }
}

.drw-Drawer-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.drw-Drawer_Inner {
  position: relative;
  z-index: 2;
  flex-direction: column;
  display: flex;
  max-inline-size: 500px;
  inline-size: 95vw;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drw-Drawer_Inner.drw-Drawer_Inner-quickAdd {
  inline-size: 375px;
  max-inline-size: 100vw;
  height: 100dvh;
}
@media (min-width: 768px) {
  .drw-Drawer_Inner.drw-Drawer_Inner-quickAdd {
    inline-size: 400px;
  }
}

.drw-Drawer_Body {
  flex-grow: 1;
}
.drw-Drawer_Body .drw-Drawer_QuickAdd {
  height: 100%;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
|
*/
.drw-Drawer_Header {
  position: sticky;
  inset-block-start: 0;
  z-index: 3;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-between;
  display: flex;
  padding: 15px;
  background-color: #fff;
  gap: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.drw-Drawer_Header-transparent {
  background-color: transparent;
  color: #fff;
}

.drw-Drawer-scrolled .drw-Drawer_Header-transparent {
  background-color: #fff;
  color: #000;
}

.drw-Drawer_Logo {
  inline-size: 105px;
  block-size: 27px;
}
@media (min-width: 768px) {
  .drw-Drawer_Logo {
    inline-size: 145px;
    block-size: 38px;
  }
}

.drw-Drawer_Buttons {
  display: flex;
  margin-inline-end: -5px;
  gap: 12px;
}

.drw-Drawer_Button {
  align-items: center;
  justify-content: center;
  display: flex;
  inline-size: 30px;
  block-size: 30px;
}
.drw-Drawer_Button svg {
  inline-size: 20px;
  block-size: 20px;
}

.drw-Drawer_Close {
  position: absolute;
  right: 20px;
  top: 18px;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  z-index: 2;
  display: flex;
  inline-size: 32px;
  block-size: 32px;
  color: #000;
  transform: none;
  transition: transform 0.3s ease;
}
.drw-Drawer_Close:hover {
  transform: scale(1.1);
}
.drw-Drawer_Close svg {
  inline-size: 18px;
  block-size: 18px;
}

.drw-Drawer_Close--light svg rect {
  fill: #fff;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
|
*/
.drw-Drawer_Footer {
  position: sticky;
  inset-block-end: 0;
  z-index: 2;
  padding: 10px 20px;
  background-color: #fff;
}

/*
|--------------------------------------------------------------------------
| Drawers
|--------------------------------------------------------------------------
| @namespace: drw-
|
*/
.drw-Drawers_Drawer {
  position: relative;
  z-index: 11;
}

.drw-Drawers_Backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: rgba(32, 32, 32, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.drw-Drawers-active .drw-Drawers_Backdrop {
  opacity: 1;
  visibility: visible;
}

/*
|--------------------------------------------------------------------------
| Quick buy
|--------------------------------------------------------------------------
| @namespace: drw
|
*/
.drw-QuickAdd {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
*/
.drw-QuickAdd_MediaContainer {
  display: flex;
}

.drw-QuickAdd_Media {
  flex-shrink: 0;
  inline-size: 50%;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
|
*/
.drw-QuickAdd_Header {
  padding-block: 17px 9px;
  padding-inline: 20px;
  border-bottom: 1px solid #000;
}

.drw-QuickAdd_Title {
  margin-block-end: 10px;
  padding-inline-end: 32px;
}

.drw-QuickAdd_TitleLink {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  outline: none;
}

.drw-QuickAdd_Price .prd-Price {
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}

/*
|--------------------------------------------------------------------------
| Body
|--------------------------------------------------------------------------
|
*/
.drw-QuickAdd_Body {
  padding: 20px;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.drw-QuickAdd_Row {
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.drw-QuickAdd_Row-description {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.drw-QuickAdd_FullDetailsLink {
  font-weight: 600;
  text-decoration: underline;
  align-items: flex-start;
}

/*
|--------------------------------------------------------------------------
| Form
|--------------------------------------------------------------------------
|
*/
.drw-QuickAdd_Form {
  width: 100%;
}

.drw-QuickAdd_FormInfoRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.drw-QuickAdd_SizeLabel {
  font-size: 12px;
}

.drw-QuickAdd_SizeGuide {
  display: flex;
  gap: 6px;
  align-items: center;
}

.drw-QuickAdd_SizeGuideText {
  font-size: 12px;
  text-decoration: underline;
}

.drw-QuickAdd_SizeGuideIcon {
  display: flex;
}

.drw-QuickAdd_OptionSelect {
  padding: 12px 9px;
  font-size: 11px;
  width: 100%;
}

.drw-QuickAdd_ButtonContainer {
  width: 100%;
  margin-block-start: 10px;
}

.drw-QuickAdd_Button {
  padding: 15px;
  height: 50px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: #000;
  border: solid 1px #000;
}
.drw-QuickAdd_Button:hover {
  background: #fff;
  color: #000;
}

/*
|--------------------------------------------------------------------------
| Colour Swatches
|--------------------------------------------------------------------------
| @namespace: prd
|
*/
.prd-ColourSwatches_Link {
  display: flex;
  align-items: center;
  gap: -5px;
}

.prd-ColourSwatches_Swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, z-index 0.2s ease;
  margin-left: -5px;
}

.prd-ColourSwatches_Swatch-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.prd-ColourSwatches_Swatch:first-child {
  margin-left: 0;
}

.prd-ColourSwatches_UndrenderedSwatchText {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: 4px;
  font-size: 12px;
}

.prd-ColourSwatches_UndrenderedSwatchText svg {
  height: 10px;
  width: 10px;
}
.prd-ColourSwatches_UndrenderedSwatchText svg path {
  stroke: #000;
}

/*
|--------------------------------------------------------------------------
| Header dropdown
|--------------------------------------------------------------------------
| @namespace: hd
|
*/
.hd-Dropdown {
  position: relative;
  padding-block: 29px 45px;
  background-color: #fff;
}

/*
|--------------------------------------------------------------------------
| Columns
|--------------------------------------------------------------------------
|
*/
.hd-Dropdown_Columns {
  --Column_Count: 1;
  grid-template-columns: repeat(var(--Column_Count), 1fr);
  display: grid;
  gap: 5px;
}

.hd-Dropdown_Column {
  flex-direction: column;
  display: flex;
}

.hd-Dropdown_Block {
  flex: 1;
  flex-direction: column;
  display: flex;
}

.hd-Dropdown_Items {
  flex: 1;
  flex-direction: column;
  display: flex;
}
.hd-Dropdown_Items:hover {
  pointer-events: none;
}

.hd-Dropdown_Item:first-child .hd-Dropdown_Link {
  padding-block-start: 0;
}

/*
|--------------------------------------------------------------------------
| Heading
|--------------------------------------------------------------------------
|
*/
.hd-Dropdown_Heading {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: flex-start;
  line-height: 20px;
  margin-block-end: 12px;
}

.hd-Dropdown_Heading-hidden {
  visibility: hidden;
  pointer-events: none;
}

.hd-Dropdown_Column:last-child .hd-Dropdown_Heading-link {
  justify-content: flex-end;
}

/*
|--------------------------------------------------------------------------
| Links
|--------------------------------------------------------------------------
|
*/
.hd-Dropdown_Link {
  display: inline-block;
  padding-block: 10px;
}
@media (hover: hover) {
  .hd-Dropdown_Link:hover {
    pointer-events: auto;
  }
}

.hd-Dropdown_Link-button {
  padding-block: 0;
}

/*
|--------------------------------------------------------------------------
| Promo
|--------------------------------------------------------------------------
|
*/
.hd-Dropdown_Promo .rsp-Image {
  margin-block-end: 10px;
}
.hd-Dropdown_Promo .hd-Dropdown_PromoLink {
  align-items: center;
  display: flex;
}
.hd-Dropdown_Promo .hd-Dropdown_PromoLink svg {
  margin-block-start: 3px;
  margin-inline-start: 9px;
}

.product-page {
  /**
  * Modal.
  */
}
.product-page .size-selector__list {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.product-page .size-selector__list .size-selector__item {
  position: relative;
  width: 36px;
  height: 36px;
}
.product-page .size-selector__list .size-selector__item input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid;
  width: 100%;
  height: 100%;
}
.product-page .size-selector__list .size-selector__item input:checked + label {
  background-color: #F2C8C8;
}
.product-page .size-selector__list .size-selector__item label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page .size-selector__list .size-selector__item.sold-out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: rotate(-45deg);
}
.product-page .size-selector__list .size-selector__item.sold-out input:checked + label {
  background-color: #999999;
}
.product-page .product-image-area__container {
  display: flex;
  position: relative;
  align-self: flex-start;
  flex-wrap: wrap;
}
.product-page .product-image-area__container__zoom {
  opacity: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  transition: opacity 0.25s ease-in-out 0s;
  z-index: 1;
  pointer-events: none;
}
.product-page .product-image-area__container__zoom .icon {
  height: 27px;
  width: 27px;
}
@media (max-width: 1024px) {
  .product-page .product-image-area__container {
    padding-bottom: 80px;
  }
}
@media (max-width: 960px) {
  .product-page .product-image-area__container {
    flex-direction: column;
    padding-bottom: 0;
  }
}
.product-page .product-image-slider {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 89%;
  overflow: hidden;
  order: 0;
}
@media (max-width: 1024px) {
  .product-page .product-image-slider {
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
    min-height: 500px;
  }
  .product-page .product-image-slider .keen-slider__slide img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .product-page .product-image-slider .picture-element-wrapper {
    max-height: 443px;
  }
}
.product-page .product-image-slider .keen-slider__slide {
  opacity: 0;
}
.product-page .product-image-slider .active {
  position: relative;
  opacity: 1;
}
.product-page .product-image-slider .keen-nav {
  padding: 0 16px;
}
.product-page .product-image-slider .keen-nav li .keen-arrow {
  background-color: #ffffff;
}
.product-page .product-image-thumbs {
  background-color: #FFF;
  list-style: none;
  margin: 0;
  padding-right: 12px;
  padding-bottom: 30px;
  margin-top: 12px;
  width: 89% !important;
  order: 1;
  width: -webkit-fill-available;
  /**
  * Preload / prevent janky items.
  */
}
.product-page .product-image-thumbs__item {
  cursor: pointer;
}
@media (max-width: 960px) {
  .product-page .product-image-thumbs {
    order: 3;
    width: 100% !important;
    padding-right: 0;
    padding-bottom: 0;
    flex-direction: row;
    margin-bottom: 16px;
  }
}
.product-page .product-image-modal {
  background-color: #FFF;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.25s ease-in-out 0s;
  width: 100%;
  z-index: -1;
}
.product-page .product-image-modal__close {
  border: 0;
  background-color: transparent !important;
  padding: 32px;
  margin: auto;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.product-page .product-image-modal__close:hover {
  background-color: transparent !important;
}
.product-page .product-image-modal__close .icon {
  width: 27px;
  height: auto;
  margin-top: 5px;
  margin-right: 20px;
  transform: rotate(45deg);
}
.product-page .product-image-modal__inner {
  padding: 32px;
}
.product-page .product-image-modal__carousel {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-page .product-image-modal__item {
  opacity: 0;
}
.product-page .product-image-modal__item.active {
  width: 100%;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 100%;
  opacity: 1;
}
.product-page .product-image-modal.open {
  z-index: 99999;
  pointer-events: auto;
  opacity: 1;
}
.product-page .product-image-modal .keen-dots {
  bottom: -50px;
}
.product-page .product-image-modal [data-scroll-area] {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
@media (prefers-reduced-motion) {
  .product-page .product-image-modal {
    transition: none;
  }
}
.product-page .shopify-product-form .bttn:disabled {
  display: none !important;
}
.product-page .shopify-product-form .bttn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.product-page .shopify-product-form .klaviyo-bis-trigger {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(0, 0, 0) !important;
}
.product-page .breadcrumbs {
  margin: 16px 0 8px;
}
.product-page .breadcrumbs li {
  font-size: 14px;
}
.product-page .breadcrumbs li.sep {
  margin: 0 4px;
}
.product-page .variant-wrapper--fake {
  margin-bottom: 22px;
}
.product-page .variant-wrapper--fake .variant__label {
  display: block;
  text-transform: unset;
  margin-bottom: 5px;
}
.product-page .variant-wrapper--fake .variant__label .variant__label-info {
  text-transform: uppercase;
}
.product-page .variant-wrapper--fake .variant-wrapper--fake__items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-page .variant-wrapper--fake .variant-wrapper--fake__items .variant-wrapper--fake__items-swatch,
.product-page .variant-wrapper--fake .variant-wrapper--fake__items .variant-fake__image {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 3px 5px;
  border: 2px solid #fff;
  line-height: normal;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px #e8e8e1;
}
.product-page .variant-wrapper--fake .variant-wrapper--fake__items .variant-wrapper--fake__items-swatch--current,
.product-page .variant-wrapper--fake .variant-wrapper--fake__items .variant-fake__image--current {
  box-shadow: 0 0 0 2px #888883;
}

#shopify-section-ffc-header:has(.site-header.announcement-bar-enabled .announcement-text) .header {
  top: var(--header-top-bar-height);
}
#shopify-section-ffc-header:has(.site-header.announcement-bar-enabled .announcement-text) .header__mobile-search-trigger {
  top: calc(var(--header-top-bar-height) + var(--height-header));
}
#shopify-section-ffc-header:has(.site-header.announcement-bar-enabled .announcement-text) ~ .content-for-layout {
  margin-top: calc(var(--header-top-bar-height) + var(--height-header) + 44px);
}
@media (min-width: 1300px) {
  #shopify-section-ffc-header:has(.site-header.announcement-bar-enabled .announcement-text) ~ .content-for-layout {
    margin-top: calc(var(--header-top-bar-height) + var(--height-header));
  }
}

#shopify-section-ffc-header:not(:has(.site-header.announcement-bar-enabled .announcement-text)) .header {
  top: 0px;
}
#shopify-section-ffc-header:not(:has(.site-header.announcement-bar-enabled .announcement-text)) ~ .content-for-layout {
  margin-top: 90px;
}
@media only screen and (max-width: 960px) {
  #shopify-section-ffc-header:not(:has(.site-header.announcement-bar-enabled .announcement-text)) ~ .content-for-layout {
    margin-top: 70px;
  }
}
#shopify-section-ffc-header:not(:has(.site-header.announcement-bar-enabled .announcement-text)) ~ .content-for-layout .main-product #main-product {
  margin-top: 130px;
}
@media only screen and (max-width: 960px) {
  #shopify-section-ffc-header:not(:has(.site-header.announcement-bar-enabled .announcement-text)) ~ .content-for-layout .main-product #main-product {
    margin-top: 110px;
  }
}

.header__logo-image {
  grid-column: 1/span 3;
}
@media (min-width: 1300px) {
  .header__logo-image {
    grid-column: 1/span 1;
  }
}
.header .burger-menu-container {
  display: none;
  position: relative;
}
@media (max-width: 1299px) {
  .header .burger-menu-container {
    display: block;
  }
}
.header .burger-menu-container .burger-menu-inner {
  height: 15px;
  width: 18px;
  position: relative;
}
.header .burger-menu-container .burger-menu-inner:before,
.header .burger-menu-container .burger-menu-inner span, .header .burger-menu-container .burger-menu-inner:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  transition: opacity 0.35s ease, top 0.35s ease, transform 0.35s ease;
  backface-visibility: hidden;
}
.header .burger-menu-container .burger-menu-inner:before {
  top: 0;
}
.header .burger-menu-container .burger-menu-inner span {
  top: 7px;
}
.header .burger-menu-container .burger-menu-inner:after {
  top: 14px;
}
.header .nav__link:hover {
  opacity: 1;
  border-bottom: 1px solid currentColor;
}
.header .header-search {
  position: relative;
  cursor: pointer;
}
.header .header__icon--account a {
  display: flex;
}
.header .header__icon--search {
  position: absolute;
  left: 55px;
}
@media (min-width: 38em) and (max-width: 1024px) {
  .header .header__icon--search {
    left: 80px;
  }
}
@media (max-width: 960px) {
  .header .header__icon--search {
    margin-right: 10px;
  }
  .header .header__icon--search #search {
    width: 100%;
    height: 100%;
  }
  .header .header__icon--search #search > a {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1024px) {
  .header .header__icon--search {
    position: relative;
    left: unset;
  }
}
.header .header__icon--search .header-search__icon path:first-of-type {
  fill: #000;
}
.header .header__icon--cart {
  cursor: pointer;
}
.header .header__icon--cart a {
  pointer-events: none;
  display: block;
}
@media (max-width: 1299px) {
  .header .search-input {
    z-index: 11;
    position: fixed;
    left: 0;
    top: 0;
    height: auto;
  }
}
.header .search-input.active {
  visibility: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 1299px) {
  .header .search-input.active {
    width: 100%;
    padding: 0 20px;
  }
}
.header .search-input.active .search-input__close {
  display: flex;
}
.header .search-input__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  width: 100%;
  position: relative;
}
.header .search-input__search-icon {
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
}
.header .search-input__search-icon svg {
  width: 18px;
}
.header .search-input__form {
  display: flex;
  position: relative;
  z-index: 9;
  flex: 1 1 0;
  background: #fff;
  height: 100%;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .header .search-input__form {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.header .search-input__input-container {
  flex: 1 0;
}
.header .search-input__input {
  border: unset;
  height: 100%;
  width: 100%;
  background: transparent;
  font-size: 14px;
  height: 19px;
  border-bottom: unset;
  text-transform: capitalize;
}
@media (min-width: 1300px) {
  .header .search-input__input {
    border-bottom: 1px solid #000;
  }
}
.header .search-input__input::-moz-placeholder {
  text-transform: capitalize;
  padding-left: 3px;
}
.header .search-input__input::placeholder {
  text-transform: capitalize;
  padding-left: 3px;
}
.header .search-input__input:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 1023px) {
  .header .search-input__input:focus {
    border-bottom: unset;
  }
}
.header .search-input__input:focus-visible {
  border-radius: 0;
  outline: none;
}
.header .search-input__input::-moz-placeholder {
  color: var(--color-text-meta);
}
.header .search-input__input::placeholder {
  color: var(--color-text-meta);
}
.header .search-input__input::-webkit-search-cancel-button, .header .search-input__input::-webkit-search-decoration, .header .search-input__input::-webkit-search-results-button, .header .search-input__input::-webkit-search-results-decoration {
  display: none;
}
.header .search-input__input::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}
.header .search-input__close {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .header .search-input__close {
    position: absolute;
    left: 0;
    z-index: 10;
  }
}
.header .search-input__close svg {
  height: 19px;
  cursor: pointer;
  fill: #4d0000;
  transition: fill 0.45s;
}
.header .search-input__close:hover svg {
  fill: #990000;
}

.full-width-image > a {
  position: relative;
  z-index: 10;
}
.full-width-image .content-overlay {
  margin: 16px 0;
}
@media (max-width: 960px) {
  .full-width-image .content-overlay {
    margin: 0;
  }
}
@media (max-width: 1259px) {
  .full-width-image .content-overlay__inner {
    padding: 0 20px;
  }
}
.full-width-image .content-overlay__inner ul {
  list-style: disc;
  margin-left: 1em;
}
.full-width-image .content-overlay__inner ol {
  list-style: decimal;
  margin-left: 1em;
}
.full-width-image .content-overlay__inner a {
  color: inherit;
  text-decoration: underline;
}
.full-width-image .type-heading-1,
.full-width-image .type-body-regular,
.full-width-image .bttn,
.full-width-image .accent-link {
  text-transform: none !important;
}
@media (min-width: 961px) {
  .full-width-image .type-heading-1 {
    font-size: 4.5em;
  }
  .full-width-image .type-body-regular {
    font-size: 3em;
  }
  .full-width-image .bttn,
  .full-width-image .accent-link {
    font-size: 1.5em;
  }
}
.full-width-image .full-width-image__image {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .full-width-image .full-width-image__image {
    position: relative;
  }
}
.full-width-image .banners-mobile-image img {
  height: auto;
}
.full-width-image.full-width-image--3_2 .banners-mobile-image {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: auto !important;
  position: absolute;
  top: 0;
  bottom: 0;
}

@media (min-width: 961px) {
  .image-blocks {
    display: flex;
  }
}
.image-blocks__block {
  display: block;
  background-color: var(--block-background);
}
@media (min-width: 961px) {
  .image-blocks__block {
    flex-basis: 50%;
    padding: var(--block-padding);
  }
}
@media (max-width: 960px) {
  .image-blocks__block {
    padding: 0 var(--image-border-width);
  }
}
@media (max-width: 960px) {
  .image-blocks__block:nth-child(2) .image-blocks__block-inner {
    transform: translateY(calc(var(--block-overlap) * -1));
  }
}
.image-blocks__block video {
  width: 100%;
  height: 100%;
}
@media (min-width: 961px) {
  .image-blocks__block video {
    position: absolute;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 960px) {
  .image-blocks__block .picture-element-wrapper {
    padding-bottom: calc(var(--aspect-tablet) + var(--image-border-width));
  }
}
@media (min-width: 961px) {
  .image-blocks__block .picture-element-wrapper {
    padding-bottom: calc(var(--aspect-desktop) + var(--image-border-width));
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.image-blocks__block-content {
  text-align: var(--text-align);
  position: absolute;
  left: 0;
  width: 100%;
  padding: 16px;
}
.image-blocks__block-content--top {
  top: 0;
}
.image-blocks__block-content--middle {
  top: 50%;
  transform: translateY(-50%);
}
.image-blocks__block-content--bottom {
  bottom: 0;
}
@media (max-width: 960px) {
  .image-blocks__block-content--bottom {
    bottom: var(--text-offset, 0);
  }
}
.image-blocks__block-inner {
  position: relative;
  height: 100%;
  border: var(--image-border-width) solid var(--border-color);
}
.image-blocks__block-title {
  font-size: 24px;
  color: var(--title-color);
}
.image-blocks__block-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--cta-color);
  background-color: var(--cta-background);
}

.radiant-split-section {
  height: 100%;
}
@media (min-width: 961px) {
  .radiant-split-section {
    display: flex;
  }
}
.radiant-split-section__block {
  position: relative;
  color: inherit;
}
@media (min-width: 961px) {
  .radiant-split-section__block {
    width: var(--width);
  }
}
.radiant-split-section__image, .radiant-split-section__video {
  height: 100%;
}
.radiant-split-section__image img, .radiant-split-section__image video, .radiant-split-section__video img, .radiant-split-section__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
}
.radiant-split-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5%;
  flex-direction: column;
  gap: 16px;
}
.radiant-split-section__overlay > * {
  margin: 0;
}
.radiant-split-section__overlay-heading {
  color: var(--heading-color);
  font-size: 24px;
}
.radiant-split-section__overlay-text {
  color: var(--text-color);
}
.radiant-split-section__overlay-cta {
  display: inline-flex;
  color: var(--cta-color);
  background-color: var(--background);
  padding: 8px;
}
.radiant-split-section__overlay-cta:hover {
  color: var(--background);
  background-color: var(--cta-color);
}

.shop-the-look {
  padding: 4rem 40px;
  text-align: center;
}
.shop-the-look__title {
  margin-bottom: 24px;
}
.shop-the-look__inner {
  position: relative;
}
@media (min-width: 961px) {
  .shop-the-look__looks {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 960px) {
  .shop-the-look__looks {
    padding-bottom: 24px;
  }
}
.shop-the-look__look {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background-color: #fff;
  padding: 16px;
  flex-basis: 33%;
  border: 1px solid #ddd;
}
@media (min-width: 961px) {
  .shop-the-look__look:hover .shop-the-look__product-info {
    opacity: 1;
    visibility: visible;
  }
}
.shop-the-look__product {
  flex-basis: calc(33.3333333333% - 8px);
  min-width: calc(33.3333333333% - 8px);
  position: relative;
}
.shop-the-look__product-image {
  height: auto;
}
.shop-the-look__product-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s ease-in-out;
  background: #F2C8C8;
  padding: 8px;
  font-size: 14px;
  max-width: 100%;
  line-height: 1.2;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 1200px) {
  .shop-the-look__product-info {
    max-width: 81%;
  }
}
@media (max-width: 1200px) {
  .shop-the-look__product-info {
    word-wrap: break-word;
  }
}
.shop-the-look__arrows {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 80px);
}
.shop-the-look__arrows .keen-nav {
  padding: 0;
}
.shop-the-look__arrows .keen-nav li .keen-arrow {
  background-color: transparent;
}
.shop-the-look__arrows .keen-nav li .keen-arrow svg {
  width: 20px;
}

.image-and-text {
  margin: 40px auto;
  padding: 0 40px;
}
@media (max-width: 960px) {
  .image-and-text {
    padding: 0 20px;
  }
}
.image-and-text .section--inner {
  background: var(--background-color);
  color: var(--text-color);
  padding: 30px;
}
.image-and-text .section--inner .section-flex:after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 960px) {
  .image-and-text .section--inner .section-flex {
    display: block;
  }
}
.image-and-text .section--inner .section-flex .image-area {
  width: 300px;
}
@media (max-width: 960px) {
  .image-and-text .section--inner .section-flex .image-area {
    width: 45%;
    float: right;
    padding-bottom: 15px;
  }
}
@media (min-width: 961px) {
  .image-and-text .section--inner .section-flex .image-area + .content-area {
    width: calc(100% - 300px);
  }
}
.image-and-text .section--inner .section-flex .content-area {
  width: 100%;
  order: -1;
}
@media (max-width: 960px) {
  .image-and-text .section--inner .section-flex .content-area {
    width: 100%;
  }
}
.image-and-text .section--inner .section-flex .content-area .rte {
  line-height: 1.6;
}
.image-and-text .section--inner .section-flex .content-area .rte > * + * {
  margin-top: 24px;
}

.sec-GiftCardPromo_Grid {
  display: grid;
  grid-template-columns: 1fr;
}
.sec-GiftCardPromo_Info {
  padding-block: 20px 40px;
  padding-inline: 20px;
  width: 100%;
}
.sec-GiftCardPromo_Title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  font-weight: 600;
  line-height: 1.1;
  margin-block-end: 10px;
}
.sec-GiftCardPromo_Subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-block-end: 20px;
}
.sec-GiftCardPromo_Fieldset {
  display: flex;
  flex-wrap: wrap;
  border: 0;
  margin: 0 0 14px 0;
  padding: 0;
}
.sec-GiftCardPromo_Fieldset-colour {
  display: none;
}
.sec-GiftCardPromo_Option {
  display: flex;
  margin: 0 6px 6px 0;
}
.sec-GiftCardPromo_Option input:checked + label {
  background-color: #000;
  color: #fff;
}
.sec-GiftCardPromo_OptionLabel {
  border: 1px solid #000;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
}
.sec-GiftCardPromo_FormSubmit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #000;
  border-radius: 0;
  border: solid 1px #000;
  color: #fff;
  flex: 1;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  padding: 15px;
  width: 100%;
}
.sec-GiftCardPromo_FormSubmit .sec-GiftCardPromo_PreselectedTitle {
  display: none;
}
.sec-GiftCardPromo_FormSubmit:disabled {
  background: #fff;
  color: #000;
  cursor: not-allowed;
}
.sec-GiftCardPromo_FormSubmit:disabled .sec-GiftCardPromo_SelectedTitle {
  display: none;
}
.sec-GiftCardPromo_FormSubmit:disabled .sec-GiftCardPromo_PreselectedTitle {
  display: block;
}
@media (max-width: 767px) {
  .sec-GiftCardPromo .page-width {
    padding: 0;
  }
  .sec-GiftCardPromo_GridItem-left {
    order: 2;
  }
  .sec-GiftCardPromo_GridItem-right {
    order: 1;
  }
}
@media (min-width: 768px) {
  .sec-GiftCardPromo {
    margin: 40px 0;
  }
  .sec-GiftCardPromo_Grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 0;
  }
  .sec-GiftCardPromo_Info {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    max-width: 500px;
    padding: 0;
  }
  .sec-GiftCardPromo_Title {
    font-size: 36px;
    margin-block-end: 20px;
  }
  .sec-GiftCardPromo_OptionLabel:hover {
    background-color: #000;
    color: #fff;
  }
}

body:has(.tailoring-modal.active) {
  overflow: hidden;
}

.mobile-breadcrumbs {
  display: none;
}

@media (max-width: 768px) {
  .desktop-breadcrumbs {
    display: none;
  }
  .mobile-breadcrumbs {
    display: block;
  }
}
.main-product-oos {
  background: #f6f8fa;
  margin: 40px 0 20px;
  padding: 15px;
  box-sizing: border-box;
}
@media (min-width: 961px) {
  .main-product-oos {
    display: flex;
    margin: 40px 0 60px;
    padding: 25px;
  }
}
.main-product-oos h2 {
  text-transform: capitalize;
}
.main-product-oos #backinstockpdp {
  margin-top: 10px;
}
.main-product-oos .oos-product,
.main-product-oos .oos-form {
  width: 100%;
}
@media (min-width: 961px) {
  .main-product-oos .oos-product,
  .main-product-oos .oos-form {
    width: 50%;
  }
}
.main-product-oos .oos-form {
  padding: 15px 0 0;
  box-sizing: border-box;
}
@media (min-width: 961px) {
  .main-product-oos .oos-form {
    padding: 10px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.main-product-oos .oos-form form.notify-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.main-product-oos .oos-form form.notify-form .form-row {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: stretch;
  justify-content: flex-start;
}
@media (max-width: 480px) {
  .main-product-oos .oos-form form.notify-form .form-row {
    align-items: center;
    flex-direction: column;
  }
}
.main-product-oos .oos-form form.notify-form .form-field {
  flex: 1;
}
@media (max-width: 480px) {
  .main-product-oos .oos-form form.notify-form .form-field {
    width: 100%;
  }
}
.main-product-oos .oos-form form.notify-form .form-field input {
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  border: none;
  padding: 9px 15px;
}
.main-product-oos .oos-form form.notify-form button {
  white-space: nowrap;
  height: 36px;
  box-sizing: border-box;
  padding: 9px 27px;
}
.main-product-oos .oos-form p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.main-product-oos .oos-form .klaviyo-bis-trigger {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-product-oos .oos-product {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cbd2d8;
  padding: 0 0 15px;
}
@media (min-width: 961px) {
  .main-product-oos .oos-product {
    padding: 0;
    border: none;
    border-right: 1px solid #cbd2d8;
  }
}
.main-product-oos .oos-product.oos-product-full {
  border: none;
}
@media (min-width: 961px) {
  .main-product-oos .oos-product.oos-product-full {
    width: 100%;
  }
}
.main-product-oos .oos-product-image {
  position: relative;
  margin-right: 16px;
  overflow: hidden;
  flex: none;
}
@media (min-width: 961px) {
  .main-product-oos .oos-product-image {
    margin-right: 30px;
  }
}
.main-product-oos .oos-product-image img {
  display: block;
  width: 90px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-product-oos .oos-product-content h2 {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.2;
}
@media (min-width: 961px) {
  .main-product-oos .oos-product-content h2 {
    font-size: 18px;
    line-height: 1;
  }
}
.main-product-oos .oos-product-content .oos-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 500;
}
@media (min-width: 961px) {
  .main-product-oos .oos-product-content .oos-title {
    font-size: 22px;
    line-height: 1;
  }
}
.main-product-oos .oos-product-content a {
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  color: black;
}
.main-product-oos .oos-product-content a:hover {
  text-decoration: none;
}

.alternatives-products {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) {
  .alternatives-products {
    margin-bottom: 50px;
  }
}
.alternatives-products .alternatives-products-heading {
  margin-bottom: 15px;
}
.alternatives-products .keen-slider .keen-nav {
  top: 40%;
  padding: 0 3rem;
}
@media only screen and (max-width: 991.98px) {
  .alternatives-products .keen-slider .keen-nav {
    padding: 0 1rem;
  }
}

.alternatives-products + #main-product.product-template-wrapper {
  margin-top: 50px;
}

#main-product {
  display: grid;
  grid-template-columns: 66.6666666667% auto;
  gap: 40px;
  margin-top: 167px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991.98px) {
  #main-product {
    overflow: hidden;
    grid-template-columns: 100%;
    gap: 0;
    margin-top: 160px;
  }
}
#main-product .info-wrapper {
  position: relative;
}
#main-product .info-wrapper .product-info__sticky-container {
  position: static;
}
@media only screen and (max-width: 991.98px) {
  #main-product .info-wrapper .product-info__sticky-container {
    display: flex;
    flex-direction: column;
  }
  #main-product .info-wrapper .product-info__sticky-container .product-usps {
    order: 3;
  }
  #main-product .info-wrapper .product-info__sticky-container .product-usps-wrapper {
    order: 4;
  }
}
@media only screen and (min-width: 992px) {
  #main-product .info-wrapper .product-info__sticky-container {
    position: sticky;
    top: 140px;
  }
}
#main-product:has(.tailoring-modal.active) .product-info__sticky-container {
  position: inherit;
  top: 0;
}

#main-product .main-product-gallery {
  display: flex;
  flex-flow: column nowrap;
  margin: 0 -20px 0 0;
  opacity: 1;
  position: relative;
  transition: all 0.3s;
}
@media only screen and (min-width: 576px) {
  #main-product .main-product-gallery {
    margin: 0 -40px 0 0;
  }
}
@media only screen and (min-width: 992px) {
  #main-product .main-product-gallery {
    margin: 0;
    flex-flow: row nowrap;
    gap: 5px;
  }
}
#main-product .main-product-gallery__shop-the-look {
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  display: none;
  font-size: 14px;
  left: 10px;
  bottom: 10px;
  line-height: 1;
  padding: 8px 12px;
  position: absolute;
  z-index: 3;
}
@media only screen and (min-width: 992px) {
  #main-product .main-product-gallery__shop-the-look {
    bottom: unset;
    top: 20px;
    left: 20px;
  }
}
#main-product .main-product-gallery__shop-the-look.is-active {
  display: block;
}
#main-product .main-product-gallery__desktop-image {
  position: relative;
  width: 50%;
  padding-top: calc(80% - 5px);
  overflow: hidden;
}
#main-product .main-product-gallery__desktop-image:hover img {
  transform: scale(1.05);
}
#main-product .main-product-gallery__desktop-image img {
  transition: all 0.3s;
}
#main-product .main-product-gallery__desktop-image img,
#main-product .main-product-gallery__desktop-image video,
#main-product .main-product-gallery__desktop-image iframe,
#main-product .main-product-gallery__desktop-image model-viewer,
#main-product .main-product-gallery__desktop-image svg {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-product .main-product-gallery__swiper {
  position: relative;
  width: 100%;
}
#main-product .main-product-gallery__swiper.loading {
  width: 100%;
  max-height: 0;
  padding-top: 130.5128205128%;
}
@media only screen and (min-width: 992px) {
  #main-product .main-product-gallery__swiper.loading {
    width: 50%;
    padding-top: 80%;
  }
}
#main-product .main-product-gallery__swiper.loading .swiper-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#main-product .main-product-gallery__swiper.loading::after {
  content: "";
  z-index: 10;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  border-radius: 50%;
  border: solid 5px #000;
  border-right-color: transparent;
  animation: loading_spinner 0.75s ease-in-out infinite;
}
@keyframes loading_spinner {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
#main-product .main-product-gallery__swiper .swiper-wrapper {
  opacity: 1;
}
@media only screen and (min-width: 992px) {
  #main-product .main-product-gallery__swiper.swiper-initialized .main-product-gallery__navigation {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  #main-product .main-product-gallery__swiper {
    width: 50%;
  }
}
#main-product .main-product-gallery__image {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  position: relative;
}
#main-product .main-product-gallery__image.swiper-slide {
  padding-top: 130.5483028721%;
}
@media only screen and (min-width: 992px) {
  #main-product .main-product-gallery__image.swiper-slide {
    padding-top: 160%;
  }
  #main-product .main-product-gallery__image.swiper-slide:hover img {
    transform: scale(1.05);
  }
}
#main-product .main-product-gallery__image img {
  transition: all 0.3s;
}
#main-product .main-product-gallery__image img,
#main-product .main-product-gallery__image video,
#main-product .main-product-gallery__image iframe,
#main-product .main-product-gallery__image model-viewer,
#main-product .main-product-gallery__image svg {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-product .main-product-gallery__image-lightbox {
  display: none;
}
@media (min-width: 992px) {
  #main-product .main-product-gallery__image-lightbox {
    display: block;
    bottom: 0;
    height: 100%;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 2;
  }
}
#main-product .main-product-gallery__desktop-lightbox-controls {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
#main-product .main-product-gallery__lightbox-controls {
  display: none;
  position: absolute;
  gap: 5px;
  right: 10px;
  z-index: 2;
  bottom: 10px;
}
@media (min-width: 992px) {
  #main-product .main-product-gallery__lightbox-controls {
    height: calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #main-product .main-product-gallery__lightbox-controls:hover + .swiper-wrapper img {
    transform: scale(1.05);
  }
}
@media (min-width: 992px) {
  #main-product .main-product-gallery__lightbox-control {
    align-items: flex-end;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    width: 100%;
  }
}
#main-product .main-product-gallery__lightbox-control-icon {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
#main-product .main-product-gallery__lightbox-control-icon svg {
  height: 10px;
  width: 10px;
}
#main-product .main-product-gallery__navigation {
  display: none;
  position: absolute;
  top: calc(50% - 12px);
  right: 2%;
  left: 2%;
  z-index: 3;
  width: 96%;
  justify-content: space-between;
}
#main-product .main-product-gallery__zoom-icon {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  bottom: 10px;
  display: none;
  height: 24px;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 10px;
  width: 24px;
  z-index: 1;
}
#main-product .main-product-gallery__zoom-icon svg {
  height: 10px;
  width: 10px;
}
@media (min-width: 992px) {
  #main-product .main-product-gallery__zoom-icon {
    display: flex;
  }
}
#main-product .main-product-gallery__button {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
#main-product .main-product-gallery__button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main-product .main-product-gallery__button--modal svg {
  height: 10px;
  width: 10px;
}
#main-product .share {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 50px;
}
@media only screen and (max-width: 991.98px) {
  #main-product .share {
    display: none;
  }
}
#main-product .share .share__icon {
  width: 27px;
  height: 27px;
  margin-right: 0;
}
#main-product .share .share__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #000;
}

.main-product-info {
  margin: 40px 0 0 0;
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .main-product-info--desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-product-info--mobile {
    display: none;
  }
}
.main-product-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main-product-info__item {
  background: #FEF8EE;
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .main-product-info__item {
    border-radius: 16px;
  }
}
.main-product-info__item-trigger {
  display: flex;
  font-family: var(--font-heading), sans-serif;
  font-size: 22px;
  font-weight: 400;
  justify-content: space-between;
  padding: 18px 20px;
  text-align: left;
  text-transform: capitalize;
  width: 100%;
}
.main-product-info__item-trigger-icon {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
[aria-expanded=true] .main-product-info__item-trigger-icon {
  transform: rotate(180deg);
}
.main-product-info__item-content-wrapper {
  max-block-size: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
[aria-expanded=true] .main-product-info__item-content-wrapper {
  max-block-size: var(--Max_Height);
}
.main-product-info__item-content-inner {
  padding-inline: 20px;
}
@media only screen and (min-width: 611px) {
  .main-product-info__item-content-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding-inline-end: 80px;
    padding-block-end: 42px;
  }
}
@media only screen and (max-width: 610px) {
  .main-product-info__item-content {
    padding-block-end: 50px;
    padding-block-start: 20px;
  }
}
.main-product-info__item-title, .main-product-info__item-body {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.main-product-info__item-title {
  font-weight: 600;
}

.product-info {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 25px 10px;
}
.product-info .product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-info .product-badges .product-badge {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 50px;
  gap: 5px;
}
.product-info .product-badges .product-badge.new-arrival-badge {
  background-color: var(--color-new-arrival-badge);
  color: var(--color-new-arrival-badge-text);
}
.product-info .product-badges .product-badge.sale-badge {
  background-color: var(--color-sale-badge);
  color: var(--color-sale-badge-text);
}
.product-info .product-badges .product-badge.low-stock-badge {
  background-color: var(--color-low-stock-badge);
  color: var(--color-low-stock-badge-text);
}
.product-info .product-badges .product-badge .product-badge-icon {
  width: 20px;
}
.product-info .product-badges .product-badge .product-badge-text {
  font-size: 12px;
  line-height: 1.4;
}
.product-info .product-swatches {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 15px 10px;
}
.product-info .product-swatches .swatch-heading-wrapper {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-flow: row nowrap;
  gap: 6px;
}
.product-info .product-swatches .swatch-heading-wrapper .swatch-heading,
.product-info .product-swatches .swatch-heading-wrapper .swatch-name {
  font-size: 14px;
  color: #000;
}
.product-info .product-swatches .swatch-heading-wrapper .swatch-heading {
  font-weight: bold;
}
.product-info .product-swatches .swatch-heading-wrapper .swatch-name {
  font-weight: normal;
  text-transform: capitalize;
}
.product-info .product-swatches .swatches {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 6px;
}
.product-info .product-swatches .swatches .swatch {
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-width: 82px;
  aspect-ratio: 1/1.5;
  background: white;
  outline: solid 1px transparent;
}
.product-info .product-swatches .swatches .swatch:hover, .product-info .product-swatches .swatches .swatch.selected {
  outline-color: #000;
}
.product-info .product-swatches .swatches .swatch.selected {
  pointer-events: none;
}
.product-info .product-swatches .swatches .swatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-info .pre-order-warning {
  border: 1px solid #FFEDED;
  padding-block: 16px;
  padding-inline: 13px;
}
@media screen and (min-width: 768px) {
  .product-info .pre-order-warning {
    padding-block: 19px;
  }
}
.product-info .pre-order-warning[aria-hidden=true] {
  display: none;
}
.product-info .pre-order-warning__text {
  color: #AB0000;
  font-size: 12px;
  text-align: center;
}
.product-info .pre-order-warning__text span {
  font-weight: 700;
}
.product-info .free-shipping-msg {
  flex: 1 0 auto;
  text-align: center;
  background-color: #F3F3F3;
  font-size: 14px;
  line-height: 1.65;
  padding: 15px 50px;
}
.product-info .clearpay-banner square-placement {
  margin: 0;
}

form.product-form:not(.product-card-form) {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 20px;
}
form.product-form:not(.product-card-form) .info-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 20px;
}
form.product-form:not(.product-card-form) .info-content .info-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
form.product-form:not(.product-card-form) .info-content .product-title {
  font-size: 28px;
  text-align: left;
  text-transform: capitalize;
  font-weight: 400;
  font-family: var(--font-heading), sans-serif;
}
@media only screen and (min-width: 992px) {
  form.product-form:not(.product-card-form) .info-content .product-title {
    font-size: 36px;
  }
}
form.product-form:not(.product-card-form) .info-content .product-description {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}
form.product-form:not(.product-card-form) .info-content .product-description .read-more {
  cursor: pointer;
  display: inline;
  margin-top: 10px;
  margin-left: 3px;
  font-weight: bold;
  font-size: inherit;
  text-decoration: underline;
}
form.product-form:not(.product-card-form) .info-content .product-price {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
@media only screen and (min-width: 992px) {
  form.product-form:not(.product-card-form) .info-content .product-price {
    font-size: 16px;
  }
}
form.product-form:not(.product-card-form) .info-content .product-price .sale-price {
  display: inline-block;
  color: #dc323b;
  text-decoration: line-through;
}
form.product-form:not(.product-card-form) .info-content .product-price .sale-price + .price {
  display: inline-block;
  color: #000;
  margin-left: 5px;
}
form.product-form:not(.product-card-form) .button-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
form.product-form:not(.product-card-form) .button-container:has(.klaviyo-bis-trigger):has(button.add-to-cart.unavailable) button.add-to-cart {
  display: none;
}
form.product-form:not(.product-card-form) .stock-indicator {
  flex: 100%;
  width: 100%;
  margin-bottom: 5px;
  color: #000;
  font-size: 14px;
  text-align: left;
}
form.product-form:not(.product-card-form) .stock-indicator:empty {
  display: none;
}
form.product-form:not(.product-card-form) .quantity-selector {
  display: none;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border: solid 1px #000;
}
form.product-form:not(.product-card-form) .quantity-selector .quantity-plus,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus,
form.product-form:not(.product-card-form) .quantity-selector .quantity-input {
  width: 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
form.product-form:not(.product-card-form) .quantity-selector .quantity-plus svg,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus svg,
form.product-form:not(.product-card-form) .quantity-selector .quantity-input svg {
  pointer-events: none;
  color: #000;
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
form.product-form:not(.product-card-form) .quantity-selector .quantity-plus,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus {
  cursor: pointer;
}
form.product-form:not(.product-card-form) .quantity-selector .quantity-plus:hover, form.product-form:not(.product-card-form) .quantity-selector .quantity-plus:active,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus:hover,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus:active {
  background: #000;
}
form.product-form:not(.product-card-form) .quantity-selector .quantity-plus:hover svg, form.product-form:not(.product-card-form) .quantity-selector .quantity-plus:active svg,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus:hover svg,
form.product-form:not(.product-card-form) .quantity-selector .quantity-minus:active svg {
  color: #fff;
}
form.product-form:not(.product-card-form) .quantity-selector input.quantity-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  flex: 1;
  width: 51px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
form.product-form:not(.product-card-form) .quantity-selector input.quantity-input::-webkit-outer-spin-button, form.product-form:not(.product-card-form) .quantity-selector input.quantity-input::-webkit-inner-spin-button {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}
form.product-form:not(.product-card-form) .quantity-selector.disabled {
  display: none;
}
form.product-form:not(.product-card-form) .quantity-selector.max-reached .quantity-plus {
  opacity: 0.3;
  cursor: not-allowed;
}
form.product-form:not(.product-card-form) .quantity-selector.max-reached .quantity-plus:hover {
  background: none;
}
form.product-form:not(.product-card-form) .quantity-selector.max-reached .quantity-plus:hover svg {
  color: #000;
}
form.product-form:not(.product-card-form) .quantity-selector.min-reached .quantity-minus {
  opacity: 0.3;
  cursor: not-allowed;
}
form.product-form:not(.product-card-form) .quantity-selector.min-reached .quantity-minus:hover {
  background: none;
}
form.product-form:not(.product-card-form) .quantity-selector.min-reached .quantity-minus:hover svg {
  color: #000;
}
form.product-form:not(.product-card-form) button.add-to-cart {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  height: 50px;
  flex: 1;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
}
form.product-form:not(.product-card-form) button.add-to-cart .text {
  pointer-events: none;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  display: block;
}
form.product-form:not(.product-card-form) button.add-to-cart .text.select-size {
  display: none;
}
form.product-form:not(.product-card-form) button.add-to-cart[disabled] {
  background: #fff;
  color: #000;
  cursor: not-allowed;
}
form.product-form:not(.product-card-form) button.add-to-cart[disabled] .text {
  display: none;
}
form.product-form:not(.product-card-form) button.add-to-cart[disabled] .text.select-size {
  display: block;
}
form.product-form:not(.product-card-form) button.add-to-cart[disabled] + .klaviyo-bis-trigger {
  display: none !important;
}
form.product-form:not(.product-card-form) button.add-to-cart.unavailable + .klaviyo-bis-trigger {
  display: flex !important;
}
form.product-form:not(.product-card-form) .klaviyo-bis-trigger {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 50px;
  padding: 5px 10px;
  margin: 0;
  flex: 1;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
}
form.product-form:not(.product-card-form) .swym-button-bar {
  display: none;
}
form.product-form:not(.product-card-form) .wishlist-trigger {
  position: relative;
}
form.product-form:not(.product-card-form) .wishlist-trigger__button {
  padding: 15px;
  height: 50px;
  border: 1px solid #000;
  width: 100%;
}
form.product-form:not(.product-card-form) .wishlist-trigger__button[data-loading=true] .loading-spinner {
  display: inline-block;
}
form.product-form:not(.product-card-form) .wishlist-trigger__button[data-loading=true] .wishlist-trigger__text {
  display: none;
}
form.product-form:not(.product-card-form) .wishlist-trigger__button[data-added=false] .wishlist-trigger__text--added {
  display: none;
}
form.product-form:not(.product-card-form) .wishlist-trigger__button[data-added=true] .wishlist-trigger__text--add {
  display: none;
}
form.product-form:not(.product-card-form) .swym-wishlist-button-bar .swym-btn-container {
  width: 100%;
}
form.product-form:not(.product-card-form) .swym-wishlist-button-bar .swym-button {
  padding: 15px;
  height: 50px;
  border: 1px solid #000;
  color: #000 !important;
  opacity: 1 !important;
  width: 100%;
  text-indent: unset;
  display: block;
  line-height: inherit;
}
form.product-form:not(.product-card-form) .swym-wishlist-button-bar .swym-button .swym-tooltip {
  display: none !important;
}
form.product-form:not(.product-card-form) .swym-wishlist-button-bar .swym-button .swym-wishlist-cta {
  display: block !important;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  opacity: 1 !important;
}
form.product-form:not(.product-card-form) .swym-wishlist-button-bar .swym-button::after {
  display: none !important;
}
form.product-form:not(.product-card-form) .product-option-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 15px 10px;
  width: 100%;
}
form.product-form:not(.product-card-form) .product-option-wrapper .ks-chart-container {
  display: block;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 10px;
  font-size: 14px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper .option-heading,
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper .option-name {
  color: #000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper .option-heading {
  font-weight: bold;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper .option-name {
  font-weight: normal;
  text-transform: capitalize;
  white-space: nowrap;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper .ks-chart-container.sizing-chart-container {
  width: -moz-fit-content;
  width: fit-content;
  inset: 0 0 auto auto;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-heading-wrapper .ks-chart-container.sizing-chart-container .ks-chart-modal-link {
  margin: 0;
  font-size: 14px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 5px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios[data-pre-order-conflict=true] input[disabled]:not(.unavailable) + label::after {
  display: none;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios input[disabled] + label::after, form.product-form:not(.product-card-form) .product-option-wrapper .option-radios input.unavailable + label::after {
  display: block;
  background: #000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios input:checked + label {
  color: #fff;
  border-color: #000;
  background-color: #000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios input:checked + label::after {
  background: #fff;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios input.unavailable + label {
  opacity: 0.65;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios label {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  max-height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 40px;
  padding: 0 5px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  border: solid 1px #000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios label:hover {
  color: #fff;
  border-color: #000;
  background-color: #000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios label::after {
  content: "";
  display: none;
  width: 150%;
  height: 1px;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  rotate: -45deg;
  background: #000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-radios label.one-size {
  width: -moz-max-content;
  width: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 6px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  row-gap: 1rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
  margin-block-start: 7px;
}
@media only screen and (min-width: 768px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals {
    grid-template-columns: auto;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.tailoring a {
  text-decoration: underline;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.tailoring a svg {
  padding-right: 5px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.tailoring a:hover {
  text-decoration: none;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.sizing-chart {
  display: none;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional-base-style, form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional, form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.tailoring a {
  display: flex;
  align-items: center;
  font-size: 14px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional-base-style:nth-child(1), form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional:nth-child(1), form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.tailoring a:nth-child(1) {
  grid-column: 1/-1;
  order: 2;
}
@media only screen and (min-width: 768px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional-base-style:nth-child(1), form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional:nth-child(1), form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .additional.tailoring a:nth-child(1) {
    grid-column: 1;
    order: 0;
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
  gap: 6px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring button svg {
  width: 16px;
  height: 16px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal.active {
  display: block;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content {
  width: 90%;
  max-width: 911px;
  height: 100%;
  max-height: 75vh;
  margin: auto;
  display: flex;
  gap: 20px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content {
    height: 465px;
  }
}
@media only screen and (min-width: 1200px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content {
    width: 100%;
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-body {
    flex-direction: row;
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-image {
  flex: 1;
  height: 100%;
  overflow-y: hidden;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper {
  flex: 1;
  height: 100%;
  max-height: 50%;
  overflow: auto;
  align-content: center;
  background-color: #ffffff;
}
@media only screen and (min-width: 576px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper {
    max-height: 100%;
    /* display: flex;
    align-items: center; */
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text {
  padding: 15px;
  line-height: 21px;
}
@media only screen and (min-width: 768px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text {
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text {
    padding: 50px;
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text .tailoring-modal-title,
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text .tailoring-modal-subtitle {
  line-height: 45px;
  color: #030303;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text .tailoring-modal-title {
  font-weight: 500;
  font-size: 25px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text .tailoring-modal-subtitle {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 35px;
  color: #030303;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text .rich-text {
  margin-bottom: 22px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-text .text-content-2 {
  line-height: 21px;
  margin-bottom: 26px;
  font-weight: 600;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .modal-text-wrapper .modal-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  line-height: 17px;
  font-size: 14px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .tailoring-modal .modal-content .close {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 40px;
  font-weight: bold;
  line-height: 19px;
  cursor: pointer;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .free-shipping {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
  grid-column: 1/span 2;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .free-shipping-icon {
  width: 23px;
  height: 23px;
}
form.product-form:not(.product-card-form) .product-option-wrapper .option-additionals .free-shipping-text {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  text-transform: capitalize;
}
form.product-form:not(.product-card-form) .product-option-wrapper.colour-option {
  display: none;
}
form.product-form:not(.product-card-form) .product-option-wrapper .product-tag-wrapper {
  display: flex;
  width: 100%;
  gap: 5px;
  flex: 1;
  white-space: nowrap;
}
form.product-form:not(.product-card-form) .product-option-wrapper .product-tag-wrapper .size-tag {
  display: inline-block;
  background-color: #44B272;
  color: #fff;
  padding: 5px 10px;
  border-radius: 19px;
  font-size: 14px;
  position: relative;
}
form.product-form:not(.product-card-form) .product-option-wrapper .product-tag-wrapper .tooltip-description {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  padding: 10px;
  background-color: #44B272;
  color: #fff;
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}
@media only screen and (max-width: 575.98px) {
  form.product-form:not(.product-card-form) .product-option-wrapper .product-tag-wrapper .tooltip-description {
    max-width: 90vw;
    left: 0;
    transform: translateX(0);
  }
}
form.product-form:not(.product-card-form) .product-option-wrapper .product-tag-wrapper .size-tag.show-tooltip {
  cursor: pointer;
}
form.product-form:not(.product-card-form) .product-option-wrapper .product-tag-wrapper .size-tag:hover .tooltip-description {
  display: block;
}
form.product-form:not(.product-card-form) .product-option-wrapper.klarna-wrapper {
  width: 100%;
}

.main-product-sticky {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #000;
  pointer-events: all;
  z-index: 2;
}
@media (min-width: 961px) {
  .main-product-sticky {
    padding: 0px 40px;
  }
}
.main-product-sticky[aria-hidden=true] {
  display: none;
}
.main-product-sticky__wrapper {
  display: flex;
  flex-direction: row;
}
.main-product-sticky__header {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.main-product-sticky__title {
  font-size: 16px;
  line-height: 1.1;
}
.main-product-sticky__body {
  flex: 1 0 auto;
}
@media (min-width: 961px) {
  .main-product-sticky__body {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
.main-product-sticky__form, .main-product-sticky__details, .main-product-sticky__options, .main-product-sticky__option {
  display: flex;
  flex-direction: row;
}
.main-product-sticky__form {
  gap: 30px;
}
.main-product-sticky__details {
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.main-product-sticky__options {
  border-left: 2px solid #000;
  padding-left: 14px;
  gap: 0.25em;
}
.main-product-sticky__option {
  font-size: 14px;
  line-height: 1.4;
  gap: 0.25em;
}
.main-product-sticky__option.colour-option {
  display: none;
}
.main-product-sticky__option-title {
  font-weight: 600;
}
.main-product-sticky__option-change {
  cursor: pointer;
}
.main-product-sticky__option-change-text {
  text-decoration: underline;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.main-product-sticky__price .price {
  display: flex;
}
.main-product-sticky__price .price {
  font-size: 14px;
  font-weight: 500;
}
.main-product-sticky__cta {
  width: 100%;
}
@media (min-width: 961px) {
  .main-product-sticky__cta {
    padding: 8px 0;
  }
}
@media (min-width: 961px) {
  .main-product-sticky__cta {
    width: 230px;
  }
}
.main-product-sticky__cta button.add-to-cart {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  width: 100%;
  height: 50px;
  flex: 1;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
}
.main-product-sticky__cta button.add-to-cart .text {
  pointer-events: none;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  display: block;
}
.main-product-sticky__cta button.add-to-cart .text.select-size {
  display: none;
}
.main-product-sticky__cta button.add-to-cart[disabled], .main-product-sticky__cta button.add-to-cart.unavailable {
  display: none;
}
.main-product-sticky__cta button.add-to-cart[disabled] .text.add, .main-product-sticky__cta button.add-to-cart.unavailable .text.add {
  display: none;
}
.main-product-sticky__cta button.add-to-cart[disabled] .text.select-size, .main-product-sticky__cta button.add-to-cart.unavailable .text.select-size {
  display: block;
}
.main-product-sticky__cta button.add-to-cart[disabled] + .main-product-sticky__cta-change-button, .main-product-sticky__cta button.add-to-cart.unavailable + .main-product-sticky__cta-change-button {
  display: block;
}
.main-product-sticky__cta button.add-to-cart[disabled] + .main-product-sticky__cta-change-button + .klaviyo-bis-trigger, .main-product-sticky__cta button.add-to-cart.unavailable + .main-product-sticky__cta-change-button + .klaviyo-bis-trigger {
  display: flex;
}
.main-product-sticky__cta button.add-to-cart[disabled] + .klaviyo-bis-trigger {
  display: none;
}
.main-product-sticky__cta button.add-to-cart[disabled].unavailable + .klaviyo-bis-trigger {
  display: flex;
}
.main-product-sticky__cta-change-button {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  width: 100%;
  height: 50px;
  text-align: center;
  flex: 1;
  color: #000;
  background: #fff;
  border: solid 1px #000;
  border-radius: 0;
}
.main-product-sticky__cta-change-button .text {
  pointer-events: none;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.main-product-sticky__cta .klaviyo-bis-trigger {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 50px;
  padding: 5px 10px;
  margin: 0;
  flex: 1;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
}

.fslightbox-container .fslightbox-absoluted video {
  width: 100% !important;
  max-width: 600px;
  height: auto !important;
  max-height: 90dvh; /* Keeps the aspect ratio */
}

@media only screen and (max-width: 991.98px) {
  .product-information-section .page-width {
    padding: 0;
  }
}
.product-information-section .page-width .share {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .product-information-section .page-width .share {
    display: none;
  }
}
.product-information-section .page-width .share .share__icon {
  width: 27px;
  height: 27px;
  margin-right: 0;
}
.product-information-section .page-width .share .share__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #000;
}
.product-information-section .product-information-container {
  position: relative;
  margin-top: 71px;
  margin-bottom: 71px;
}
@media only screen and (max-width: 991.98px) {
  .product-information-section .product-information-container {
    margin-top: 50px;
    margin-bottom: 65px;
  }
}
.product-information-section .product-information-container.loading .tab-dropdown-wrapper {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .product-information-section .product-information-container.loading .tab-dropdown-wrapper {
    max-height: 0;
    width: 100%;
    padding-top: 32.1867030965%;
  }
}
.product-information-section .product-information-container.loading .tab-dropdown-wrapper .dropdown {
  opacity: 0;
}
.product-information-section .product-information-container.loading .tab-dropdown-wrapper::after {
  content: "";
  z-index: 10;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  border-radius: 50%;
  border: solid 5px var(--text-color);
  border-right-color: transparent;
  animation: loading_spinner 0.75s ease-in-out infinite;
}
@keyframes loading_spinner {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.product-information-section .product-information-container .tab-heading-wrapper,
.product-information-section .product-information-container .tab-dropdown-wrapper {
  width: 100%;
  margin: 0 auto;
}
.product-information-section .product-information-container .tab-heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 17px;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
}
.product-information-section .product-information-container .tab-heading-wrapper::-webkit-scrollbar {
  display: none;
}
.product-information-section .product-information-container .tab-heading-wrapper {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.product-information-section .product-information-container .tab-heading-wrapper .tab {
  scroll-snap-align: start;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 243px;
  font-size: 16px;
  text-align: center;
  font-weight: normal;
  white-space: nowrap;
  padding: 21px 20px 23.61px;
  border-radius: 250px 250px 0 0;
  cursor: pointer;
  color: var(--text-color);
  background: var(--inactive-tab-color);
  border: solid 1px var(--inactive-tab-color);
}
@media only screen and (max-width: 767.98px) {
  .product-information-section .product-information-container .tab-heading-wrapper .tab {
    min-width: 240px;
  }
}
.product-information-section .product-information-container .tab-heading-wrapper .tab .icon {
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.product-information-section .product-information-container .tab-heading-wrapper .tab .icon img,
.product-information-section .product-information-container .tab-heading-wrapper .tab .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-information-section .product-information-container .tab-heading-wrapper .tab.active {
  font-weight: bold;
  background: var(--tab-color);
  border: solid 1px var(--tab-color);
}
.product-information-section .product-information-container .tab-heading-wrapper .tab:last-of-type {
  margin-right: 0 !important;
}
.product-information-section .product-information-container .tab-dropdown-wrapper {
  overflow: hidden;
  max-height: var(--max-height);
  background: var(--tab-color);
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown {
  display: none;
  padding: 0;
  background: var(--tab-color);
  border: solid 1px var(--tab-color);
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown,
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown *:not(h1, h2, h3, h4) {
  font-size: 14px;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown * {
  line-height: 1.4;
  color: var(--text-color);
  opacity: 0;
  translate: 0 15px;
  transition: opacity 0.2s ease-in 0.2s, translate 0.2s ease-in 0.2s;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown.active {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown.active * {
  opacity: 1;
  translate: 0px;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .shipping-policy:empty,
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .refund-policy:empty {
  display: none;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .shipping-policy + .refund-policy {
  margin-top: 30px;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content,
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content-image {
  flex: 1;
  width: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 767.98px) {
  .product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content,
  .product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content-image {
    width: 100%;
    max-width: 100%;
  }
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content {
  max-height: var(--max-height);
  overflow: hidden auto;
  padding: 56px 43px 70px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media only screen and (max-width: 767.98px) {
  .product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content {
    padding: 40px 1.5rem;
  }
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content::-webkit-scrollbar {
  width: 5px;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content::-webkit-scrollbar-track {
  background: transparent;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content::-webkit-scrollbar-thumb {
  background: #000;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content .content-title {
  font-family: var(--font-heading), sans-serif;
  font-size: 30px;
  margin-bottom: 15px;
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content-image {
  overflow: hidden;
  aspect-ratio: 640/412;
}
@media only screen and (max-width: 767.98px) {
  .product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content-image {
    display: none;
  }
}
.product-information-section .product-information-container .tab-dropdown-wrapper .dropdown .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

nav.breadcrumbs ul {
  padding: 0;
}
nav.breadcrumbs ul li {
  display: inline-block;
  position: relative;
  padding: 4px;
}
nav.breadcrumbs ul li:first-of-type {
  padding-left: 0;
}
nav.breadcrumbs ul li a {
  font-size: 12px;
  text-transform: capitalize;
}
nav.breadcrumbs ul li:nth-of-type(n + 3) {
  color: #808080;
}
nav.breadcrumbs ul li:nth-of-type(n + 3):before {
  color: #000;
  content: "|";
  position: absolute;
  left: -4px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  font-size: 12px;
}

.dm-pdp-breadcrumbs {
  display: flex;
}
.dm-pdp-breadcrumbs.left {
  justify-content: flex-start;
}
.dm-pdp-breadcrumbs.center {
  justify-content: center;
}
.dm-pdp-breadcrumbs.right {
  justify-content: flex-end;
}

.usp-banner {
  display: flex;
  position: relative;
  scroll-margin-top: 128px;
}
@media (max-width: 960px) {
  .usp-banner {
    overflow: hidden;
  }
}
.usp-banner .page-width {
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .usp-banner .page-width {
    padding: 0;
  }
}
.usp-banner .page-width .breadcrumbs {
  padding-left: 0rem;
}
@media only screen and (max-width: 960px) {
  .usp-banner .page-width .breadcrumbs {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 610px) {
  .usp-banner .page-width .breadcrumbs {
    padding: 0 20px;
  }
}
.usp-banner .section {
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .usp-banner .section {
    padding: 0;
  }
}
.usp-banner .usp-banner-inner {
  margin-bottom: 0;
  margin: 0 auto;
}
@media (min-width: 961px) {
  .usp-banner .usp-banner-inner {
    width: 100%;
    display: flex;
  }
}
.usp-banner .usp-banner-inner .usp-banner-container {
  padding: 40px 0rem 20px;
}
@media only screen and (max-width: 960px) {
  .usp-banner .usp-banner-inner .usp-banner-container {
    padding: 40px 40px 20px;
  }
}
@media only screen and (max-width: 610px) {
  .usp-banner .usp-banner-inner .usp-banner-container {
    padding: 40px 20px 20px;
  }
}
@media (min-width: 961px) {
  .usp-banner .usp-banner-inner .usp-banner-container {
    padding: 112px 0rem;
    width: 45%;
  }
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-title,
.usp-banner .usp-banner-inner .usp-banner-container .usp-title > * {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: var(--font-heading), sans-serif;
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-content {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-button {
  background: #e8e4d4;
  padding: 10px 37px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-button a {
  font-weight: bold;
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-button:hover {
  background: #fff;
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-link {
  font-weight: bold;
  text-decoration: underline;
}
.usp-banner .usp-banner-inner .usp-banner-container .usp-link:hover {
  opacity: 0.8;
}
.usp-banner .usp-image {
  height: 100%;
  position: absolute;
  left: unset;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}
@media only screen and (max-width: 960px) {
  .usp-banner .usp-image {
    position: relative;
    width: 100%;
  }
  .usp-banner .usp-image:not(:has(img)) {
    background-repeat: no-repeat;
    aspect-ratio: 5/3;
  }
}
.usp-banner .usp-image img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: auto;
}
@media only screen and (max-width: 1199.98px) {
  .usp-banner .usp-image img {
    height: auto;
  }
}
@media only screen and (max-width: 960px) {
  .usp-banner .usp-image img {
    display: flex;
    position: relative;
    justify-self: center;
    width: 100%;
  }
}

.collection-banner {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  position: relative;
  scroll-margin-top: 128px;
}
@media (max-width: 960px) {
  .collection-banner {
    overflow: hidden;
  }
}
.collection-banner__breadcrumbs-wrapper {
  width: 100%;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  padding: 0 40px;
  margin-top: 10px;
}
@media only screen and (max-width: 607px) {
  .collection-banner__breadcrumbs-wrapper {
    padding: 0 20px;
  }
}
@media (min-width: 961px) {
  .collection-banner__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row: 1/span 1;
    grid-column: 1/span 1;
  }
}
.collection-banner__content {
  margin: 25px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 961px) {
  .collection-banner__content {
    padding: 0;
    margin: 50px 0;
  }
}
.collection-banner__content-inner {
  padding: 0 40px;
}
@media only screen and (max-width: 607px) {
  .collection-banner__content-inner {
    padding: 0 20px;
  }
}
.collection-banner__title, .collection-banner__title > * {
  font-size: 36px;
  line-height: 1.2;
  font-family: var(--font-heading), sans-serif;
}
.collection-banner__text {
  font-size: 14px;
  margin-top: 25px;
  line-height: 1.4;
}
.collection-banner__link {
  font-weight: bold;
  text-decoration: underline;
  margin-top: 15px;
}
.collection-banner__link:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 960px) {
  .collection-banner__image {
    position: relative;
    width: 100%;
  }
  .collection-banner__image:not(:has(img)) {
    background-repeat: no-repeat;
    aspect-ratio: 5/3;
  }
}

.styled-by-you-section {
  overflow: hidden;
  margin: 80px auto;
}
.styled-by-you-section:empty, .styled-by-you-section:not(:has(*)) {
  display: none;
}
.styled-by-you-section > .page-width {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 20px;
}
.styled-by-you-section .heading {
  width: 100%;
  margin-bottom: 20px;
  color: #030303;
  font-size: 30px;
  text-align: left;
  font-weight: bold;
  font-family: var(--font-heading), sans-serif;
}
.styled-by-you-section .styled-by-you-slider.swiper {
  width: 100%;
  overflow: visible;
}
.styled-by-you-section .styled-by-you-slider.swiper .swiper-slide {
  overflow: hidden;
  aspect-ratio: 1;
}
.styled-by-you-section .styled-by-you-slider.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recommended-products-section {
  overflow: hidden;
}
.recommended-products-section:empty, .recommended-products-section:not(:has(*)) {
  display: none;
}
.recommended-products-section .product-recommendations.page-width {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 20px;
  margin-bottom: 71px;
}
.recommended-products-section .product-recommendations.page-width.loading .recommendations-swiper.swiper {
  opacity: 0;
}
.recommended-products-section .heading-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 20px;
}
.recommended-products-section .heading-wrapper .heading {
  margin: 0 auto 0 0;
  color: #030303;
  font-size: 30px;
  text-align: left;
  font-weight: bold;
  font-family: var(--font-heading), sans-serif;
}
.recommended-products-section .heading-wrapper .swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 24px;
  height: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .recommended-products-section .heading-wrapper .swiper-navigation {
    display: none;
  }
}
.recommended-products-section .heading-wrapper .product-recommendations-navigation {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.5px;
  height: 31.5px;
  margin: 0;
}
.recommended-products-section .heading-wrapper .product-recommendations-navigation::after {
  content: unset;
  display: none;
}
.recommended-products-section .heading-wrapper .product-recommendations-navigation.swiper-button-prev {
  scale: -1 1;
}
.recommended-products-section .heading-wrapper .product-recommendations-navigation svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #000;
}
.recommended-products-section .recommendations-swiper.swiper {
  width: 100%;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.2s ease-in-out 0.5s;
}
@media (max-width: 992px) {
  .recommended-products-section .recommendations-swiper.swiper {
    overflow: visible;
  }
}

.faq-grid {
  padding: 80px 0 0;
}
@media (max-width: 1368px) {
  .faq-grid .accordion-faqs-tag-based-container {
    grid-template-columns: 1fr;
  }
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container {
  padding: 30px 0px 46px;
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .heading-md {
  width: 100%;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .heading-md {
    text-align: center;
  }
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion-wrapper {
  margin-bottom: 13px;
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #e8e4d4;
  cursor: pointer;
  padding: 13px 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 13px;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  line-height: 22px;
}
@media (max-width: 480px) {
  .faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion {
    font-size: 16px;
  }
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion > div {
  display: flex;
  align-items: center;
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion .custom-arrow {
  width: 30px;
  height: 30px;
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion .custom-arrow svg {
  width: 100%;
  height: 100%;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .accordion.active svg {
  transform: rotateX(180deg);
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 14px;
  line-height: 21px;
}
.faq-grid .accordion-faqs-tag-based-container .accordion-sub-container .panel .content {
  padding: 11px 0;
  font-size: 14px;
  font-weight: 300;
}

.dm-section-product-usps .page-width {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 30px;
  margin-bottom: 0px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .dm-section-product-usps .page-width {
    grid-template-columns: 1fr;
  }
  .dm-section-product-usps .page-width .desktop-filter-heading {
    display: none;
  }
}
.dm-section-product-usps .section-usps-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 20px;
  max-width: 946px;
  width: 100%;
  margin: 0 auto;
  padding: 6px 0;
}
.dm-section-product-usps .section-usps-wrapper .heading {
  width: 100%;
  max-width: 598.5px;
  margin: 0 auto;
  color: #030303;
  font-size: 30px;
  text-align: left;
  font-weight: bold;
  font-family: var(--font-heading), sans-serif;
}
.dm-section-product-usps .section-usps-wrapper .product-usps {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-flow: row wrap;
  gap: 15px 3.5px;
}
.dm-section-product-usps .section-usps-wrapper .product-usps .product-usp {
  color: var(--text-color);
  background: var(--bg-color);
  flex: 1;
  min-height: 118px;
  max-width: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 5px;
  padding: 11px 40px 7px;
  border-radius: 236px 236px 0 0;
}
@media only screen and (min-width: 992px) {
  .dm-section-product-usps .section-usps-wrapper .product-usps .product-usp {
    padding: 11px 28px 7px;
  }
}
@media only screen and (max-width: 319.98px) {
  .dm-section-product-usps .section-usps-wrapper .product-usps .product-usp {
    min-height: 98px;
  }
}
@media only screen and (max-width: 575.98px) {
  .dm-section-product-usps .section-usps-wrapper .product-usps .product-usp {
    min-width: calc(50% - 1.75px);
    width: calc(50% - 1.75px);
  }
}
.dm-section-product-usps .section-usps-wrapper .product-usps .product-usp .icon {
  width: 37px;
  height: 37px;
}
@media only screen and (max-width: 575.98px) {
  .dm-section-product-usps .section-usps-wrapper .product-usps .product-usp .icon {
    width: 26px;
    height: 26px;
  }
}
.dm-section-product-usps .section-usps-wrapper .product-usps .product-usp .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dm-section-product-usps .section-usps-wrapper .product-usps .product-usp p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  font-family: var(--font-heading), sans-serif;
}
@media only screen and (max-width: 767.98px) {
  .dm-section-product-usps .section-usps-wrapper .product-usps .product-usp p {
    font-size: 16px;
  }
}

.sec-Signposting_SpacingLarge {
  margin-block: 40px;
}
.sec-Signposting_SpacingSmall {
  margin-block: 20px;
}
.sec-Signposting_Title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-block-end: 20px;
  text-align: center;
}
.sec-Signposting_List {
  display: flex;
  gap: 5px;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sec-Signposting_ListItem {
  display: flex;
}
.sec-Signposting_ItemLink {
  border: 1px solid #000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 7px 20px;
}
@media (max-width: 767px) {
  .sec-Signposting .page-width {
    padding: 0;
  }
  .sec-Signposting_List {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 20px;
  }
  .sec-Signposting_List::-webkit-scrollbar {
    display: none;
  }
  .sec-Signposting_ListItem {
    flex: 0 0 auto;
  }
  .sec-Signposting_ItemLink {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .sec-Signposting_SpacingLarge {
    margin-block: 80px;
  }
  .sec-Signposting_SpacingSmall {
    margin-block: 40px;
  }
  .sec-Signposting_Title {
    font-size: 36px;
  }
  .sec-Signposting_List {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 896px;
  }
  .sec-Signposting_ItemLink:hover {
    background-color: #000;
    color: #fff;
  }
}

@media only screen and (min-width: 768px) {
  section#collection-grid {
    margin-top: 36px;
  }
}
section#collection-grid h1,
section#collection-grid h2 {
  font-size: 24px;
}
section#collection-grid #qf-filter-wrapper {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
}
section#collection-grid #qf-filter-wrapper .desktop-filter-heading {
  font-family: "OpenSauceSans", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .desktop-filter-heading svg {
  margin-right: 8px;
}
@media (max-width: 1024px) {
  section#collection-grid #qf-filter-wrapper {
    grid-template-columns: 2fr 5fr;
  }
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper {
    grid-template-columns: 1fr;
  }
  section#collection-grid #qf-filter-wrapper .desktop-filter-heading {
    display: none;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color);
  border-radius: 4px;
  height: -moz-max-content;
  height: max-content;
  max-height: 75vh;
}
@media only screen and (min-width: 768px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper {
    position: sticky;
    top: 150px;
    padding: 0;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .filter-group-display__submit {
    padding-bottom: 15px;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .filter-group-display__submit input {
  width: 100%;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .reset-filter-wrapper {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper {
    z-index: 10;
    position: fixed;
    inset: auto 0 0 0;
    border-radius: 0;
    background: #fff;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .filter-scroll-wrapper {
    overflow-y: hidden;
    max-height: 0;
    transition: 0.2s ease-in;
    width: 100vw;
    margin-left: -15px;
    padding: 0 15px;
    background-color: var(--primary-color);
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open .mobile-filter-heading {
    padding-bottom: 15px;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open .filter-scroll-wrapper {
    overflow-y: scroll;
    max-height: 60vh;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper.open .reset-filter-wrapper {
    position: fixed;
    inset: auto 0 15px 0;
    display: none;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading {
  display: none;
  padding: 11px;
  color: #fff;
  background: #000;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading > svg path {
  fill: #fff;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading > .chevron {
  scale: 1 -1;
  pointer-events: none;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading > .chevron path {
  fill: #fff;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading.open > .chevron {
  scale: 1 1;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading h2 {
  font-family: "OpenSauceSans", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading h2 svg {
  margin-right: 5px;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading svg {
  cursor: pointer;
  transition: 0.3s ease;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading svg.open {
  transform: rotateX(180deg);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .mobile-filter-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper {
    display: none;
    padding: 20px;
  }
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper.open {
    display: block;
    overflow: auto;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper .price-filter-container {
  margin: 20px 0;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper .price-filter-container .filter-heading {
  font-weight: bold;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper {
    margin-top: 15px;
  }
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-primary-color);
  font-family: "OpenSauceSans Regular", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  background: #e8e4d4;
  padding: 6px 8px;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter:last-child {
  margin-bottom: 15px;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter:hover svg {
  rotate: 90deg;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter svg {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}
section#collection-grid #qf-filter-wrapper .filter-container-wrapper .selected-filter-wrapper .selected-filter svg path {
  fill: var(--text-primary-color);
}
section#collection-grid #qf-filter-wrapper .custom-filter {
  margin-bottom: 15px;
  background-color: white;
  padding: 8px 10px 8px 12px;
}
section#collection-grid #qf-filter-wrapper .custom-filter[data-theme=sale] {
  display: none;
  background-color: transparent;
  border-radius: 0px;
  padding: 0;
}
section#collection-grid #qf-filter-wrapper .custom-filter[data-theme=sale] input {
  position: absolute;
}
section#collection-grid #qf-filter-wrapper .custom-filter label {
  display: block;
  position: relative;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .custom-filter label .product-count {
  opacity: 1;
  transition: opacity 1s ease;
}
section#collection-grid #qf-filter-wrapper .custom-filter label .product-count.d-none {
  opacity: 0;
  pointer-events: none;
}
section#collection-grid #qf-filter-wrapper .custom-filter .button {
  width: unset;
  text-align: center;
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading {
  margin: 0px;
  position: relative;
  cursor: pointer;
  font-family: "OpenSauceSans", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--text-primary-color);
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading svg {
  cursor: pointer;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-heading svg path {
  fill: var(--text-primary-color);
}
section#collection-grid #qf-filter-wrapper .custom-filter .filter-body {
  display: none;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-heading svg {
  transform: rotateX(180deg) translateY(8px);
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body {
  display: flex;
  gap: 0 10px;
  flex-direction: column;
  margin-top: 5px;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary-color);
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input {
  width: 0;
  height: 0;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label .custom-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  padding: 2px;
  margin-right: 20px;
  border: 1px solid #e8e4d4;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label .custom-check svg {
  opacity: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check {
  background: #e8e4d4;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check svg {
  opacity: 1;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check svg path {
  fill: #000000;
}
section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body label input:checked + span.label {
  font-weight: bold;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 425px) {
  section#collection-grid #qf-filter-wrapper .custom-filter.open .filter-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
section#collection-grid #qf-filter-wrapper .sort-container {
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
  color: var(--text-primary-color);
  padding-left: 70px;
  background-color: #fff;
}
section#collection-grid #qf-filter-wrapper .sort-container::before {
  content: "Sort By:";
  position: absolute;
  inset: 0 auto 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "OpenSauceSans", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .sort-container select {
  background-color: white;
  padding: 8px 28px 8px 12px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  width: 100%;
}
section#collection-grid #qf-filter-wrapper .sort-container select *:focus-visible {
  outline: none;
}
section#collection-grid #qf-filter-wrapper .sort-container svg {
  position: absolute;
  width: 15px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
section#collection-grid #qf-filter-wrapper .sort-container select:focus-visible svg {
  transform: rotateX("180deg");
}
section#collection-grid #qf-filter-wrapper #reset-filters {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: underline;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .custom-filter-load-more {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-top: 40px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  padding: 5px 35px;
  flex: 1;
  color: #fff;
  background: #000;
  border: solid 1px #000;
  border-radius: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}
section#collection-grid #qf-filter-wrapper .custom-filter-load-more:hover {
  background-color: rgb(37, 37, 37);
}
section#collection-grid #qf-filter-wrapper .custom-filter-load-more .load-more-spinner {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  right: calc(-50% + 25px);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #000;
  transition: 0.3s all;
}
section#collection-grid #qf-filter-wrapper .custom-filter-load-more .load-more-spinner .spinner-circle-outer {
  width: 100%;
  height: 100%;
}
section#collection-grid #qf-filter-wrapper .custom-filter-load-more .load-more-spinner.show {
  width: 30px;
  height: 30px;
  opacity: 1;
}
section#collection-grid #qf-filter-wrapper .price-wrapper {
  background-color: #fafafa;
  border-radius: 5px;
  padding: 10px 12px;
  padding-top: 10px;
  margin: 5px 0 15px 0;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .filter-heading {
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range ::-moz-selection {
  color: #fafafa;
  background: #000;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range ::selection {
  color: #fafafa;
  background: #000;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .wrapper {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range header h2 {
  font-size: 24px;
  font-weight: 600;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range header p {
  margin-top: 5px;
  font-size: 12px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .price-input-hidden {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field * {
  font-size: 12px;
  font-weight: 300;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field:first-of-type input {
  text-align: left;
  padding-left: 5px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .field:last-of-type input {
  text-align: right;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .field input {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  outline: none;
  font-size: 12px;
  border: none;
  -moz-appearance: textfield;
  background: #fafafa;
  -webkit-appearance: none;
  max-width: 37px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=number]::-webkit-outer-spin-button,
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .slider {
  height: 2px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  translate: 0 -1px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .slider .progress {
  height: 3px;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  translate: 0 -1.5px;
  background: var(--accent-2-color);
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .range-input {
  position: relative;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range .range-input input.range-min {
  left: -2px;
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-webkit-slider-thumb {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--accent-2-color);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-moz-range-thumb {
  height: 10px;
  width: 10px;
  border: none;
  border-radius: 50%;
  background: var(--accent-2-color);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-webkit-slider-thumb {
    height: 26px;
    width: 26px;
  }
  section#collection-grid #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-moz-range-thumb {
    height: 26px;
    width: 26px;
  }
}
section#collection-grid #qf-filter-wrapper .price-wrapper button {
  margin-top: 8px;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  section#collection-grid .collection-grid-wrapper {
    margin-top: 30px;
  }
}
section#collection-grid .collection-grid-wrapper .collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 4px;
  grid-row-gap: 30px;
  position: relative;
}
section#collection-grid .collection-grid-wrapper .collection-grid .spinner {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
}
section#collection-grid .collection-grid-wrapper .collection-grid .spinner .spinner-circle-outer {
  --circle-size: 100px;
}
section#collection-grid .collection-grid-wrapper .collection-grid.loading .product-card,
section#collection-grid .collection-grid-wrapper .collection-grid.loading #collection-grid-cta,
section#collection-grid .collection-grid-wrapper .collection-grid.loading #collection-grid-cta-2 {
  opacity: 0.6;
  filter: blur(2.4px) grayscale(0.2);
}
section#collection-grid .collection-grid-wrapper .collection-grid.loading .spinner {
  display: block;
}
@media only screen and (max-width: 1199.98px) {
  section#collection-grid .collection-grid-wrapper .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991.98px) {
  section#collection-grid .collection-grid-wrapper .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 25px;
  }
}
@media only screen and (max-width: 319.98px) {
  section#collection-grid .collection-grid-wrapper .collection-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 25px;
  }
}
section#collection-grid .cta-content {
  z-index: 5;
  flex-direction: column;
  cursor: pointer;
}
section#collection-grid #collection-grid-cta {
  grid-column-end: span 2;
  background-color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 30px;
  min-height: 410px;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
section#collection-grid #collection-grid-cta .overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 1;
}
section#collection-grid #collection-grid-cta .cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 236px;
  height: 236px;
  aspect-ratio: 1/1;
  position: absolute;
  padding: 50px 50px 150px;
  color: #000;
  right: 40px;
  bottom: 0;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(50%);
}
section#collection-grid #collection-grid-cta .cta-content.button-1 {
  background: #e8e4d4;
}
section#collection-grid #collection-grid-cta .cta-content.button-2 {
  background: #b3dfff;
}
section#collection-grid #collection-grid-cta .cta-content.button-3 {
  background: #80523c;
  color: #fff;
}
section#collection-grid #collection-grid-cta .cta-content.button-4 {
  background: #004d29;
  color: #fff;
}
section#collection-grid #collection-grid-cta .cta-content .banner-heading,
section#collection-grid #collection-grid-cta .cta-content .banner-heading * {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
section#collection-grid #collection-grid-cta .cta-content .banner-text,
section#collection-grid #collection-grid-cta .cta-content .banner-text * {
  font-size: 14px;
}
section#collection-grid #collection-grid-cta .cta-content span {
  display: block;
  font-family: "OpenSauceSans", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto;
  text-decoration: underline;
}
section#collection-grid #collection-grid-cta *:not(img) {
  position: relative;
  text-align: center;
}
section#collection-grid #collection-grid-cta img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
section#collection-grid #collection-grid-cta > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}
section#collection-grid #collection-grid-cta-2 {
  background-color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  padding-top: 30px;
  min-height: 410px;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
@media only screen and (max-width: 319.98px) {
  section#collection-grid #collection-grid-cta-2 {
    grid-column-end: span 1;
  }
}
section#collection-grid #collection-grid-cta-2 .overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 1;
}
section#collection-grid #collection-grid-cta-2 .cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 236px;
  height: 236px;
  aspect-ratio: 1/1;
  position: absolute;
  padding: 50px 50px 150px;
  color: #000;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(50%);
}
@media only screen and (max-width: 319.98px) {
  section#collection-grid #collection-grid-cta-2 .cta-content {
    height: auto;
    width: 100%;
    padding: 20px 42px;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 575.98px) {
  section#collection-grid #collection-grid-cta-2 .cta-content {
    width: 100%;
    height: auto;
    padding: 30px;
    justify-content: flex-start;
  }
}
section#collection-grid #collection-grid-cta-2 .cta-content.button-1 {
  background: #e8e4d4;
}
section#collection-grid #collection-grid-cta-2 .cta-content.button-2 {
  background: #b3dfff;
}
section#collection-grid #collection-grid-cta-2 .cta-content.button-3 {
  background: #80523c;
  color: #fff;
}
section#collection-grid #collection-grid-cta-2 .cta-content.button-4 {
  background: #004d29;
  color: #fff;
}
section#collection-grid #collection-grid-cta-2 .cta-content .banner-heading,
section#collection-grid #collection-grid-cta-2 .cta-content .banner-heading * {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 991.98px) {
  section#collection-grid #collection-grid-cta-2 .cta-content .banner-heading,
  section#collection-grid #collection-grid-cta-2 .cta-content .banner-heading * {
    font-size: 16px;
  }
}
section#collection-grid #collection-grid-cta-2 .cta-content .banner-text,
section#collection-grid #collection-grid-cta-2 .cta-content .banner-text * {
  font-size: 14px;
}
section#collection-grid #collection-grid-cta-2 .cta-content span {
  display: block;
  font-family: "OpenSauceSans", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto;
  text-decoration: underline;
}
section#collection-grid #collection-grid-cta-2 *:not(img) {
  position: relative;
  text-align: center;
}
section#collection-grid #collection-grid-cta-2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
section#collection-grid #collection-grid-cta-2 > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 991.98px) {
  section#collection-grid #collection-grid-cta-2 > div {
    gap: 6px;
  }
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199.98px) {
  .image-grid {
    gap: 15px;
  }
}
.image-grid .tile {
  flex: 49%;
  max-width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
@media only screen and (max-width: 1199.98px) {
  .image-grid .tile {
    max-width: 100%;
    flex: 100%;
  }
}
.image-grid .tile .image-blocks__block-image {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.image-grid .tile .image-blocks__block-image img.desktop-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1199.98px) {
  .image-grid .tile .image-blocks__block-image img.desktop-image {
    display: none;
  }
}
.image-grid .tile .image-blocks__block-image img.mobile-image {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1199.98px) {
  .image-grid .tile .image-blocks__block-image img.mobile-image {
    display: block;
  }
}
.image-grid .tile .image-blocks__block-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.image-grid .tile .image-blocks__block-title h2 {
  margin: 0;
  line-height: 51px;
  font-size: 40px;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.page-hero.page-width {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.page-hero.page-width *:focus:not(:focus-visible) {
  outline: 0 !important;
  box-shadow: none !important;
}
@media only screen and (max-width: 1199.98px) {
  .page-hero.page-width {
    flex-direction: column;
  }
  .page-hero.page-width.page-hero {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
}
.page-hero.page-width .col {
  flex: 0 0 50%;
}
@media only screen and (max-width: 1199.98px) {
  .page-hero.page-width .col {
    width: 100%;
  }
}
.page-hero.page-width .col.col-1 {
  position: relative;
}
.page-hero.page-width .col.col-1 .breadcrumbs {
  margin-top: 20px;
  z-index: 1;
}
.page-hero.page-width .col.col-1 .breadcrumbs * {
  color: var(--text-colour);
}
@media only screen and (max-width: 1199.98px) {
  .page-hero.page-width .col.col-1 {
    order: 1;
  }
}
.page-hero.page-width .col.col-1 .page-hero-content {
  padding-top: 92px;
  padding-bottom: 136px;
  display: flex;
  flex-direction: column;
}
.page-hero.page-width .col.col-1 .page-hero-content * {
  color: var(--text-colour);
}
.page-hero.page-width .col.col-1 .page-hero-content .page-hero-title {
  font-size: 36px;
  text-align: center;
  letter-spacing: 0;
  line-height: 46px;
  margin-bottom: 20px;
  z-index: 1;
}
.page-hero.page-width .col.col-1 .page-hero-content .page-hero-description * {
  line-height: 21px;
  letter-spacing: 0;
  font-size: 14px;
}
.page-hero.page-width .col.col-1 .page-hero-image {
  pointer-events: none;
}
.page-hero.page-width .col.col-1 .page-hero-image img.desktop-image {
  display: block;
  inset: 0;
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991.98px) {
  .page-hero.page-width .col.col-1 .page-hero-image img.desktop-image {
    display: none;
  }
}
.page-hero.page-width .col.col-1 .page-hero-image img.mobile-image {
  display: none;
  inset: 0;
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991.98px) {
  .page-hero.page-width .col.col-1 .page-hero-image img.mobile-image {
    display: block;
  }
}
.page-hero.page-width .col.col-1 .page-hero-content div {
  z-index: 1;
}
.page-hero.page-width .col.col-2 {
  padding: 47px 45px;
  overflow: hidden;
}
@media only screen and (max-width: 1199.98px) {
  .page-hero.page-width .col.col-2 {
    order: 3;
    margin: 30px 0;
  }
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 991.98px) {
  .page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header {
    padding-bottom: 20px;
  }
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .page-hero-col2-title {
  font-size: 30px;
  letter-spacing: 0;
  line-height: 49px;
  font-weight: 500;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 20px;
}
@media only screen and (max-width: 991.98px) {
  .page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls {
    margin-right: 10px;
  }
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls .swiper-button-prev {
  position: static;
  margin: 0;
  color: black;
  margin: -13px;
  transform: rotate(180deg);
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls .swiper-button-prev svg {
  width: 20px;
  height: 20px;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls .swiper-button-prev:after {
  content: none;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls .swiper-button-next {
  position: static;
  color: black;
  margin: 0;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls .swiper-button-next svg {
  width: 20px;
  height: 20px;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .swiper-header .swiper-controls .swiper-button-next:after {
  content: none;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .style-swiper {
  overflow: visible;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .style-swiper .swiper-wrapper {
  overflow: visible;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .style-swiper .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.page-hero.page-width .col.col-2 .style-swiper-wrapper .style-swiper .swiper-slide .page-hero-style-title {
  font-size: 16px;
  text-align: center;
  line-height: 21px;
  letter-spacing: 0;
  margin-top: 20px;
  font-weight: 500;
}
.page-hero.page-width .middle-row {
  overflow: hidden;
  width: 100%;
  order: 2;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.page-hero.page-width .middle-row .placeholder {
  height: 0px; /* Will be set dynamically */
}
.page-hero.page-width .middle-row .full-width-button-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.page-hero.page-width .middle-row .full-width-button-banner.fixed {
  position: fixed;
  top: 0; /* Default to top 0 when fixed; will adjust dynamically in JS */
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.page-hero.page-width .middle-row .full-width-button-banner .buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .page-hero.page-width .middle-row .full-width-button-banner .buttons-wrapper .full-width-button-banner-wrapper {
    display: flex;
    justify-content: center;
  }
}
.page-hero.page-width .middle-row .full-width-button-banner .button-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.page-hero.page-width .middle-row .full-width-button-banner .button {
  padding: 9px 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: 400;
}
.page-hero.page-width .middle-row .full-width-button-banner .button:hover {
  text-decoration: none;
  border-radius: 20px;
}
.page-hero.page-width .middle-row .full-width-button-banner .button .icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.page-hero.page-width .middle-row .full-width-button-banner .swiper-container {
  width: 100%;
}
.page-hero.page-width .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.page-hero.page-width .modal.active {
  display: block;
}
.page-hero.page-width .modal .modal-content {
  width: 90%;
  max-width: 911px;
  height: 100%;
  max-height: 75vh;
  margin: auto;
  display: flex;
  gap: 20px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .page-hero.page-width .modal .modal-content {
    height: 465px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-hero.page-width .modal .modal-content {
    width: 100%;
  }
}
.page-hero.page-width .modal .modal-content .modal-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .page-hero.page-width .modal .modal-content .modal-body {
    flex-direction: row;
  }
}
.page-hero.page-width .modal .modal-content .modal-image {
  flex: 1;
  height: 100%;
  overflow-y: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.page-hero.page-width .modal .modal-content .modal-image .modal-image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
  white-space: nowrap;
  letter-spacing: 0.8px;
  line-height: 51px;
}
.page-hero.page-width .modal .modal-content .modal-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper {
  flex: 2;
  height: 100%;
  max-height: 65%;
  overflow: auto;
  align-content: start;
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .page-hero.page-width .modal .modal-content .modal-text-wrapper {
    flex: 1;
    max-height: 100%;
  }
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text {
  padding: 15px;
  line-height: 21px;
}
@media only screen and (min-width: 768px) {
  .page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text {
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text {
    padding: 50px;
  }
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-title,
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-subtitle {
  line-height: 45px;
  color: #030303;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-title {
  font-weight: 500;
  font-size: 25px;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-subtitle {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 35px;
  color: #030303;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .rich-text {
  margin-bottom: 22px;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .text-content-2 {
  line-height: 21px;
  margin-bottom: 26px;
  font-weight: 600;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-button-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 23px;
  flex-flow: wrap;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-button-wrapper .modal-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  line-height: 17px;
  font-size: 14px;
}
.page-hero.page-width .modal .modal-content .modal-text-wrapper .modal-text .modal-button-wrapper .modal-button.modal-button-2 {
  padding: 10px 25px;
}
.page-hero.page-width .modal .modal-content .close {
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 1;
  font-size: 40px;
  font-weight: bold;
  line-height: 19px;
  cursor: pointer;
}

.denim-style {
  display: grid;
  margin: 4rem 0;
  scroll-margin-top: 180px;
}
.denim-style:focus-visible {
  outline: none;
}
@media only screen and (min-width: 768px) {
  .denim-style {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 6rem 0;
    scroll-margin-top: 165px;
  }
}
@media only screen and (min-width: 1024px) {
  .denim-style {
    grid-template-columns: 400px auto;
    scroll-margin-top: 185px;
  }
}
@media only screen and (min-width: 1440px) {
  .denim-style {
    scroll-margin-top: 245px;
  }
}
.denim-style-block {
  display: block;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .denim-style-block {
    padding: 0;
  }
}
.denim-style-details {
  min-height: 270px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  order: 2;
  gap: 2rem;
  padding: 0 1.5rem;
}
.denim-style-details h2, .denim-style-details h3 {
  align-content: center;
}
.denim-style-details h2 {
  font-size: 30px;
}
.denim-style-details h3 {
  justify-self: flex-end;
  font-weight: 500;
}
.denim-style-details h3:empty {
  display: none;
}
@media only screen and (min-width: 768px) {
  .denim-style-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    order: 1;
    padding: 0;
  }
  .denim-style-details h2, .denim-style-details h3 {
    flex: none;
  }
}
.denim-style-description, .denim-style-tags, .denim-style-selector, .denim-style-product-link {
  grid-column: span 2;
}
.denim-style-tags .product-tag-wrapper {
  display: grid;
  grid-template-columns: 100%;
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (min-width: 450px) {
  .denim-style-tags .product-tag-wrapper {
    grid-template-columns: auto;
    grid-auto-flow: column;
  }
}
.denim-style-tags .product-tag-wrapper .tooltip-description {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: var(--bg-color);
  color: var(--text-color);
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}
@media only screen and (max-width: 575.98px) {
  .denim-style-tags .product-tag-wrapper .tooltip-description {
    max-width: 90vw;
    left: 0;
    transform: translateX(0);
  }
}
.denim-style-tag {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border: 1px solid #000000;
  padding: 3px 10px;
  border-radius: 50px;
  background-color: var(--bg-color);
  font-size: 12px;
  font-weight: bold;
  color: var(--text-color);
}
.denim-style-tag.show-tooltip {
  cursor: pointer;
}
.denim-style-tag:hover .tooltip-description {
  display: block;
}
.denim-style-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, 45px);
  gap: 20px;
}
.denim-style-selector .denim-product {
  height: 67px;
  border: 1px solid #ffffff;
  overflow: hidden;
  cursor: pointer;
}
.denim-style-selector .denim-product.active {
  border: 1px solid #000000;
}
.denim-style-selector .denim-product img {
  pointer-events: none;
  touch-action: none;
  display: block;
  transition: scale 0.35s;
}
.denim-style-selector .denim-product:hover {
  border: 1px solid rgba(0, 0, 0, 0.35);
}
.denim-style-selector .denim-product:hover img {
  scale: 1.05;
}
.denim-style-images {
  order: 1;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .denim-style-images {
    order: 2;
    margin-bottom: 0;
  }
}
.denim-style-images, .denim-style-images video {
  height: 340px;
  overflow: hidden;
}
.denim-style-images video {
  min-width: 226px;
  -o-object-fit: cover;
     object-fit: cover;
}
.denim-style-product-link {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #000000;
  color: #ffffff;
}
.denim-style [id^=denim-style-swiper] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.denim-style [id^=denim-style-swiper] .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.denim-style [id^=denim-style-swiper] .swiper-button-prev {
  transform: rotate(180deg);
}
.denim-style [id^=denim-style-swiper] .swiper-button-prev,
.denim-style [id^=denim-style-swiper] .swiper-button-next {
  background: #fff;
  border: 1px solid #e2e1df;
  border-radius: 50%;
  cursor: pointer;
  height: 44px;
  width: 44px;
}
.denim-style [id^=denim-style-swiper] .swiper-button-prev:after,
.denim-style [id^=denim-style-swiper] .swiper-button-next:after {
  content: "";
}
.denim-style [id^=denim-style-swiper] .swiper-button-prev svg,
.denim-style [id^=denim-style-swiper] .swiper-button-next svg {
  height: unset;
  width: unset;
}

.dm-page-header-wrapper .page-width {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0px;
}
@media only screen and (max-width: 991.98px) {
  .dm-page-header-wrapper .page-width {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.dm-page-header-wrapper .page-width .left-side {
  display: flex;
  flex-direction: column;
  gap: 73px;
  padding-left: 40px;
  padding-top: 20px;
}
@media only screen and (max-width: 991.98px) {
  .dm-page-header-wrapper .page-width .left-side {
    gap: 28px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 610px) {
  .dm-page-header-wrapper .page-width .left-side {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.dm-page-header-wrapper .page-width .left-side .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
.dm-page-header-wrapper .page-width .left-side .breadcrumbs li {
  font-size: 1rem;
  color: #333;
  line-height: 21px;
}
.dm-page-header-wrapper .page-width .left-side .breadcrumbs li a {
  text-decoration: none;
  color: #000;
}
.dm-page-header-wrapper .page-width .left-side .breadcrumbs li a:hover {
  text-decoration: underline;
}
.dm-page-header-wrapper .page-width .left-side .breadcrumbs .sep {
  color: #888;
}
.dm-page-header-wrapper .page-width .left-side .text-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 75px;
}
@media only screen and (max-width: 991.98px) {
  .dm-page-header-wrapper .page-width .left-side .text-content-wrapper {
    margin-bottom: 0px;
  }
}
.dm-page-header-wrapper .page-width .left-side .text-content-wrapper .heading {
  font-size: 36px;
  margin-bottom: 0;
  line-height: 46px;
}
.dm-page-header-wrapper .page-width .left-side .text-content-wrapper .text-content * {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10px;
}
.dm-page-header-wrapper .page-width .image-wrapper {
  display: flex;
  align-items: end;
}
.dm-page-header-wrapper .page-width .image-wrapper img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 991.98px) {
  .dm-page-header-wrapper .page-width .image-wrapper img.desktop-image {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .dm-page-header-wrapper .page-width .image-wrapper img.mobile-image {
    display: none;
  }
}

.infinite-slider-section {
  display: flex;
  flex-flow: column;
  align-items: center;
  background-color: var(--bg-color);
  color: var(--text-color);
}
.infinite-slider-section.page-width {
  padding: 0;
}

.infinite-slider-section.slide-option .no-marg {
  margin: 0 0 0 0;
}

div.infinite-slider {
  display: flex;
  justify-content: center;
  width: 100%;
}

div.infinite-slider div.infinite-container {
  display: flex;
  gap: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
@keyframes translateinfinite {
  100% {
    transform: translateX(calc(-100% + 50px));
  }
}

div.infinite-slider ul.infinite-item {
  width: 5400px;
  display: flex;
  margin: 0;
  gap: 50px;
}
@media only screen and (min-width: 768px) {
  div.infinite-slider ul.infinite-item {
    width: 7380px;
  }
}

div.infinite-slider ul.infinite-item li.slide-item {
  flex: 1;
  padding: 50px 0;
  line-height: 1;
  font-size: 50px;
  text-align: center;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  letter-spacing: var(--unnamed-character-spacing-0);
  letter-spacing: 0px;
  animation-name: translateinfinite;
  animation-duration: var(--animation-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  font-family: var(--font-heading);
  line-height: 64px;
}

div.infinite-slider ul.infinite-item li.slide-item a, div.infinite-slider ul.infinite-item li.slide-item p {
  margin: 0;
  font-size: 50px;
  text-align: center;
  color: var(--text-color);
  font-family: var(--font-heading), sans-serif;
}
div.infinite-slider ul.infinite-item li.slide-item a:hover, div.infinite-slider ul.infinite-item li.slide-item p:hover {
  color: var(--text-alternate-color);
  opacity: 1;
}

#infinite div.infinite-container:hover ul.infinite-item .slide-item {
  animation-play-state: paused;
}

.text-with-button-wrapper {
  padding: 81px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.text-with-button-wrapper .heading {
  letter-spacing: 0px;
  color: #000000;
  text-align: center;
  font-size: 30px;
  line-height: 49px;
}
.text-with-button-wrapper .content {
  text-align: center;
  letter-spacing: 0px;
  color: #000000;
  line-height: 21px;
}
.text-with-button-wrapper .content p {
  margin-bottom: 10px;
}
.text-with-button-wrapper .button-wrapper .button {
  background: #030303;
  color: #FCFCFC;
  padding: 10px 36px;
  font-size: 14px;
  line-height: 17px;
}

.icons-with-text-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media only screen and (max-width: 991.98px) {
  .icons-with-text-grid-wrapper {
    grid-template-columns: 1fr;
  }
}
.icons-with-text-grid-wrapper.page-width {
  gap: 0px;
  padding: 0;
}
.icons-with-text-grid-wrapper .content-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 28px;
  padding: 40px 40px 55px;
  text-align: center;
}
@media only screen and (max-width: 991.98px) {
  .icons-with-text-grid-wrapper .content-card {
    gap: 22px;
    padding: 40px 40px 34px;
  }
}
.icons-with-text-grid-wrapper .content-card .image-wrapper {
  width: 70px;
  max-height: 70px;
}
.icons-with-text-grid-wrapper .content-card .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.left {
  justify-content: start;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.left .title {
  text-align: left;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.left .text-content {
  text-align: left;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.right {
  justify-content: end;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.right .title {
  text-align: right;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.right .text-content {
  text-align: right;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.center {
  justify-content: center;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.center .title {
  text-align: center;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper.center .text-content {
  text-align: center;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper .title {
  font-size: 30px;
  letter-spacing: 0px;
  text-align: center;
  line-height: 32px;
}
@media only screen and (max-width: 991.98px) {
  .icons-with-text-grid-wrapper .content-card .text-content-wrapper .title {
    font-size: 25px;
  }
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper .text-content {
  font-size: 14px;
  letter-spacing: 0px;
  text-align: center;
  max-width: 700px;
  line-height: 21px;
}
.icons-with-text-grid-wrapper .content-card .text-content-wrapper .text-content p {
  margin-bottom: 10px;
}

.text-image .page-width, .text-video .page-width {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
}
.text-image .page-width.left, .text-video .page-width.left {
  flex-direction: row;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width.left, .text-video .page-width.left {
    flex-direction: column;
  }
}
.text-image .page-width.right, .text-video .page-width.right {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width.right, .text-video .page-width.right {
    flex-direction: column-reverse;
  }
}
.text-image .page-width .image-wrapper, .text-image .page-width .video-wrapper, .text-image .page-width .content-wrapper, .text-video .page-width .image-wrapper, .text-video .page-width .video-wrapper, .text-video .page-width .content-wrapper {
  flex: 0 0 50%;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .image-wrapper, .text-image .page-width .video-wrapper, .text-image .page-width .content-wrapper, .text-video .page-width .image-wrapper, .text-video .page-width .video-wrapper, .text-video .page-width .content-wrapper {
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
}
.text-image .page-width .content-wrapper, .text-video .page-width .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px 0;
  padding-left: 7rem;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .content-wrapper, .text-video .page-width .content-wrapper {
    gap: 22px;
    margin: 24px 29px;
    padding-left: 0;
  }
}
.text-image .page-width .content-wrapper.right, .text-video .page-width .content-wrapper.right {
  text-align: right;
  align-items: flex-end;
}
.text-image .page-width .content-wrapper.left, .text-video .page-width .content-wrapper.left {
  text-align: left;
  align-items: flex-start;
}
.text-image .page-width .content-wrapper.middle, .text-video .page-width .content-wrapper.middle {
  text-align: center;
  align-items: center;
}
.text-image .page-width .content-wrapper .title, .text-video .page-width .content-wrapper .title {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 49px;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .content-wrapper .title, .text-video .page-width .content-wrapper .title {
    margin-top: 20px;
  }
}
.text-image .page-width .content-wrapper .body, .text-video .page-width .content-wrapper .body {
  font-size: 14px;
  line-height: 21px;
  width: 87%;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .content-wrapper .body, .text-video .page-width .content-wrapper .body {
    width: 100%;
  }
}
.text-image .page-width .content-wrapper .body p, .text-video .page-width .content-wrapper .body p {
  margin-bottom: 10px;
}
.text-image .page-width .image-wrapper,
.text-image .page-width .video-wrapper, .text-video .page-width .image-wrapper,
.text-video .page-width .video-wrapper {
  display: flex;
  align-items: end;
  overflow: hidden;
  position: relative;
  aspect-ratio: 38/29;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .image-wrapper,
  .text-image .page-width .video-wrapper, .text-video .page-width .image-wrapper,
  .text-video .page-width .video-wrapper {
    aspect-ratio: 13/11;
    justify-content: end;
    align-items: center;
  }
}
.text-image .page-width .image-wrapper img:not(.play-icon, .pause-icon), .text-image .page-width .image-wrapper video, .text-image .page-width .image-wrapper svg,
.text-image .page-width .video-wrapper img:not(.play-icon, .pause-icon),
.text-image .page-width .video-wrapper video,
.text-image .page-width .video-wrapper svg, .text-video .page-width .image-wrapper img:not(.play-icon, .pause-icon), .text-video .page-width .image-wrapper video, .text-video .page-width .image-wrapper svg,
.text-video .page-width .video-wrapper img:not(.play-icon, .pause-icon),
.text-video .page-width .video-wrapper video,
.text-video .page-width .video-wrapper svg {
  width: var(--image-width);
  height: var(--image-width);
  -o-object-fit: var(--image-fit);
     object-fit: var(--image-fit);
  -o-object-position: var(--image-position);
     object-position: var(--image-position);
}
.text-image .page-width .image-wrapper img.desktop-image,
.text-image .page-width .video-wrapper img.desktop-image, .text-video .page-width .image-wrapper img.desktop-image,
.text-video .page-width .video-wrapper img.desktop-image {
  display: block;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .image-wrapper img.desktop-image,
  .text-image .page-width .video-wrapper img.desktop-image, .text-video .page-width .image-wrapper img.desktop-image,
  .text-video .page-width .video-wrapper img.desktop-image {
    display: none;
  }
}
.text-image .page-width .image-wrapper img.mobile-image,
.text-image .page-width .video-wrapper img.mobile-image, .text-video .page-width .image-wrapper img.mobile-image,
.text-video .page-width .video-wrapper img.mobile-image {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .text-image .page-width .image-wrapper img.mobile-image,
  .text-image .page-width .video-wrapper img.mobile-image, .text-video .page-width .image-wrapper img.mobile-image,
  .text-video .page-width .video-wrapper img.mobile-image {
    display: block;
  }
}
.text-image .page-width .image-wrapper .play-video-trigger,
.text-image .page-width .video-wrapper .play-video-trigger, .text-video .page-width .image-wrapper .play-video-trigger,
.text-video .page-width .video-wrapper .play-video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50% 0;
  width: 45px;
  height: 45px;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.1s ease-out;
}
.text-image .page-width .image-wrapper .play-video-trigger svg,
.text-image .page-width .video-wrapper .play-video-trigger svg, .text-video .page-width .image-wrapper .play-video-trigger svg,
.text-video .page-width .video-wrapper .play-video-trigger svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.text-image .page-width .image-wrapper .play-video-trigger:hover,
.text-image .page-width .video-wrapper .play-video-trigger:hover, .text-video .page-width .image-wrapper .play-video-trigger:hover,
.text-video .page-width .video-wrapper .play-video-trigger:hover {
  opacity: 0.6;
}
.text-image .page-width .image-wrapper .play-video-trigger.playing,
.text-image .page-width .video-wrapper .play-video-trigger.playing, .text-video .page-width .image-wrapper .play-video-trigger.playing,
.text-video .page-width .video-wrapper .play-video-trigger.playing {
  opacity: 0;
  pointer-events: none;
}
.text-image .page-width .image-wrapper .video-overlay,
.text-image .page-width .video-wrapper .video-overlay, .text-video .page-width .image-wrapper .video-overlay,
.text-video .page-width .video-wrapper .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media only screen and (max-width: 767.98px) {
  .text-image .page-width .image-wrapper .video-overlay,
  .text-image .page-width .video-wrapper .video-overlay, .text-video .page-width .image-wrapper .video-overlay,
  .text-video .page-width .video-wrapper .video-overlay {
    width: 100%;
  }
}
.text-image .page-width .image-wrapper .video-overlay .video-control,
.text-image .page-width .video-wrapper .video-overlay .video-control, .text-video .page-width .image-wrapper .video-overlay .video-control,
.text-video .page-width .video-wrapper .video-overlay .video-control {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-image .page-width .image-wrapper .video-overlay .video-control.pause-video,
.text-image .page-width .video-wrapper .video-overlay .video-control.pause-video, .text-video .page-width .image-wrapper .video-overlay .video-control.pause-video,
.text-video .page-width .video-wrapper .video-overlay .video-control.pause-video {
  display: none;
  opacity: 0;
  transition: all 0.3s;
}
.text-image .page-width .image-wrapper .video-overlay .video-control svg,
.text-image .page-width .video-wrapper .video-overlay .video-control svg, .text-video .page-width .image-wrapper .video-overlay .video-control svg,
.text-video .page-width .video-wrapper .video-overlay .video-control svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  fill: var(--accent-2-color);
  opacity: 0.7;
  transition: 0.3s all;
}
.text-image .page-width .image-wrapper .video-overlay .video-control svg:hover,
.text-image .page-width .video-wrapper .video-overlay .video-control svg:hover, .text-video .page-width .image-wrapper .video-overlay .video-control svg:hover,
.text-video .page-width .video-wrapper .video-overlay .video-control svg:hover {
  opacity: 1;
}
.text-image .page-width .image-wrapper .video-overlay.pause .pause-video:hover,
.text-image .page-width .video-wrapper .video-overlay.pause .pause-video:hover, .text-video .page-width .image-wrapper .video-overlay.pause .pause-video:hover,
.text-video .page-width .video-wrapper .video-overlay.pause .pause-video:hover {
  opacity: 1;
}

.split-text-banner .page-width, .text-video .page-width {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.split-text-banner .page-width.left, .text-video .page-width.left {
  flex-direction: row;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width.left, .text-video .page-width.left {
    flex-direction: column;
  }
}
.split-text-banner .page-width.right, .text-video .page-width.right {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width.right, .text-video .page-width.right {
    flex-direction: column-reverse;
  }
}
.split-text-banner .page-width .content-wrapper, .text-video .page-width .content-wrapper {
  flex: 50%;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper, .text-video .page-width .content-wrapper {
    flex-direction: column;
    padding: 0;
  }
}
.split-text-banner .page-width .content-wrapper, .text-video .page-width .content-wrapper {
  background: var(--text-content-bg-colour);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px 0;
  aspect-ratio: 34/29;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper, .text-video .page-width .content-wrapper {
    gap: 22px;
    padding: 22px;
    aspect-ratio: initial;
  }
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper:has(.mobile-image), .text-video .page-width .content-wrapper:has(.mobile-image) {
    padding: 170px 0px;
  }
  .split-text-banner .page-width .content-wrapper:has(.mobile-image) .title, .text-video .page-width .content-wrapper:has(.mobile-image) .title {
    padding-left: 22px;
  }
  .split-text-banner .page-width .content-wrapper:has(.mobile-image) .body, .text-video .page-width .content-wrapper:has(.mobile-image) .body {
    padding-left: 22px;
  }
}
.split-text-banner .page-width .content-wrapper.right, .text-video .page-width .content-wrapper.right {
  text-align: right;
  align-items: flex-end;
}
.split-text-banner .page-width .content-wrapper.left, .text-video .page-width .content-wrapper.left {
  text-align: left;
  align-items: flex-start;
}
.split-text-banner .page-width .content-wrapper.middle, .text-video .page-width .content-wrapper.middle {
  text-align: center;
  align-items: center;
}
.split-text-banner .page-width .content-wrapper .title, .text-video .page-width .content-wrapper .title {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  padding: 0 90px;
  color: var(--text-colour);
  line-height: 49px;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper .title, .text-video .page-width .content-wrapper .title {
    margin-top: 20px;
    padding: 0;
  }
}
.split-text-banner .page-width .content-wrapper .body, .text-video .page-width .content-wrapper .body {
  color: var(--text-colour);
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  padding: 0 90px;
}
.split-text-banner .page-width .content-wrapper .body p, .text-video .page-width .content-wrapper .body p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper .body, .text-video .page-width .content-wrapper .body {
    width: 100%;
    padding: 0;
  }
}
.split-text-banner .page-width .content-wrapper img, .text-video .page-width .content-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -1;
}
.split-text-banner .page-width .content-wrapper img.desktop-image, .text-video .page-width .content-wrapper img.desktop-image {
  display: block;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper img.desktop-image, .text-video .page-width .content-wrapper img.desktop-image {
    display: none;
  }
}
.split-text-banner .page-width .content-wrapper img.mobile-image, .text-video .page-width .content-wrapper img.mobile-image {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .content-wrapper img.mobile-image, .text-video .page-width .content-wrapper img.mobile-image {
    display: block;
  }
}
.split-text-banner .page-width .quote-content-wrapper, .text-video .page-width .quote-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  gap: 15px 0;
  background: var(--quote-bg-colour);
  flex: 0 0 50%;
  width: 50%;
  padding: 150px 50px;
  aspect-ratio: 34/29;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .quote-content-wrapper, .text-video .page-width .quote-content-wrapper {
    gap: 22px;
    padding: 30px 22px;
    aspect-ratio: initial;
    width: 100%;
  }
}
.split-text-banner .page-width .quote-content-wrapper .quote, .text-video .page-width .quote-content-wrapper .quote {
  color: var(--quote-colour);
  font-size: 50px;
  line-height: 46px;
  margin: 0;
  text-align: center;
  letter-spacing: 0px;
  font-weight: 500;
  width: 100%;
}
.split-text-banner .page-width .quote-content-wrapper .quote.right, .text-video .page-width .quote-content-wrapper .quote.right {
  text-align: right;
}
.split-text-banner .page-width .quote-content-wrapper .quote.left, .text-video .page-width .quote-content-wrapper .quote.left {
  text-align: left;
}
.split-text-banner .page-width .quote-content-wrapper .quote.middle, .text-video .page-width .quote-content-wrapper .quote.middle {
  text-align: center;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .quote-content-wrapper .quote, .text-video .page-width .quote-content-wrapper .quote {
    width: 100%;
    font-size: 36px;
  }
}
.split-text-banner .page-width .quote-content-wrapper .author, .text-video .page-width .quote-content-wrapper .author {
  color: var(--author-colour);
  font-size: 20px;
  margin: 0;
  font-weight: var(--author-font-weight);
  letter-spacing: 0px;
  line-height: 29px;
  width: 100%;
}
.split-text-banner .page-width .quote-content-wrapper .author.right, .text-video .page-width .quote-content-wrapper .author.right {
  text-align: right;
}
.split-text-banner .page-width .quote-content-wrapper .author.left, .text-video .page-width .quote-content-wrapper .author.left {
  text-align: left;
}
.split-text-banner .page-width .quote-content-wrapper .author.middle, .text-video .page-width .quote-content-wrapper .author.middle {
  text-align: center;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .quote-content-wrapper .author, .text-video .page-width .quote-content-wrapper .author {
    width: 100%;
  }
}
.split-text-banner .page-width .quote-content-wrapper img, .text-video .page-width .quote-content-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -1;
}
.split-text-banner .page-width .quote-content-wrapper img.desktop-image, .text-video .page-width .quote-content-wrapper img.desktop-image {
  display: block;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .quote-content-wrapper img.desktop-image, .text-video .page-width .quote-content-wrapper img.desktop-image {
    display: none;
  }
}
.split-text-banner .page-width .quote-content-wrapper img.mobile-image, .text-video .page-width .quote-content-wrapper img.mobile-image {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .quote-content-wrapper img.mobile-image, .text-video .page-width .quote-content-wrapper img.mobile-image {
    display: block;
  }
}
@media only screen and (max-width: 991.98px) {
  .split-text-banner .page-width .quote-content-wrapper:has(.mobile-image), .text-video .page-width .quote-content-wrapper:has(.mobile-image) {
    padding: 170px 22px;
  }
}

.split-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 991.98px) {
  .split-section {
    flex-direction: column;
  }
}
.split-section.flip-layout {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 991.98px) {
  .split-section.flip-layout {
    flex-direction: column-reverse;
  }
}
.split-section.page-width {
  padding: 0;
}
.split-section .half {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
@media only screen and (max-width: 991.98px) {
  .split-section .half {
    width: 100%;
  }
}
.split-section .half .content-wrapper {
  display: flex;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  align-items: stretch;
  justify-content: center;
}
.split-section .half .content-wrapper .text-content {
  display: flex;
  width: 100%;
  text-align: center;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}
.split-section .half .content-wrapper .text-content p {
  margin-bottom: 10px;
}
.split-section .half .content-wrapper .text-content.top-left {
  justify-content: flex-start;
  align-items: flex-start;
}
.split-section .half .content-wrapper .text-content.top-center {
  justify-content: center;
  align-items: flex-start;
}
.split-section .half .content-wrapper .text-content.top-right {
  justify-content: flex-end;
  align-items: flex-start;
}
.split-section .half .content-wrapper .text-content.middle-left {
  justify-content: flex-start;
  align-items: center;
}
.split-section .half .content-wrapper .text-content.middle-center {
  justify-content: center;
  align-items: center;
}
.split-section .half .content-wrapper .text-content.middle-right {
  justify-content: flex-end;
  align-items: center;
}
.split-section .half .content-wrapper .text-content.bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}
.split-section .half .content-wrapper .text-content.bottom-center {
  justify-content: center;
  align-items: flex-end;
}
.split-section .half .content-wrapper .text-content.bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 991.98px) {
  .split-section .half .content-wrapper .text-content.top-left-mobile {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .split-section .half .content-wrapper .text-content.top-center-mobile {
    justify-content: center;
    align-items: flex-start;
  }
  .split-section .half .content-wrapper .text-content.top-right-mobile {
    justify-content: flex-end;
    align-items: flex-start;
  }
  .split-section .half .content-wrapper .text-content.middle-left-mobile {
    justify-content: flex-start;
    align-items: center;
  }
  .split-section .half .content-wrapper .text-content.middle-center-mobile {
    justify-content: center;
    align-items: center;
  }
  .split-section .half .content-wrapper .text-content.middle-right-mobile {
    justify-content: flex-end;
    align-items: center;
  }
  .split-section .half .content-wrapper .text-content.bottom-left-mobile {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .split-section .half .content-wrapper .text-content.bottom-center-mobile {
    justify-content: center;
    align-items: flex-end;
  }
  .split-section .half .content-wrapper .text-content.bottom-right-mobile {
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.split-section .split-line {
  align-self: stretch;
}

.featured-products-with-image {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image {
    flex-direction: column;
  }
}
.featured-products-with-image.flip-layout {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image.flip-layout {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image.mobile-flip-layout {
    flex-direction: column-reverse;
  }
}
.featured-products-with-image.page-width {
  padding: 0;
}
.featured-products-with-image .half {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image .half {
    width: 100%;
  }
}
.featured-products-with-image .half.right .content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 75px;
  gap: 20px;
  height: auto;
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image .half.right .content-wrapper {
    padding: 20px;
    gap: 10px;
  }
}
.featured-products-with-image .half.right .content-wrapper .product-card {
  height: 100%;
}
.featured-products-with-image .half.right .content-wrapper .product-card .product-card-footer {
  margin-top: auto;
}
.featured-products-with-image .half.left .content-wrapper {
  display: flex;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  align-items: stretch;
  justify-content: center;
}
.featured-products-with-image .half.left .content-wrapper .image-wrapper {
  aspect-ratio: 5/3;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image .half.left .content-wrapper .image-wrapper {
    aspect-ratio: 1;
  }
}
.featured-products-with-image .half.left .content-wrapper .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.featured-products-with-image .half.left .content-wrapper .desktop-image {
  display: block;
}
.featured-products-with-image .half.left .content-wrapper .mobile-image {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .featured-products-with-image .half.left .content-wrapper .desktop-image {
    display: none;
  }
  .featured-products-with-image .half.left .content-wrapper .mobile-image {
    display: block;
  }
}
.featured-products-with-image .split-line {
  align-self: stretch;
}

.sec-Hotspots {
  display: block;
  margin-block: 20px;
}
.sec-Hotspots_Title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-block-end: 20px;
  text-align: center;
}
.sec-Hotspots_Container {
  position: relative;
}
.sec-Hotspots_Wrapper {
  position: relative;
  display: flex;
  max-block-size: 100svh;
  inline-size: 100%;
}
.sec-Hotspots-first .sec-Hotspots_Wrapper {
  max-block-size: calc(100svh - var(--Header_Height));
}
.sec-Hotspots_Wrapper::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: var(--SectionHero_AspectRatio-mobile, 150%);
}
.sec-Hotspots_MediaContainer {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0 0;
  z-index: -1;
  block-size: 100%;
  overflow: hidden;
}
.sec-Hotspots_Image {
  position: absolute;
  inset-inline-start: 0;
  z-index: -2;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
}
.sec-Hotspots_Image-desktop {
  display: none;
}
.sec-Hotspots_Image-mobile {
  display: flex;
}
.sec-Hotspots_Items {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sec-Hotspots_Item {
  position: absolute;
}
.sec-Hotspots_Item .sec-Hotspots_ItemCta-link {
  display: none;
}
.sec-Hotspots_Item[data-has-pre-order-conflict=true] .sec-Hotspots_ItemCta-button {
  display: none;
}
.sec-Hotspots_Item[data-has-pre-order-conflict=true] .sec-Hotspots_ItemCta-link {
  display: block;
}
.sec-Hotspots_ItemCta {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(23px);
          backdrop-filter: blur(23px);
}
.sec-Hotspots_ItemCta.is-active::after {
  height: 11px;
  width: 11px;
}
.sec-Hotspots_ItemCta::after {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  width: 9px;
}
.sec-Hotspots_ProductContainer {
  background-color: #ffffff;
  display: none;
  padding: 15px;
  width: 100%;
}
.sec-Hotspots_ProductContainer.is-active {
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .sec-Hotspots_ProductContainer {
    position: fixed;
    left: 0 !important;
    top: unset !important;
    bottom: 0 !important;
    z-index: 3 !important;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hotspots {
    margin-block: 40px;
  }
  .sec-Hotspots_Wrapper::after {
    padding-block-start: var(--SectionHero_AspectRatio-desktop, 56.25%);
  }
  .sec-Hotspots_Title {
    font-size: 36px;
    margin-block-end: 40px;
  }
  .sec-Hotspots_Image-desktop {
    display: flex;
  }
  .sec-Hotspots_Image-mobile {
    display: none;
  }
  .sec-Hotspots_ItemCta {
    width: 61px;
    height: 61px;
  }
  .sec-Hotspots_ItemCta:hover::after, .sec-Hotspots_ItemCta.is-active::after {
    height: 19px;
    width: 19px;
  }
  .sec-Hotspots_ProductContainer {
    position: absolute;
    max-width: 425px;
  }
}

.dm-HotspotProduct_Inner {
  display: flex;
  gap: 14px;
}
.dm-HotspotProduct_Media {
  width: 80px;
  flex-shrink: 0;
}
.dm-HotspotProduct_Info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.dm-HotspotProduct_Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 10px;
}
.dm-HotspotProduct_Title {
  color: #000;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  padding-inline-end: 20px;
}
.dm-HotspotProduct_Close {
  display: block;
}
.dm-HotspotProduct_Close svg {
  display: flex;
  height: 12px;
  width: 12px;
}
.dm-HotspotProduct_Price .prd-Price {
  font-size: 12px;
  font-weight: 600;
  line-height: 140%;
}
.dm-HotspotProduct_Price .prd-Price_RegularPrice {
  color: #dc323b;
}
.dm-HotspotProduct_Body {
  margin-top: auto;
}
.dm-HotspotProduct_BodyInner {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
}
.dm-HotspotProduct_Form {
  width: 100%;
}
.dm-HotspotProduct_OptionWrapper {
  flex: 1;
}
.dm-HotspotProduct_OptionSelect {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L5%205L9%201%22%20stroke%3D%22%23202020%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  height: 40px;
  padding: 11px 24px 11px 9px;
  width: 100%;
}
.dm-HotspotProduct_Button {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  height: 40px;
  padding: 11px;
  width: 100%;
}
.dm-HotspotProduct_Button:disabled {
  border: 1px solid #F3F3F3;
  background-color: #F3F3F3;
  color: #000;
  pointer-events: none;
}
.dm-HotspotProduct_Button:hover {
  background: #fff;
  color: #000;
}

.klevu-recs-tabs {
  display: none;
}
.klevu-recs-tabs[data-initialised=true] {
  display: block;
}
.klevu-recs-tabs[aria-hidden=true] {
  display: none;
}
.klevu-recs-tabs__content {
  margin-top: 30px;
}
.klevu-recs-tabs__list {
  display: flex;
  gap: 30px;
  overflow: auto;
}
@media only screen and (min-width: 611px) {
  .klevu-recs-tabs__list {
    justify-content: center;
  }
}
.klevu-recs-tabs__item {
  padding-bottom: 5px;
}
.klevu-recs-tabs__link {
  opacity: 0.5;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  white-space: nowrap;
}
@media only screen and (max-width: 610px) {
  .klevu-recs-tabs__link {
    font-size: 16px;
  }
}
.klevu-recs-tabs__link::after {
  content: "";
  border-bottom: 1px solid #000;
  width: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: opacity 0.3s ease-out;
}
.klevu-recs-tabs__link[aria-selected=true] {
  opacity: 1;
}
.klevu-recs-tabs__link[aria-selected=true]::after {
  opacity: 1;
}
.klevu-recs-tabs__link:hover::after {
  opacity: 1;
}
.klevu-recs-tabs__link[aria-hidden=true] {
  display: none;
}
.klevu-recs-tabs__panel {
  display: block;
}
.klevu-recs-tabs__panel[hidden] {
  display: none;
}
.klevu-recs-tabs__carousel {
  margin-bottom: 40px;
}
@media only screen and (min-width: 611px) {
  .klevu-recs-tabs__carousel {
    margin-bottom: 50px;
  }
}
.klevu-recs-tabs__carousel .product-title,
.klevu-recs-tabs__carousel .product-footer {
  padding-left: 0;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
| @namespace: ft-
|
*/
.ft-Footer {
  --FooterPadding: 20px;
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
}

.ft-Footer_Footer {
  padding-block-start: calc(var(--FooterPadding) * 2);
  padding-inline: var(--FooterPadding);
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Footer {
    padding: calc(var(--FooterPadding) * 2);
    padding-block-end: 14px;
  }
}
.ft-Footer_Inner {
  max-width: calc(1265px + var(--Grid_Gutter) * 6);
}

.ft-Footer_Bar {
  background-color: #fff;
  color: #000;
  border-top: 1px solid #000;
  width: 100%;
}

.ft-Footer_Bar .ft-Footer_Inner {
  max-width: 100%;
}

.ft-Footer_Header {
  font-family: var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  padding-inline-end: 10px;
  margin-block-end: 20px;
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Header {
    font-size: 36px;
    padding-inline-end: 50px;
  }
}
.ft-Footer_HeaderSpan {
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin-block-start: 10px;
}

.ft-Footer_Columns {
  flex-flow: column;
  display: flex;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Columns {
    flex-flow: row nowrap;
  }
}
.ft-Footer_Columns-footerbar {
  position: relative;
  align-items: center;
  padding-block: var(--FooterPadding);
  padding-inline: calc(var(--FooterPadding) * 2);
}

@media only screen and (max-width: 1023px) {
  .ft-Footer_Columns-footerbar {
    flex-direction: column-reverse;
    gap: 10px;
    padding-inline: var(--FooterPadding);
  }
}
@media only screen and (min-width: 1024px) {
  .ft-Footer_Column-payments {
    margin-left: auto;
  }
}
.ft-Footer_Column-mobile,
.ft-Footer_Section-mobile {
  display: block;
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Column-mobile,
  .ft-Footer_Section-mobile {
    display: none;
  }
}
.ft-Footer_Column-desktop,
.ft-Footer_Section-desktop {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Column-desktop,
  .ft-Footer_Section-desktop {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .ft-Footer_Column-navigation {
    margin-left: auto;
    min-width: 50%;
  }
}
.ft-Footer_Section-socials {
  justify-content: center;
  display: flex;
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Section-socials {
    justify-content: flex-start;
  }
}
.ft-Footer_Checkbox {
  margin-block-start: 5px;
}

.ft-Footer_Checkbox:checked {
  accent-color: #fff;
}

/*
|--------------------------------------------------------------------------
| Logo
|--------------------------------------------------------------------------
|
*/
.ft-Footer_Logo {
  padding-block-start: 50px;
}

@media only screen and (min-width: 1024px) {
  .ft-Footer_Logo {
    padding-block-start: 80px;
  }
}
/*
|--------------------------------------------------------------------------
| Newsletter
|--------------------------------------------------------------------------
|
*/
@media only screen and (min-width: 1024px) {
  .ft-Footer_Section-newsletter {
    max-width: 400px;
  }
}
/*
|--------------------------------------------------------------------------
| Footer USPs
|--------------------------------------------------------------------------
| @namespace: ft-Usps
|
*/
.ft-Usps {
  margin-block: 40px;
}
@media only screen and (min-width: 992px) {
  .ft-Usps {
    margin-block: 80px;
  }
}

.ft-Usps_Items {
  grid-template-columns: 1fr;
  display: grid;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .ft-Usps_Items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .ft-Usps_Items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ft-Usps_Item {
  align-items: center;
  flex-direction: row;
  display: flex;
  gap: 15px;
}
@media only screen and (min-width: 768px) {
  .ft-Usps_Item {
    flex-direction: column;
  }
}

.ft-Usps_Icon {
  flex-shrink: 0;
  inline-size: 42px;
  block-size: 42px;
  background: #FEF8EE;
  padding-inline: 10px;
  padding-block: 10px;
  border-radius: 100%;
}

/*
|--------------------------------------------------------------------------
| Footer navigation
|--------------------------------------------------------------------------
| @namespace: ft
|
*/
.ft-Accordion {
  display: block;
}

@media only screen and (min-width: 1024px) {
  .ft-Accordion {
    display: none;
  }
}
/*
|--------------------------------------------------------------------------
| Header item
|--------------------------------------------------------------------------
|
*/
.ft-Accordion_Header {
  --Header_Padding: 20px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding-top: var(--Header_Padding);
  padding-bottom: var(--Header_Padding);
  border-bottom: 1px solid rgb(217, 217, 217);
}

.ft-Accordion_Icon {
  transition: transform 0.5s ease;
  background: none;
  position: relative;
  display: flex;
  width: 22px;
  height: 22px;
}

.ft-Accordion_Icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.ft-Accordion-active .ft-Accordion_Item.open .ft-Accordion_Icon {
  transform: rotate(180deg);
}

.ft-Accordion_Title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}

/*
|--------------------------------------------------------------------------
| Body item
|--------------------------------------------------------------------------
|
*/
.ft-Accordion_Body {
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.5s ease;
}

.ft-Accordion-active .ft-Accordion_Item.open .ft-Accordion_Body {
  max-height: 100%;
}

.ft-Accordion_Links {
  grid-gap: 10px;
  display: grid;
  margin-block-start: 20px;
  margin-block-end: 10px;
}

/*
|--------------------------------------------------------------------------
| Footer navigation
|--------------------------------------------------------------------------
| @namespace: ft
|
*/
@media only screen and (min-width: 1024px) {
  .ft-Navigation_Columns {
    display: flex;
    gap: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .ft-Navigation_Columns {
    margin-inline-end: 35px;
    gap: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .ft-Navigation_Column {
    flex: 0 0 50%;
  }
}
.ft-Navigation_Menus {
  display: flex;
  gap: 25px;
}

@media only screen and (min-width: 1200px) {
  .ft-Navigation_Menus {
    gap: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .ft-Navigation_Menus {
    flex: 0 0 60%;
  }
}
@media only screen and (max-width: 1023px) {
  .ft-Navigation_Menus {
    display: none;
  }
}
.ft-Navigation_Title {
  font-family: var(--font-body), sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  margin-block-start: 20px;
}

@media only screen and (min-width: 1024px) {
  .ft-Navigation_Title {
    font-size: 16px;
    margin-block-start: 0;
  }
}
.ft-Navigation_Text {
  margin-block-start: 10px;
  line-height: 1.4;
}

@media only screen and (min-width: 1024px) {
  .ft-Navigation_Text {
    margin-block-start: 20px;
  }
}
.ft-Navigation_Links {
  display: grid;
  margin-top: 20px;
  gap: 10px;
}

.ft-Navigation_Link {
  display: block;
  box-shadow: none;
  outline: none;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.ft-Navigation_Link:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.ft-Navigation_LinkText {
  border-bottom: 1px solid transparent;
}

.ft-Navigation_Link:hover .ft-Navigation_LinkText {
  border-color: currentColor;
}

.ft-Navigation_LinkText {
  display: block;
  float: left;
}

/*
|--------------------------------------------------------------------------
| Footer Newsletter Form
|--------------------------------------------------------------------------
| @namespace sec
|
*/
.nws-Newsletter {
  margin-block-end: 13px;
}

@media only screen and (min-width: 1024px) {
  .nws-Newsletter {
    margin-block-end: 20px;
  }
}
.nws-Newsletter_Text {
  margin-top: 20px;
}

@media only screen and (min-width: 1024px) {
  .nws-Newsletter_Text {
    margin-top: 30px;
  }
}
.nws-Newsletter_Messages {
  margin-block-start: 15px;
}

.nws-Newsletter_Terms {
  margin-block-start: 20px;
  font-size: 10px;
  line-height: 1.4;
}

.nws-Newsletter_Fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.nws-Newsletter_Fields {
  flex-direction: column;
  display: flex;
  width: 100%;
}

.nws-Newsletter_Row-input {
  flex: 0 0 60%;
}

.nws-Newsletter_Row-submit {
  flex: 0 0 40%;
}

.nws-Newsletter_Inner {
  display: flex;
}

.nws-Newsletter_Input {
  height: 44px;
  text-transform: none;
  border: 1px solid currentColor;
  color: currentColor;
  padding-block: 12px;
  padding-inline: 14px;
  outline: none;
  font-size: 12px;
  width: 100%;
  font-weight: 300;
  line-height: 21px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  background-image: none !important;
  color: rgb(199, 199, 199);
  transition: border 0.2s ease;
}

.nws-Newsletter_Input::-moz-placeholder {
  text-transform: none;
  color: rgb(199, 199, 199);
  font-size: 14px;
  opacity: 1;
}

.nws-Newsletter_Input::placeholder {
  text-transform: none;
  color: rgb(199, 199, 199);
  font-size: 14px;
  opacity: 1;
}

.nws-Newsletter_Button {
  width: 100%;
  height: 44px;
  font-family: var(--font-body), sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.nws-Newsletter_Button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

/*
|--------------------------------------------------------------------------
| Footer Socials
|--------------------------------------------------------------------------
| @namespace: ft-
|
*/
.ft-Socials {
  flex-flow: row nowrap;
  display: flex;
  margin-top: 20px;
  gap: 5px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .ft-Socials {
    text-align: left;
    margin-top: 30px;
  }
}
.ft-Socials_Item {
  height: 34px;
  width: 34px;
  background: #000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-Socials_Link {
  position: relative;
  display: flex;
  outline: none;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.ft-Socials_Link svg {
  position: relative;
  z-index: 1;
  height: 13px;
  color: #fff;
}

.ft-Socials_Link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  pointer-events: none;
}

.ft-Socials_Link:hover::after,
.ft-Socials_Link:focus::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ------------------------------ */
/* Yotpo Widget Overrides
/* ------------------------------ */
.yotpo-reviews-main-widget:focus,
#yotpo-app:focus,
.yotpo-main-widget-layout:focus,
.yotpo-base-layout:focus {
  outline: none !important;
}
.yotpo-reviews-main-widget:focus-visible,
#yotpo-app:focus-visible,
.yotpo-main-widget-layout:focus-visible,
.yotpo-base-layout:focus-visible {
  outline: none !important;
}

.yotpo-reviews-main-widget {
  display: none;
  margin-top: 40px !important;
}
@media screen and (min-width: 768px) {
  .yotpo-reviews-main-widget {
    margin-top: 70px !important;
  }
}

.yotpo-base-layout {
  position: relative;
}

.yotpo-base-layout * {
  font-family: "OpenSauceSans", Arial, sans-serif !important;
}

/* ------------------------------ */
/* Widget Header Overrides
/* ------------------------------ */
.yotpo-header {
  margin: 0 !important;
}

.yotpo-main-widget-tabs {
  position: absolute;
  z-index: 1;
  margin-block-start: 20px !important;
}
@media screen and (max-width: 767px) {
  .yotpo-main-widget-tabs {
    top: 120px;
  }
}
@media screen and (min-width: 768px) {
  .yotpo-main-widget-tabs {
    right: 175px;
  }
}

.yotpo-main-widget-tabs .ugc-storefront-widgets-tabs-container__tab {
  font-size: 14px !important;
  border-bottom: 1px solid #000;
}

.yotpo-head {
  display: none !important;
}

.yotpo-main-layout .yotpo-layout-header-wrapper {
  justify-content: space-between !important;
  padding-block-end: 30px !important;
  margin-block-end: 0px !important;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .yotpo-main-layout .yotpo-layout-header-wrapper {
    flex-direction: column !important;
    align-items: baseline !important;
    gap: 20px !important;
    padding-block-end: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .yotpo-layout-header-wrapper .yotpo-bottom-line {
    margin-block-end: 0 !important;
  }
}
.yotpo-bottom-line .yotpo-summary-section .yotpo-bottom-line-summary {
  gap: 20px !important;
  margin: 0 !important;
}

.yotpo-bottom-line .yotpo-bottom-line-left-panel.yotpo-bottom-line-score {
  font-size: 44px !important;
}

.yotpo-bottom-line .yotpo-bottom-line-right-panel {
  display: flex;
  align-items: center;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.yotpo-bottom-line .yotpo-bottom-line-right-panel .yotpo-bottom-line-text {
  margin-block-start: 0 !important;
}

.yotpo-new-review-btn-wrapper {
  flex-direction: row !important;
}

.yotpo-new-review-btn-wrapper .yotpo-btn-s {
  border-radius: 0 !important;
}

.yotpo-bottom-line .yotpo-vertical-border {
  display: none !important;
}

@media screen and (min-width: 768px) {
  #yotpo-questions-and-answers .yotpo-header-head {
    margin-top: 15px;
  }
}
/* ------------------------------ */
/* Empty state
/* ------------------------------ */
.yotpo-empty-state {
  margin-top: 160px !important;
}
@media screen and (min-width: 768px) {
  .yotpo-empty-state {
    margin-top: 60px !important;
  }
}

.yotpo-empty-state-wrapper * {
  color: #000 !important;
}

.yotpo-empty-state-wrapper #yotpo-widget-btn {
  background-color: #000 !important;
}

.yotpo-empty-state-wrapper #yotpo-widget-btn span {
  color: #fff !important;
}

/* ------------------------------ */
/* Review Card Overrides
/* ------------------------------ */
.yotpo-review {
  display: grid !important;
  grid-template-areas: "name date" "review date";
  grid-template-columns: 80% 20%;
  margin-block: 20px !important;
}
@media screen and (min-width: 768px) {
  .yotpo-review {
    margin-block: 30px !important;
  }
}

.yotpo-review .yotpo-shop-badge {
  display: none !important;
}

.yotpo-review-left-panel {
  grid-area: name;
}

.yotpo-review .yotpo-reviewer-name {
  margin-block-end: 20px !important;
}

.yotpo-read-more-text {
  font-size: 14px !important;
}

.yotpo-review-center-panel {
  grid-area: review;
  padding: 0 !important;
}

.yotpo-review .yotpo-review-center-panel {
  margin-block-start: 20px !important;
}

.yotpo-review-rating-title {
  margin: 0 !important;
}

.yotpo-review-content {
  margin: 0 !important;
}

.yotpo-review .yotpo-star-rating {
  display: none !important;
}

.yotpo-review-right-panel {
  grid-area: date;
}

.yotpo-date-format {
  font-size: 12px !important;
}

.yotpo-review-border-smooth {
  margin: 0 !important;
}

.yotpo-crfs-seperator {
  display: none !important;
}

/* ------------------------------ */
/* Star Ratings Widget
/* ------------------------------ */
.yotpo-reviews-star-ratings-widget .yotpo-bottom-line-scroll-panel .yotpo-sr-bottom-line-button {
  gap: 5px !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
}

.yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-text {
  font-size: 12px !important;
  color: #000 !important;
}

.yotpo-reviews-star-ratings-widget .star-container {
  width: 14px !important;
  height: 14px !important;
}

.yotpo-reviews-star-ratings-widget .star-container:last-child {
  margin: 0 !important;
}

.prd-Card .yotpo-reviews-star-ratings-widget {
  margin: 0 !important;
}

.prd-Card .yotpo-sr-bottom-line-left-panel,
.prd-Card .yotpo-sr-bottom-line-right-panel {
  display: none !important;
}

.prd-Card .yotpo-sr-bottom-line-summary {
  display: inline-block !important;
}

@media screen and (max-width: 767px) {
  .prd-Card .star-container {
    width: 12px !important;
    height: 12px !important;
  }
}
/*
|--------------------------------------------------------------------------
| CTA card
|--------------------------------------------------------------------------
| @namespace: sec-
|
*/
.sec-CtaCard {
  position: relative;
}

.sec-CtaCard_Inner {
  flex-direction: column;
  display: flex;
}

.sec-CtaCard_ImageContainer {
  display: flex;
  background-color: var(--Color_GreyLighter);
  overflow: hidden;
}
.sec-CtaCard_ImageContainer::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: 122.5%;
}

.sec-CtaCard_Image {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
  transition: transform 0.4s ease;
}
@media (--hover) {
  .sec-CtaCard-inset.sec-CtaCard-hasLink:hover .sec-CtaCard_Image, .sec-CtaCard-hasLink .sec-CtaCard_ImageContainer:hover .sec-CtaCard_Image {
    transform: scale(1.05);
  }
}

.sec-CtaCard-inset .sec-CtaCard_ContentContainer {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  z-index: 3;
  margin: 15px;
  color: var(--Color_White);
}

.sec-CtaCard_Content {
  padding-block-start: 20px;
}
.sec-CtaCard-inset .sec-CtaCard_Content {
  padding-block-start: 0;
}

.sec-CtaCard_Title {
  align-items: center;
  font-size: 18px;
  display: inline-flex;
  gap: 10px;
  padding-inline-end: 10px;
}
.sec-CtaCard-inset .sec-CtaCard_Title {
  z-index: 3;
  color: var(--Color_White);
}
@media only screen and (min-width: 768px) {
  .sec-CtaCard_Title {
    font-size: 22px;
  }
}

.sec-CtaCard_FauxLink:focus-visible {
  margin: 5px;
  outline: 5px auto -webkit-focus-ring-color;
}

/*
|--------------------------------------------------------------------------
| Media text
|--------------------------------------------------------------------------
| @namespace: sec
|
*/
.sec-FeaturedCtaCarousel {
  display: block;
  margin-block: 60px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .sec-FeaturedCtaCarousel {
    margin-block: 80px;
  }
}

.sec-FeaturedCtaCarousel-largeMargin {
  margin-block: 80px;
}
@media only screen and (min-width: 992px) {
  .sec-FeaturedCtaCarousel-largeMargin {
    margin-block: 120px;
  }
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.sec-FeaturedCtaCarousel_ContentContainer {
  flex-direction: column;
  justify-content: center;
  display: flex;
  inline-size: 100%;
  padding-block: 60px 0;
}
@media only screen and (min-width: 768px) {
  .sec-FeaturedCtaCarousel_ContentContainer {
    padding-block: 60px;
  }
}

.sec-FeaturedCtaCarousel_Content {
  inline-size: 100%;
  padding-inline: 15px;
}
@media only screen and (min-width: 576px) {
  .sec-FeaturedCtaCarousel_Content {
    inline-size: 83.3333333333%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-FeaturedCtaCarousel_Content {
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .sec-FeaturedCtaCarousel_Content {
    inline-size: 79.1666666667%;
  }
}

.sec-FeaturedCtaCarousel_Title {
  margin-block-end: 10px;
  font-size: 18px;
  color: var(--Color_Brand);
}
@media only screen and (min-width: 768px) {
  .sec-FeaturedCtaCarousel_Title {
    font-size: 22px;
  }
}

.sec-FeaturedCtaCarousel_ShopAll {
  font-size: 14px;
  margin-block-end: 10px;
  padding-block: 5px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  color: var(--Color_Brand);
}

.sec-FeaturedCtaCarousel_Header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  inline-size: 100%;
  padding-inline: 15px;
  margin-block-end: 20px;
}
@media only screen and (min-width: 576px) {
  .sec-FeaturedCtaCarousel_Header {
    padding-inline: 30px;
  }
}

.sec-FeaturedCtaCarousel_Text {
  margin-block: 20px;
}
@media only screen and (min-width: 992px) {
  .sec-FeaturedCtaCarousel_Text {
    margin-block: 40px 30px;
  }
}

.sec-FeaturedCtaCarousel_Buttons {
  display: flex;
  margin-block-start: 20px;
}
@media only screen and (min-width: 768px) {
  .sec-FeaturedCtaCarousel_Buttons {
    margin-block-start: 30px;
  }
}

/*
|--------------------------------------------------------------------------
| Carousel
|--------------------------------------------------------------------------
|
*/
.sec-FeaturedCtaCarousel_CarouselContainer {
  display: block;
  position: relative;
}

.sec-FeaturedCtaCarousel_Slides {
  margin-inline-start: 15px;
}
.sec-FeaturedCtaCarousel_Slides:not([data-initialised=true]), .sec-FeaturedCtaCarousel_Slides[data-keen-slider-disabled] {
  display: flex;
  overflow: visible;
  gap: 5px;
}
@media only screen and (min-width: 992px) {
  .sec-FeaturedCtaCarousel_Slides:not([data-initialised=true]), .sec-FeaturedCtaCarousel_Slides[data-keen-slider-disabled] {
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .sec-FeaturedCtaCarousel_Slides {
    margin-inline-start: 0;
  }
}
.sec-FeaturedCtaCarousel_Slides[data-initialised=true]:not([data-keen-slider-disabled]) {
  overflow: visible;
}

.sec-FeaturedCtaCarousel_Prev,
.sec-FeaturedCtaCarousel_Next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 24px;
  block-size: 24px;
  background-color: var(--Color_White);
  border: 1px solid var(--Color_GreyLight);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.2s ease;
}
.sec-FeaturedCtaCarousel_Prev:hover,
.sec-FeaturedCtaCarousel_Next:hover {
  opacity: 0.5;
}
.sec-FeaturedCtaCarousel_Prev svg,
.sec-FeaturedCtaCarousel_Next svg {
  inline-size: 25px;
  block-size: 25px;
}

.sec-FeaturedCtaCarousel_Prev {
  left: 15px;
}

.sec-FeaturedCtaCarousel_Next {
  right: 15px;
}

.sec-FeaturedCtaCarousel_Next.swiper-button-disabled,
.sec-FeaturedCtaCarousel_Prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
| @namespace: sec
|
*/
.sec-Hero {
  position: relative;
  display: flex;
  max-block-size: 100svh;
  inline-size: 100%;
}
.sec-Hero.sec-Hero-first {
  max-block-size: calc(100svh - var(--Header_Height));
}
.sec-Hero .lyt-Theme .sec-Hero-first {
  max-block-size: calc(100svh - var(--Header_TopBar));
}
.sec-Hero.sec-Hero-light {
  color: var(--Color_White);
}
.sec-Hero::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: var(--SectionHero_AspectRatio-mobile, 150%);
}
@media only screen and (min-width: 768px) {
  .sec-Hero::after {
    padding-block-start: var(--SectionHero_AspectRatio-desktop, 56.25%);
  }
}

.sec-Hero_Inner {
  margin-block: 30px;
}
.lyt-Theme .sec-Hero-first .sec-Hero_Inner {
  margin-block-start: calc(var(--Header_Banner) + 30px);
}

.sec-Hero_Body {
  gap: var(--Grid_Gutter);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto 1fr;
  display: grid;
  block-size: 100%;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
*/
.sec-Hero_MediaContainer {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0 0;
  z-index: -1;
  block-size: 100%;
  overflow: hidden;
}

.sec-Hero_Overlay {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: block;
  inline-size: 100%;
  block-size: 100%;
  background-color: #000;
  opacity: var(--Opacity);
}
.sec-Hero-dark .sec-Hero_Overlay {
  background-color: #fff;
}

.sec-Hero_Image {
  position: absolute;
  inset-inline-start: 0;
  z-index: -2;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
}

.sec-Hero_Image-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-Hero_Image-desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .sec-Hero_Image-mobile {
    display: none;
  }
}

.sec-Hero_Video {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: -1;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-Hero_Video-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-Hero_Video-desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .sec-Hero_Video-mobile {
    display: none;
  }
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.sec-Hero_Content {
  align-self: center;
  grid-column: 1/span 12;
  grid-row: 2;
}
@media only screen and (min-width: 1200px) {
  .sec-Hero_Content {
    max-inline-size: 750px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileLeft .sec-Hero_Content {
    grid-column: 1/span 10;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileCenter .sec-Hero_Content {
    grid-column: 2/span 10;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileRight .sec-Hero_Content {
    grid-column: 3/span 10;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopLeft .sec-Hero_Content {
    grid-column: 1/span 8;
    margin-inline: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopCenter .sec-Hero_Content {
    grid-column: 3/span 8;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopRight .sec-Hero_Content {
    grid-column: 5/span 8;
    margin-inline: auto 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileBottom .sec-Hero_Content {
    grid-row: 3;
  }
}

@media only screen and (min-width: 768px) {
  .sec-Hero-desktopBottom .sec-Hero_Content {
    grid-row: 3;
  }
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
|
*/
.sec-Hero_Title {
  font-size: 28px;
  inline-size: 100%;
  inline-size: 83.3333333333%;
}
@media only screen and (min-width: 576px) {
  .sec-Hero_Title {
    inline-size: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero_Title {
    font-size: 36px;
    inline-size: 87.5%;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileLeft .sec-Hero_Title {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileCenter .sec-Hero_Title {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileRight .sec-Hero_Title {
    margin-inline: auto 0;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopLeft .sec-Hero_Title {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopCenter .sec-Hero_Title {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopRight .sec-Hero_Title {
    margin-inline: auto 0;
    text-align: end;
  }
}

/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
|
*/
.sec-Hero_Text {
  font-size: 14px;
  margin-block-start: 10px;
}
@media only screen and (min-width: 576px) {
  .sec-Hero_Text {
    inline-size: 90%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero_Text {
    text-align: start;
  }
}
@media only screen and (min-width: 992px) {
  .sec-Hero_Text {
    inline-size: 75%;
  }
}
@media only screen and (min-width: 1200px) {
  .sec-Hero_Text {
    inline-size: 100%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileLeft .sec-Hero_Text {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileCenter .sec-Hero_Text {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileRight .sec-Hero_Text {
    margin-inline: auto 0;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopLeft .sec-Hero_Text {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopCenter .sec-Hero_Text {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopRight .sec-Hero_Text {
    margin-inline: auto 0;
    text-align: end;
  }
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
|
*/
.sec-Hero_Buttons {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  margin-block-start: 20px;
  gap: calc(var(--Grid_Gutter) * 2);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .sec-Hero_Buttons {
    margin-block-start: 30px;
  }
}
.sec-Hero_Buttons .btn-Button-light {
  background-color: var(--Color_White);
  color: var(--text-primary-color);
}
.sec-Hero_Buttons .btn-Button-dark {
  background-color: var(--text-primary-color);
  color: var(--Color_White);
}
.sec-Hero_Buttons .btn-Button-dark .btn-Button_Text {
  background-color: var(--text-primary-color);
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileLeft .sec-Hero_Buttons {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileCenter .sec-Hero_Buttons {
    justify-content: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-Hero-mobileRight .sec-Hero_Buttons {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopLeft .sec-Hero_Buttons {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopCenter .sec-Hero_Buttons {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-Hero-desktopRight .sec-Hero_Buttons {
    justify-content: flex-end;
  }
}

.sec-Hero_Button {
  display: flex;
  z-index: 2;
  margin-block-start: 10px;
}

.btn-Button-underline {
  background-color: transparent !important;
  color: var(--Color_White);
  border-bottom: 1px solid var(--Color_White);
  padding: 0;
}
.btn-Button-underline:hover, .btn-Button-underline:focus {
  background-color: transparent !important;
  color: var(--Color_White);
  border-bottom: 1px solid var(--Color_White);
}

.btn-Button-underline .btn-Button_Text {
  background-color: transparent !important;
  color: var(--Color_White);
  padding: 10px 0px;
}

/*
|--------------------------------------------------------------------------
| Product Overlay
|--------------------------------------------------------------------------
|
*/
.sec-Hero_ProductsOverlay {
  align-self: flex-end;
  grid-column: 1/span 12;
  grid-row: 3;
  max-inline-size: 100%;
  margin-block-start: 60px;
  margin-inline: auto 0;
}
@media (--sm) {
  .sec-Hero_ProductsOverlay {
    margin-inline: auto 0;
  }
}

.sec-Hero_VideoPlayButton {
  width: 100px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--Grid_Gutter);
  transition: border 0.3s ease;
}
.sec-Hero_VideoPlayButton:hover, .sec-Hero_VideoPlayButton:focus {
  border-bottom: 2px solid var(--Color_White);
  cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| LargeMedia
|--------------------------------------------------------------------------
| @namespace: sec
|
*/
.sec-LargeMedia {
  position: relative;
  display: flex;
  max-block-size: 100svh;
  inline-size: 100%;
  padding-block-start: 35px;
}
.sec-LargeMedia.sec-LargeMedia-first {
  max-block-size: calc(100svh - var(--Header_Height));
}
.sec-LargeMedia .lyt-Theme .sec-LargeMedia-first {
  max-block-size: calc(100svh - var(--Header_TopBar));
}
.sec-LargeMedia.sec-LargeMedia-light {
  color: var(--Color_White);
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia {
    margin-block-start: 60px;
  }
}
.sec-LargeMedia::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: var(--SectionLargeMedia_AspectRatio-mobile, 150%);
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia::after {
    padding-block-start: var(--SectionLargeMedia_AspectRatio-desktop, 56.25%);
  }
}

.sec-LargeMedia_Inner {
  margin-block: 30px;
}
.lyt-Theme .sec-LargeMedia-first .sec-LargeMedia_Inner {
  margin-block-start: calc(var(--Header_Banner) + 30px);
}

.sec-LargeMedia_Body {
  gap: var(--Grid_Gutter);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto 1fr;
  display: grid;
  block-size: 100%;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
*/
.sec-LargeMedia_MediaContainer {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0 0;
  z-index: -1;
  block-size: 100%;
  overflow: hidden;
}

.sec-LargeMedia_Overlay {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: block;
  inline-size: 100%;
  block-size: 100%;
  background-color: #000;
  opacity: var(--Opacity);
}
.sec-LargeMedia-dark .sec-LargeMedia_Overlay {
  background-color: #fff;
}

.sec-LargeMedia_Image {
  position: absolute;
  inset-inline-start: 0;
  z-index: -2;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
}

.sec-LargeMedia_Image-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Image-desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Image-mobile {
    display: none;
  }
}

.sec-LargeMedia_Video {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: -1;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-LargeMedia_Video-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Video-desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Video-mobile {
    display: none;
  }
}

.sec-LargeMedia_PopupVideo {
  inline-size: 80%;
  block-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec-LargeMedia_VideoContainer {
  position: relative;
  inline-size: 100%;
  block-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.drw-Drawer-videoModal {
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 2;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.sec-LargeMedia_Content {
  align-self: center;
  grid-column: 1/span 12;
  grid-row: 2;
}
@media only screen and (min-width: 1200px) {
  .sec-LargeMedia_Content {
    max-inline-size: 750px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileLeft .sec-LargeMedia_Content {
    grid-column: 1/span 10;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileCenter .sec-LargeMedia_Content {
    grid-column: 2/span 10;
    justify-items: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileRight .sec-LargeMedia_Content {
    grid-column: 3/span 10;
    justify-items: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopLeft .sec-LargeMedia_Content {
    grid-column: 1/span 8;
    margin-inline: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopCenter .sec-LargeMedia_Content {
    grid-column: 3/span 8;
    margin-inline: auto;
    justify-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopRight .sec-LargeMedia_Content {
    grid-column: 5/span 8;
    margin-inline: auto 0;
    justify-items: end;
  }
}

@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileBottom .sec-LargeMedia_Content {
    grid-row: 3;
    align-self: end;
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopBottom .sec-LargeMedia_Content {
    grid-row: 3;
    align-self: end;
    padding-bottom: 15px;
  }
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
|
*/
.sec-LargeMedia_Title {
  inline-size: 100%;
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileLeft .sec-LargeMedia_Title {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileCenter .sec-LargeMedia_Title {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileRight .sec-LargeMedia_Title {
    margin-inline: auto 0;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopLeft .sec-LargeMedia_Title {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopCenter .sec-LargeMedia_Title {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopRight .sec-LargeMedia_Title {
    margin-inline: auto 0;
    text-align: end;
  }
}

/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
|
*/
.sec-LargeMedia_Text {
  font-size: 14px;
  margin-block-start: 10px;
}
@media only screen and (min-width: 576px) {
  .sec-LargeMedia_Text {
    inline-size: 90%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Text {
    text-align: start;
  }
}
@media only screen and (min-width: 992px) {
  .sec-LargeMedia_Text {
    inline-size: 75%;
  }
}
@media only screen and (min-width: 1200px) {
  .sec-LargeMedia_Text {
    inline-size: 100%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileLeft .sec-LargeMedia_Text {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileCenter .sec-LargeMedia_Text {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileRight .sec-LargeMedia_Text {
    margin-inline: auto 0;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopLeft .sec-LargeMedia_Text {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopCenter .sec-LargeMedia_Text {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopRight .sec-LargeMedia_Text {
    margin-inline: auto 0;
    text-align: end;
  }
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
|
*/
.sec-LargeMedia_Buttons {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  margin-block-start: 20px;
  gap: calc(var(--Grid_Gutter) * 2);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia_Buttons {
    margin-block-start: 30px;
  }
}
.sec-LargeMedia_Buttons .btn-Button-light {
  background-color: var(--Color_White);
  color: var(--text-primary-color);
}
.sec-LargeMedia_Buttons .btn-Button-dark {
  background-color: var(--text-primary-color);
  color: var(--Color_White);
}
.sec-LargeMedia_Buttons .btn-Button-dark span.btn-Button_Text {
  background-color: var(--text-primary-color);
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileLeft .sec-LargeMedia_Buttons {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileCenter .sec-LargeMedia_Buttons {
    justify-content: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-LargeMedia-mobileRight .sec-LargeMedia_Buttons {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopLeft .sec-LargeMedia_Buttons {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopCenter .sec-LargeMedia_Buttons {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-LargeMedia-desktopRight .sec-LargeMedia_Buttons {
    justify-content: flex-end;
  }
}

.sec-LargeMedia_Button {
  display: flex;
  z-index: 2;
  margin-block-start: 10px;
}

.btn-Button-underline {
  background-color: transparent !important;
  color: var(--Color_White);
  border-bottom: 1px solid var(--Color_White);
  padding: 0;
}
.btn-Button-underline:hover, .btn-Button-underline:focus {
  background-color: transparent !important;
  color: var(--Color_White);
  border-bottom: 1px solid var(--Color_White);
}

.btn-Button-underline .btn-Button_Text {
  background-color: transparent !important;
  color: var(--Color_White);
  padding: 10px 0px;
}

/*
|--------------------------------------------------------------------------
| Product Overlay
|--------------------------------------------------------------------------
|
*/
.sec-LargeMedia_ProductsOverlay {
  align-self: flex-end;
  grid-column: 1/span 12;
  grid-row: 3;
  max-inline-size: 100%;
  margin-block-start: 60px;
  margin-inline: auto 0;
}
@media (--sm) {
  .sec-LargeMedia_ProductsOverlay {
    margin-inline: auto 0;
  }
}

.sec-LargeMedia_VideoPlayButton {
  width: 110px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--Grid_Gutter);
  transition: border 0.3s ease;
  font-size: 14px;
}
.sec-LargeMedia_VideoPlayButton:hover, .sec-LargeMedia_VideoPlayButton:focus {
  border-bottom: 2px solid var(--text-primary-color);
  cursor: pointer;
}
.sec-LargeMedia_VideoPlayButton svg path {
  fill: var(--text-primary-color);
}
.sec-LargeMedia_VideoPlayButton svg circle {
  stroke: var(--text-primary-color);
}

.sec-LargeMedia-light .sec-LargeMedia_VideoPlayButton {
  color: --Color_White;
}
.sec-LargeMedia-light .sec-LargeMedia_VideoPlayButton:hover, .sec-LargeMedia-light .sec-LargeMedia_VideoPlayButton:focus {
  border-bottom: 2px solid var(--Color_White);
}
.sec-LargeMedia-light .sec-LargeMedia_VideoPlayButton svg path {
  fill: var(--Color_White);
}
.sec-LargeMedia-light .sec-LargeMedia_VideoPlayButton svg circle {
  stroke: var(--Color_White);
}

.sec-Instafeed__title {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .sec-Instafeed__title {
    font-size: 22px;
  }
}

.sec-Instafeed__handle {
  border-bottom: 1px solid var(--text-primary-color);
  padding-block-end: 3px;
}

.sec-Instafeed {
  padding-block-start: 50px;
}

.sec-PromotionalBanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  color: var(--Color_White);
  padding-block: 40px;
  padding-inline: 30px;
}
@media (min-width: 768px) {
  .sec-PromotionalBanner {
    padding-block: 60px;
    padding-inline: 50px;
  }
}
.sec-PromotionalBanner .sec-PromotionalBanner_ImageWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sec-PromotionalBanner .sec-PromotionalBanner_Image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-PromotionalBanner .sec-PromotionalBanner_Image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-PromotionalBanner .sec-PromotionalBanner_ImageMobile {
  display: none;
}
@media (max-width: 767px) {
  .sec-PromotionalBanner .sec-PromotionalBanner_ImageMobile {
    display: block;
  }
}
.sec-PromotionalBanner .sec-PromotionalBanner_ImageDesktop {
  display: block;
}
@media (max-width: 767px) {
  .sec-PromotionalBanner .sec-PromotionalBanner_ImageDesktop {
    display: none;
  }
}
.sec-PromotionalBanner .sec-PromotionalBanner_Inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  width: 100%;
  max-width: 800px;
}
@media (min-width: 768px) {
  .sec-PromotionalBanner .sec-PromotionalBanner_Inner {
    padding: 1.5rem;
  }
}
.sec-PromotionalBanner .sec-PromotionalBanner_Title {
  font-size: 28px;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .sec-PromotionalBanner .sec-PromotionalBanner_Title {
    font-size: 36px;
  }
}
.sec-PromotionalBanner .sec-PromotionalBanner_Content {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .sec-PromotionalBanner .sec-PromotionalBanner_Content {
    font-size: 1.125rem;
  }
}
.sec-PromotionalBanner .sec-PromotionalBanner_Button {
  display: inline-block;
  background: white;
  color: black;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.sec-PromotionalBanner .sec-PromotionalBanner_Button:hover {
  background-color: #f2f2f2;
}

/*
|--------------------------------------------------------------------------
| QuickAddBanner
|--------------------------------------------------------------------------
| @namespace: sec
|
*/
.sec-QuickAddBanner {
  display: flex;
  flex-direction: column;
}
.sec-QuickAddBanner.sec-QuickAddBanner_first {
  max-block-size: calc(100svh - var(--Header_Height));
}
.sec-QuickAddBanner .lyt-Theme .sec-QuickAddBanner_first {
  max-block-size: calc(100svh - var(--Header_TopBar));
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner {
    flex-direction: row;
  }
}

.sec-QuickAddBanner_Panel {
  position: relative;
  display: flex;
  flex: 1;
  max-block-size: 100svh;
  inline-size: 100%;
}
.sec-QuickAddBanner_Panel.sec-QuickAddBanner_Panel-light {
  color: var(--Color_White);
}
.sec-QuickAddBanner_Panel.sec-QuickAddBanner_Panel-dark {
  color: var(--Color_Brand);
}
.sec-QuickAddBanner_Panel::after {
  content: "";
  display: block;
  inline-size: 0;
  padding-block-start: var(--SectionQuickAddBanner_AspectRatio-mobile, 150%);
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Panel::after {
    padding-block-start: var(--SectionQuickAddBanner_AspectRatio-desktop, 56.25%);
  }
}

.sec-QuickAddBanner_Inner {
  margin-block: 30px;
}
.lyt-Theme .sec-QuickAddBanner_first .sec-QuickAddBanner_Inner {
  margin-block-start: calc(var(--Header_Banner) + 30px);
}

.sec-QuickAddBanner_Body {
  gap: var(--Grid_Gutter);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto 1fr;
  display: grid;
  block-size: 100%;
}

.sec-QuickAddBanner_FauxLink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
*/
.sec-QuickAddBanner_MediaContainer {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0 0;
  z-index: -1;
  block-size: 100%;
  overflow: hidden;
}

.sec-QuickAddBanner_Overlay {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  display: block;
  inline-size: 100%;
  block-size: 100%;
  background-color: #000;
  opacity: var(--Opacity);
}
.sec-QuickAddBanner_dark .sec-QuickAddBanner_Overlay {
  background-color: #fff;
}

.sec-QuickAddBanner_Image {
  position: absolute;
  inset-inline-start: 0;
  z-index: -2;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
}

.sec-QuickAddBanner_Image-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Image-desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Image-mobile {
    display: none;
  }
}

.sec-QuickAddBanner_Video {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: -1;
  display: flex;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-QuickAddBanner_Video-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Video-desktop {
    display: flex;
  }
}

@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Video-mobile {
    display: none;
  }
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.sec-QuickAddBanner_Content {
  align-self: center;
  grid-column: 1/span 12;
  grid-row: 2;
}
@media only screen and (min-width: 1200px) {
  .sec-QuickAddBanner_Content {
    max-inline-size: 750px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_Panel-mobileLeft .sec-QuickAddBanner_Content {
    grid-column: 1/span 10;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_Panel-mobileCenter .sec-QuickAddBanner_Content {
    grid-column: 2/span 10;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_Panel-mobileRight .sec-QuickAddBanner_Content {
    grid-column: 3/span 10;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Panel-desktopLeft .sec-QuickAddBanner_Content {
    grid-column: 1/span 8;
    margin-inline: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Panel-desktopCenter .sec-QuickAddBanner_Content {
    grid-column: 3/span 8;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Panel-desktopRight .sec-QuickAddBanner_Content {
    grid-column: 5/span 8;
    margin-inline: auto 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_Panel-mobileBottom .sec-QuickAddBanner_Content {
    grid-row: 3;
    align-self: end;
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Panel-desktopBottom .sec-QuickAddBanner_Content {
    grid-row: 3;
    align-self: end;
    padding-bottom: 15px;
  }
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
|
*/
.sec-QuickAddBanner_Title {
  font-size: 28px;
  inline-size: 100%;
  inline-size: 83.3333333333%;
}
@media only screen and (min-width: 576px) {
  .sec-QuickAddBanner_Title {
    inline-size: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Title {
    inline-size: 87.5%;
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) {
  .sec-QuickAddBanner_Title {
    inline-size: 75%;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileLeft .sec-QuickAddBanner_Title {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileCenter .sec-QuickAddBanner_Title {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileRight .sec-QuickAddBanner_Title {
    margin-inline: auto 0;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopLeft .sec-QuickAddBanner_Title {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopCenter .sec-QuickAddBanner_Title {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopRight .sec-QuickAddBanner_Title {
    margin-inline: auto 0;
    text-align: end;
  }
}

/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
|
*/
.sec-QuickAddBanner_Text {
  margin-block-start: 10px;
  font-size: 14px;
}
@media only screen and (min-width: 576px) {
  .sec-QuickAddBanner_Text {
    inline-size: 90%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Text {
    text-align: start;
  }
}
@media only screen and (min-width: 992px) {
  .sec-QuickAddBanner_Text {
    inline-size: 75%;
  }
}
@media only screen and (min-width: 1200px) {
  .sec-QuickAddBanner_Text {
    inline-size: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileLeft .sec-QuickAddBanner_Text {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileCenter .sec-QuickAddBanner_Text {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileRight .sec-QuickAddBanner_Text {
    margin-inline: auto 0;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopLeft .sec-QuickAddBanner_Text {
    margin-inline: 0 auto;
    text-align: start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopCenter .sec-QuickAddBanner_Text {
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopRight .sec-QuickAddBanner_Text {
    margin-inline: auto 0;
    text-align: end;
  }
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
|
*/
.sec-QuickAddBanner_Buttons {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  margin-block-start: 20px;
  gap: calc(var(--Grid_Gutter) * 2);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_Buttons {
    margin-block-start: 30px;
  }
}
.sec-QuickAddBanner_Buttons .btn-Button-light {
  background-color: var(--Color_White);
  color: var(--text-primary-color);
}
.sec-QuickAddBanner_Buttons .btn-Button-dark {
  background-color: var(--text-primary-color);
  color: var(--Color_White);
}
.sec-QuickAddBanner_Buttons .btn-Button-dark .btn-Button_Text {
  background-color: var(--text-primary-color);
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileLeft .sec-QuickAddBanner_Buttons {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileCenter .sec-QuickAddBanner_Buttons {
    justify-content: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .sec-QuickAddBanner_mobileRight .sec-QuickAddBanner_Buttons {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopLeft .sec-QuickAddBanner_Buttons {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopCenter .sec-QuickAddBanner_Buttons {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_desktopRight .sec-QuickAddBanner_Buttons {
    justify-content: flex-end;
  }
}

.sec-QuickAddBanner_Button {
  display: flex;
  margin-block-start: 10px;
}

.btn-Button-underline {
  background-color: transparent !important;
  color: var(--Color_White);
  border-bottom: 1px solid var(--Color_White);
  padding-inline: 0;
}
.btn-Button-underline:hover, .btn-Button-underline:focus {
  background-color: transparent !important;
  color: var(--Color_White);
  border-bottom: 1px solid var(--Color_White);
}

.btn-Button-underline .btn-Button_Text {
  background-color: transparent !important;
  color: var(--Color_White);
  padding: 10px 0px;
}

/*
|--------------------------------------------------------------------------
| Product Overlay
|--------------------------------------------------------------------------
|
*/
.sec-QuickAddBanner_ProductsOverlay {
  align-self: flex-end;
  grid-column: 1/span 12;
  grid-row: 1;
  max-inline-size: 100%;
  margin-inline: auto 0;
  align-self: start;
}
@media (--sm) {
  .sec-QuickAddBanner_ProductsOverlay {
    margin-inline: auto 0;
  }
}
@media only screen and (min-width: 768px) {
  .sec-QuickAddBanner_ProductsOverlay {
    grid-column: 1/span 12;
  }
  .sec-QuickAddBanner_ProductsOverlay.sec-QuickAddBanner_ProductsOverlay-desktopBottom {
    grid-row: 1;
    align-self: flex-start;
  }
  .sec-QuickAddBanner_ProductsOverlay.sec-QuickAddBanner_ProductsOverlay-desktopCenter {
    grid-row: 2;
    align-self: center;
  }
  .sec-QuickAddBanner_ProductsOverlay.sec-QuickAddBanner_ProductsOverlay-desktopBottom {
    grid-row: 3;
    align-self: end;
  }
}

.brand-messaging-ticker {
  overflow: hidden;
  width: 100%;
  padding: 100px 0;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-text {
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  font-size: 52px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .ticker-text {
    font-size: 80px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .ticker-text {
    animation: ticker-scroll 70s linear infinite;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*
|--------------------------------------------------------------------------
| Media text
|--------------------------------------------------------------------------
| @namespace: sec
|
*/
.sec-ProductCarousel {
  display: block;
  margin-block: 60px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .sec-ProductCarousel {
    margin-block: 80px;
  }
}

.sec-ProductCarousel-largeMargin {
  margin-block: 80px;
}
@media only screen and (min-width: 992px) {
  .sec-ProductCarousel-largeMargin {
    margin-block: 120px;
  }
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
|
*/
.sec-ProductCarousel_ContentContainer {
  flex-direction: column;
  justify-content: center;
  display: flex;
  inline-size: 100%;
  padding-block: 60px 0;
}
@media only screen and (min-width: 768px) {
  .sec-ProductCarousel_ContentContainer {
    padding-block: 60px;
  }
}

.sec-ProductCarousel_Content {
  inline-size: 100%;
  padding-inline: 15px;
}
@media only screen and (min-width: 576px) {
  .sec-ProductCarousel_Content {
    inline-size: 83.3333333333%;
  }
}
@media only screen and (min-width: 768px) {
  .sec-ProductCarousel_Content {
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .sec-ProductCarousel_Content {
    inline-size: 79.1666666667%;
  }
}

.sec-ProductCarousel_Title {
  margin-block-end: 10px;
  font-size: 18px;
  color: var(--Color_Brand);
}
@media only screen and (min-width: 768px) {
  .sec-ProductCarousel_Title {
    font-size: 24px;
  }
}

.sec-ProductCarousel_ShopAll {
  margin-block-end: 10px;
  padding-block: 5px;
  font-size: var(--font-size-body-base);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  color: var(--Color_Brand);
}

.sec-ProductCarousel_Header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  inline-size: 100%;
  padding-inline: 15px;
  margin-block-end: 20px;
}
@media only screen and (min-width: 576px) {
  .sec-ProductCarousel_Header {
    padding-inline: 30px;
  }
}

.sec-ProductCarousel_Text {
  margin-block: 20px;
}
@media only screen and (min-width: 992px) {
  .sec-ProductCarousel_Text {
    margin-block: 40px 30px;
  }
}

.sec-ProductCarousel_Buttons {
  display: flex;
  margin-block-start: 20px;
}
@media only screen and (min-width: 768px) {
  .sec-ProductCarousel_Buttons {
    margin-block-start: 30px;
  }
}

/*
|--------------------------------------------------------------------------
| Carousel
|--------------------------------------------------------------------------
|
*/
.sec-ProductCarousel_Carousel.swiper {
  overflow-x: no-scroll;
}

.sec-ProductCarousel_CarouselContainer {
  display: block;
  position: relative;
  inline-size: 100%;
  padding-inline-start: 15px;
}
@media only screen and (min-width: 576px) {
  .sec-ProductCarousel_CarouselContainer {
    padding-inline-start: 30px;
  }
}

.sec-ProductCarousel_Slides:not([data-initialised=true]), .sec-ProductCarousel_Slides[data-keen-slider-disabled] {
  display: flex;
  overflow: visible;
  gap: 5px;
}
@media only screen and (min-width: 992px) {
  .sec-ProductCarousel_Slides:not([data-initialised=true]), .sec-ProductCarousel_Slides[data-keen-slider-disabled] {
    gap: 10px;
  }
}
.sec-ProductCarousel_Slides[data-initialised=true]:not([data-keen-slider-disabled]) {
  overflow: visible;
}

.sec-ProductCarousel_Prev,
.sec-ProductCarousel_Next {
  position: absolute;
  top: calc(50% - 60px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 24px;
  block-size: 24px;
  background-color: var(--Color_White);
  border: 1px solid var(--Color_GreyLight);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.2s ease;
}
.sec-ProductCarousel_Prev:hover,
.sec-ProductCarousel_Next:hover {
  opacity: 0.5;
}
.sec-ProductCarousel_Prev svg,
.sec-ProductCarousel_Next svg {
  inline-size: 24px;
  block-size: 24px;
}

.sec-ProductCarousel_Prev {
  left: 15px;
}

.sec-ProductCarousel_Next {
  right: 15px;
}

.sec-ProductCarousel_Next.swiper-button-disabled,
.sec-ProductCarousel_Prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.sec-MediaPanels {
  display: flex;
  flex-direction: row;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  max-height: 100vh;
}
@media (max-width: 768px) {
  .sec-MediaPanels {
    flex-direction: column;
    max-height: none;
  }
}

.sec-MediaPanels__panel {
  position: relative;
  width: 100%;
  display: flex;
  flex: 1;
  align-items: end;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.sec-MediaPanels__panel-image-container {
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.sec-MediaPanels__panel-title {
  font-size: 28px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .sec-MediaPanels__panel-title {
    font-size: 36px;
  }
}

.sec-MediaPanels__panel-content {
  position: absolute;
  z-index: 2;
  padding: 2rem;
}

.sec-MediaPanels__panel-link {
  display: inline-block;
  margin-top: 1rem;
  margin-block-end: 10px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--Color_White);
}

.sec-EditorialFocus {
  padding-block: var(--ef-padding-block, 56px);
}

.sec-EditorialFocus_Container {
  padding-inline: 0;
}
@media only screen and (min-width: 768px) {
  .sec-EditorialFocus_Container {
    padding-inline: 50px;
  }
}

.sec-EditorialFocus_Grid {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: start;
}

.sec-EditorialFocus_Left {
  grid-column: 1/2;
  display: grid;
  gap: 24px;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .sec-EditorialFocus_Left {
    padding-top: 130px;
  }
}

.sec-EditorialFocus_Right {
  grid-column: 1/2;
}
@media only screen and (min-width: 992px) {
  .sec-EditorialFocus_Right {
    grid-column: 3/4;
  }
}

.sec-EditorialFocus_Copy {
  display: grid;
  gap: 15px;
  padding: 0;
  max-inline-size: 80%;
  justify-self: start;
}

.sec-EditorialFocus_Title {
  font-size: 28px;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .sec-EditorialFocus_Title {
    font-size: 36px;
  }
}

.sec-EditorialFocus_Text {
  max-inline-size: 450px;
}

.sec-EditorialFocus_Button {
  margin-top: 15px;
  padding: 12px 45px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
}

.sec-EditorialFocus_ImagesRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sec-EditorialFocus_ImageTile {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
}

.sec-EditorialFocus_ImageLargeWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 1100px;
  overflow: hidden;
  background: #f4f4f4;
}

.sec-EditorialFocus_Media {
  position: relative;
  width: 100%;
  height: 100%;
}

.sec-EditorialFocus_ImageTile .sec-EditorialFocus_Media,
.sec-EditorialFocus_ImageLargeWrap .sec-EditorialFocus_Media {
  position: absolute;
  inset: 0;
}

.sec-EditorialFocus_Media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.sec-EditorialFocus_Media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (max-width: 960px) {
  .sec-EditorialFocus_Grid {
    grid-template-columns: 1fr;
    display: grid;
    flex-direction: column;
  }
  .sec-EditorialFocus_Right {
    order: -1;
  }
  .sec-EditorialFocus_Left {
    order: 0;
  }
  .sec-EditorialFocus_Copy {
    max-inline-size: none;
    padding: 20px;
  }
  .sec-EditorialFocus_ImageLargeWrap {
    max-height: 640px;
  }
  .sec-EditorialFocus_ImagesRow {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-inline: 15px;
  }
}
@media only screen and (max-width: 960px) and (min-width: 768px) {
  .sec-EditorialFocus_ImagesRow {
    gap: 24px;
    margin-inline: 0;
  }
}
body[data-collection-gate=true] {
  overflow: hidden !important;
  height: 100% !important;
}

.col-CollectionGate_Dialog {
  background: transparent;
  border: unset;
}

.col-CollectionGate_Overlay[data-mode=hidden],
.col-CollectionGate_Hidden,
.col-CollectionGate_HiddenMedia {
  height: 100vh;
  min-height: 100vh;
}

.col-CollectionGate_Overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.col-CollectionGate_Overlay[data-mode=blurred] {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-CollectionGate_Modal {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-height: 200px;
  margin: 10px;
}

.col-CollectionGate_ModalTitle {
  margin: 0 0 6px 0;
  font-size: 22px;
}

.col-CollectionGate_Modal .col-CollectionGate_PasswordDescription {
  font-size: 14px;
  margin: 0 0 16px 0;
}

.col-CollectionGate_Form {
  margin-top: 8px;
}
.col-CollectionGate_Form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.col-CollectionGate_Input {
  flex: 1;
  height: 44px;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid #000;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
}

.col-CollectionGate_Input::-moz-placeholder {
  text-align: center;
}

.col-CollectionGate_Input::placeholder {
  text-align: center;
}

.col-CollectionGate_Btn {
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

.col-CollectionGate_Error {
  color: #c72e2f;
  margin-top: 8px;
  display: none;
  font-size: 12px;
}

.col-CollectionGate_Link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: underline;
  color: #000;
}

.col-CollectionGate_Overlay[data-mode=hidden] {
  padding: 0;
}

.col-CollectionGate_Hidden {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
}

.col-CollectionGate_HiddenMedia {
  flex: 1 1 50%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.col-CollectionGate_MediaDesktop {
  height: 100%;
}

@supports (-webkit-touch-callout: none) {
  .col-CollectionGate_MediaDesktop {
    height: -webkit-fill-available;
  }
  .col-CollectionGate_Overlay[data-mode=hidden],
  #col-CollectionGate,
  .col-CollectionGate_Hidden,
  .col-CollectionGate_HiddenMedia,
  .col-CollectionGate_Hidden .rsp-Image {
    height: -webkit-fill-available;
  }
}
.col-CollectionGate_HiddenPanel {
  flex: 1 1 50%;
  height: 100%;
  background: #fef8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2;
  min-height: 200px;
}

.col-CollectionGate_HiddenPanel .col-CollectionGate_Modal {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 28px;
}

.col-CollectionGate_ModalHeader {
  padding: 15px;
  border-bottom: 1px solid #000;
  text-align: left;
  justify-content: left;
}

.col-CollectionGate_ModalHeader .col-CollectionGate_ModalTitle {
  margin: 0;
}

.col-CollectionGate_ModalContent {
  padding: 15px;
}

.col-CollectionGate_ModalContent .col-CollectionGate_PasswordDescription {
  margin: 10px 0 16px 0;
  text-align: left;
  width: 100%;
}

.col-CollectionGate_Modal .col-CollectionGate_PasswordDescription {
  margin-bottom: 24px;
}

.col-CollectionGate_Hidden .rsp-Image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.col-CollectionGate_Hidden .rsp-Image_Image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.col-CollectionGate_MediaDesktop {
  display: none;
}

.col-CollectionGate_MediaMobile {
  display: block;
}

@media (min-width: 768px) {
  .col-CollectionGate_MediaDesktop {
    display: block;
  }
  .col-CollectionGate_MediaMobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .col-CollectionGate_Hidden {
    position: relative;
    flex-direction: column;
    height: 100vh;
  }
  .col-CollectionGate_HiddenMedia {
    height: 40%;
    min-height: 40%;
  }
  .col-CollectionGate_HiddenPanel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 200px;
    width: 100%;
    height: 65%;
  }
}
.col-CollectionGate_CheckboxLabel {
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  text-align: left;
  align-content: center;
}

.col-CollectionGate_CheckboxLabel input[type=checkbox] {
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  border-radius: 0;
  height: 20px;
  width: 20px;
  margin-right: 8px;
}

.col-CollectionGate_CheckboxLabelText {
  line-height: 20px;
}

/* Hidden mode theming */
.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_HiddenPanel {
  background: #000;
  color: #fff;
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_ModalHeader {
  border-bottom: 1px solid #fff;
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Modal .col-CollectionGate_ModalTitle,
.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Modal .col-CollectionGate_PasswordDescription,
.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_CheckboxLabelText {
  color: #fff;
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Input {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Btn {
  background: #fff;
  color: #000;
}

.col-CollectionGate_Overlay[data-mode=hidden][data-theme=dark] .col-CollectionGate_Link {
  color: #fff;
}

/*
@import 'sections/site-footer';
@import 'sections/side-cart';
@import 'sections/hero';
*/
/*
@import 'templates/product';
@import 'templates/blog';s
@import 'templates/article';
@import 'templates/standard-content';
@import 'templates/account';
@import 'templates/contact';
@import 'templates/404';
@import 'templates/gift-card'; */
.collection__products {
  isolation: isolate;
  position: relative;
  margin-top: 20px;
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1199.98px) {
  .collection__products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 575.98px) {
  .collection__products {
    gap: 25px 4px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 359.98px) {
  .collection__products {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 4px;
  }
}

.collection__container .showing-of-products {
  margin-top: 20px;
}

.collection header {
  margin-top: 100px;
}
.collection header .collection-description {
  font-size: 13px;
}
.collection header .read-more-trigger {
  text-decoration: underline;
}
@media (max-width: 960px) {
  .collection header .read-more-trigger {
    padding: 6px;
  }
}
.collection header .read-more-trigger:focus {
  outline: none;
}
@media (max-width: 960px) {
  .collection header {
    margin-top: 40px;
  }
  .collection header h1 {
    margin-top: 40px;
  }
}
.collection header .breadcrumbs, .collection header .breadcrumbs * {
  font-size: 14px;
}
@media (max-width: 960px) {
  .collection header .breadcrumbs, .collection header .breadcrumbs * {
    font-size: 10px;
  }
}
.collection__bar {
  padding: 0;
  margin-bottom: 24px;
}
.collection__button {
  padding: 0;
}
.collection__drawer {
  position: fixed;
  top: 0;
  left: -100%;
  height: 0;
  transition: left 0.25s ease-in-out;
  width: 98vw;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  background: #fff;
  padding: 16px;
}
.collection__drawer.open {
  left: 0;
}
.collection__drawer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.collection__drawer-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.collection__grid {
  margin-bottom: 40px;
}
@media (min-width: 961px) {
  .collection__grid {
    display: flex;
    gap: 32px;
    margin-top: 40px;
  }
}
.collection__filters .filter-trigger {
  font-size: 16px;
  font-family: "OpenSauceSans", Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.collection__filters .filter-item:not(:last-of-type) {
  margin-bottom: 24px;
}
.collection__filters .filter-values li:not(:last-of-type) {
  margin-bottom: 8px;
}
.collection__filters .filter-values .filter-value {
  cursor: pointer;
}
.collection__filters .filter-values .filter-value.active {
  font-weight: bold;
}
.collection__filters .filter-values .filter-value.active:after {
  content: "x";
  font-size: 0.75em;
  margin-left: 24px;
}
.collection__filters .filter-values--sort:focus-visible {
  border-color: #f2c8c8;
  border-radius: 0;
  outline: #f2c8c8;
  outline-style: solid;
}
@media (min-width: 961px) {
  .collection__filters {
    flex-basis: 20%;
  }
}
@media (min-width: 961px) {
  .collection__products {
    flex-basis: 80%;
    margin-top: 0;
  }
  .collection__products .pagination {
    flex-basis: 100%;
  }
}
.collection__products .pagination {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.template--product .klaviyo-bis-trigger {
  margin-top: 16px;
}
.template--product .product-stock-indicator {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.template--product .quantity-flex {
  width: 100px;
  align-items: stretch;
}
.template--product .quantity-flex input {
  text-align: center;
  height: 100%;
}
.template--product .quantity-flex button {
  padding: 10px;
  font-size: 18px;
  text-align: center;
}
.template--product .atc-flex {
  gap: 2px;
}
.template--product .atc-flex__btn {
  flex-grow: 1;
}
.radiant-account {
  margin-top: 152px;
}
@media (max-width: 960px) {
  .radiant-account {
    margin-top: 152px !important;
  }
}
.radiant-account .account__heading {
  margin-bottom: 80px;
}
@media (max-width: 960px) {
  .radiant-account .account__heading {
    margin-bottom: 24px;
  }
}
.radiant-account .account__heading h1 {
  font-size: 36px;
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .radiant-account .account__heading h1 {
    font-size: 30px;
  }
}
.radiant-account .account__heading .rte {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.47;
  margin: 0;
}
.radiant-account .link-cta {
  text-decoration: underline;
}
.radiant-account .bttn {
  background-color: #000;
  font-size: 14px;
  font-weight: 300;
  color: #d9d9d9;
  min-width: 211px;
}
.radiant-account input:focus-visible {
  border-radius: 0;
  outline: #F2C8C8;
  outline-style: solid;
}
@media (max-width: 960px) {
  .radiant-account .account__overview {
    flex-wrap: wrap;
  }
}
.radiant-account .account__overview .account__navigation--tablet.accordion {
  width: 100%;
  margin-top: unset;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item {
  border: unset;
  width: 100%;
  margin-bottom: 24px;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item.open .accordion-content {
  margin-top: -5px;
  padding: 0 16px 16px 32px;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item.open .accordion-header svg {
  transform: rotate(90deg);
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item .accordion-header {
  border-radius: 5px;
  background-color: #ebcac9;
  padding: 16px;
  color: #fff;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item .accordion-header p {
  font-size: 15px;
  font-weight: 300;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item .accordion-header svg {
  opacity: 1;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item .accordion-content {
  background-color: #ebcac9;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item .accordion-content ul {
  list-style: none;
}
.radiant-account .account__overview .account__navigation--tablet.accordion .accordion-item .accordion-content ul li:not(:last-child) {
  margin-bottom: 16px;
}
.radiant-account .account__overview .account__navigation {
  padding-right: 24px;
  width: 25%;
}
@media (max-width: 960px) {
  .radiant-account .account__overview .account__navigation {
    width: 100%;
  }
}
.radiant-account .account__overview .account__navigation .account__navigation-items li {
  padding: 24px 0;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}
.radiant-account .account__overview .account__navigation .account__navigation-items li:first-child {
  border-top: unset;
  padding-top: unset;
}
.radiant-account .account__overview .account__navigation .account__navigation-items li:last-child {
  border-bottom: unset;
}
.radiant-account .account__overview .account__navigation .account__navigation-items li a {
  font-size: 17px;
  font-weight: 300;
  text-decoration: none;
}
.radiant-account .account__overview .account__navigation .account__navigation-items li a.active {
  font-weight: bolder !important;
  line-height: 30px;
}
.radiant-account .account__overview .account__content {
  width: 75%;
}
@media (max-width: 960px) {
  .radiant-account .account__overview .account__content {
    width: 100%;
  }
}
.radiant-account .account__overview .account__content p {
  font-size: 15px;
}
.radiant-account .account__overview .account__content .bold {
  font-weight: bolder !important;
  font-size: 17px;
}
.radiant-account .account__overview .account__content h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .radiant-account .account__overview .account__content h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.radiant-account .account__overview .account__content--arrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.radiant-account .account__overview .account__content--arrow h2 {
  margin-bottom: 0;
}
.radiant-account .account__overview .account__content--arrow:before {
  border-style: solid;
  border-width: 0.1em 0.1em 0 0;
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  vertical-align: top;
  height: 0.5em;
  width: 0.5em;
  left: 0.25em;
  transform: rotate(-135deg);
}
.radiant-account .account__overview .account__content-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.radiant-account .account__overview .account__content-boxes--addresses p {
  font-size: 17px;
}
.radiant-account .account__overview .account__content-boxes--addresses p:not(:last-of-type) {
  margin-bottom: 8px;
}
.radiant-account .account__overview .account__content-boxes--addresses .default {
  margin-top: auto;
  padding-top: 56px;
}
.radiant-account .account__overview .account__content-boxes--addresses .default span {
  color: #8b8b8b;
}
.radiant-account .account__overview .account__content-boxes--order p {
  font-size: 17px;
}
.radiant-account .account__overview .account__content-boxes--order p:not(:last-of-type) {
  margin-bottom: 16px;
}
.radiant-account .account__overview .account__content-boxes .address {
  font-size: 15px;
  line-height: 2;
}
.radiant-account .account__overview .account__content-boxes__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 960px) {
  .radiant-account .account__overview .account__content-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}
.radiant-account .account__overview .account__content-boxes--static > div {
  height: -moz-fit-content;
  height: fit-content;
}
.radiant-account .account__overview .account__content-boxes > div {
  padding: 24px;
  border-radius: 5px;
  border: solid 1px #e9e9e9;
}
.radiant-account .account__overview .account__content-boxes > div.is-full {
  grid-column: 1/-1;
}
.radiant-account .account__overview .account__content-boxes > div.active {
  border-color: #000;
}
.radiant-account .account__overview .account__content-boxes > div .field__item:not(:last-child) {
  margin-bottom: 24px;
}
.radiant-account .account__overview .account__content-boxes > div .field__item .bold {
  margin-bottom: 16px;
}
.radiant-account .account__overview .account__content-boxes > div .field__item--footer {
  padding-top: 24px;
  border-top: 1px solid #e9e9e9;
}
.radiant-account .account__overview .account__content-boxes > div .bttn {
  margin-top: 16px;
}
.radiant-account .account__overview .account__content-boxes-payment {
  gap: 32px;
}
.radiant-account .account__overview .account__content-boxes-payment svg {
  width: 30px;
}
.radiant-account .account__overview .account__content .account__bottom-content {
  margin-top: 24px;
  padding: 24px;
  border-radius: 5px;
  border: solid 1px #e9e9e9;
}
.radiant-account .account__overview .account__content .account__bottom-content .block__item:not(:last-child) {
  margin-bottom: 24px;
}
.radiant-account .account__overview .account__content .account__bottom-content .block__item h3 {
  font-size: 17px;
}
.radiant-account .account__overview .account__content .account__bottom-content .block__item .rte {
  margin: 16px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.47;
}
.radiant-account .account__orders-header {
  display: flex;
  justify-content: space-between;
  padding-right: 24px;
  margin-bottom: 16px;
  font-size: 14px;
}
.radiant-account .account__orders-header > * {
  flex: 1;
}
.radiant-account .account__orders-header-item {
  flex-basis: 45%;
}
.radiant-account .account__orders-header p {
  text-align: right;
}
.radiant-account .account__orders-order {
  position: relative;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 24px;
  color: #000;
  font-size: 14px;
}
.radiant-account .account__orders-order p {
  font-size: 14px !important;
}
.radiant-account .account__orders-order:not(:last-of-type) {
  margin-bottom: 16px;
}
.radiant-account .account__orders-order__line {
  gap: 24px;
  display: flex;
  align-items: flex-start;
}
.radiant-account .account__orders-order__line:not(:last-of-type) {
  margin-bottom: 16px;
}
.radiant-account .account__orders-order__line .tab-info {
  white-space: nowrap;
}
@media (max-width: 960px) {
  .radiant-account .account__orders-order__line .tab-info {
    display: none;
  }
}
.radiant-account .account__orders-order__line p:not(:last-of-type) {
  margin-bottom: 16px;
}
.radiant-account .account__orders-order__details {
  width: 100%;
}
.radiant-account .account__orders-order__details .flex {
  justify-content: space-between;
  gap: 32px;
}
.radiant-account .account__orders-order__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.radiant-account .account__orders-order__footer p:not(:last-of-type) {
  margin-bottom: 16px;
}
.radiant-account .account__orders-order__actions {
  flex-direction: column-reverse;
}
@media (min-width: 961px) {
  .radiant-account .account__orders-order__actions {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: absolute;
    bottom: 24px;
    right: 24px;
    margin: 0;
    gap: 24px;
  }
}
@media (max-width: 960px) {
  .radiant-account .account__orders-order__actions {
    margin-top: 24px;
    gap: 16px;
  }
}
.radiant-account .account__orders-order__actions .link-cta {
  font-size: 14px;
}
.radiant-account .account__orders--page {
  margin-bottom: 16px;
}
.radiant-account .logout-btn {
  margin: 24px 0 60px;
}
.radiant-account .edit-address-form {
  margin-top: 24px;
  width: 100%;
}
.radiant-account .edit-address-form__default {
  margin-bottom: 16px;
  gap: 8px;
}
.radiant-account .edit-address-form__default label {
  margin-bottom: 0;
}
.radiant-account .new-address-cta {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .radiant-account .new-address-cta {
    width: 100%;
    margin-top: 24px;
  }
}
.radiant-account .new-address-form {
  margin-top: 16px;
}
.radiant-account .new-address-form__default {
  margin-bottom: 16px;
  gap: 8px;
}
.radiant-account .new-address-form__default label {
  margin-bottom: 0;
}
.radiant-account .pagination {
  margin-top: 24px;
}
.radiant-account .pagination p {
  text-transform: none;
  margin-bottom: 16px;
}
.radiant-account .pagination__item {
  padding: 3px 10px;
  margin-right: 6px;
  border-radius: 0;
}
.radiant-account .pagination__item:not(.pagination__item--active) {
  background: none;
}
